I am using the Python API version 1.3 (I double checked) and get the following error when trying to create a Server object.
<SPAN class="keyword token">import</SPAN> arcgis
testServer <SPAN class="operator token">=</SPAN> arcgis<SPAN class="punctuation token">.</SPAN>gis<SPAN class="punctuation token">.</SPAN>server<SPAN class="punctuation token">.</SPAN>Server<SPAN class="punctuation token">(</SPAN><SPAN class="string token">'myserverurl'</SPAN><SPAN class="punctuation token">,</SPAN> username<SPAN class="operator token">=</SPAN><SPAN class="string token">'myusername'</SPAN><SPAN class="punctuation token">,</SPAN> password<SPAN class="operator token">=</SPAN><SPAN class="string token">'safepassword'</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN></SPAN>
AttributeError: module 'arcgis.gis' has no attribute 'server'
Is this not how you are supposed to use it?