Following the 1.3 documentation, there is a arcgis.gis.server submodule nested under arcgis.gis.
However when I try use it, I get an error saying "`arcgis.gis` has no attribute `server`". Souce code as shown below.
>>> import arcgis
>>> arcgis.gis.server.Server(args)
And as suggested in this post, I tried with importing arcgis.gis. But same error occured.
>>> from arcgis importgis
>>> gis.server.Server(args)
Any help would be greatly appreciated.