@@ -863,23 +863,23 @@ def server_create(self, dcid, vpsplanid, osid, ipxe_chain_url=None,
863
863
if ipxe_chain_url is not None :
864
864
params ['ipxe_chain_url' ] = ipxe_chain_url
865
865
if isoid is not None :
866
- params ['isoid ' ] = isoid
866
+ params ['ISOID ' ] = isoid
867
867
if scriptid is not None :
868
- params ['scriptid ' ] = scriptid
868
+ params ['SCRIPTID ' ] = scriptid
869
869
if snapshotid is not None :
870
- params ['snapshotid ' ] = snapshotid
870
+ params ['SNAPSHOTID ' ] = snapshotid
871
871
if enable_ipv6 is not None :
872
872
params ['enable_ipv6' ] = enable_ipv6
873
873
if enable_private_network is not None :
874
874
params ['enable_private_network' ] = enable_private_network
875
875
if label is not None :
876
876
params ['label' ] = label
877
877
if sshkeyid is not None :
878
- params ['sshkeyid ' ] = sshkeyid
878
+ params ['SSHKEYID ' ] = sshkeyid
879
879
if auto_backups is not None :
880
880
params ['auto_backups' ] = auto_backups
881
881
if appid is not None :
882
- params ['appid ' ] = appid
882
+ params ['APPID ' ] = appid
883
883
return self .request ('/v1/server/create' , params , 'POST' )
884
884
885
885
def server_list_ipv4 (self , subid ):
@@ -1312,12 +1312,14 @@ def request(self, path, params={}, method='GET'):
1312
1312
if not path .startswith ('/' ):
1313
1313
path = '/' + path
1314
1314
url = self .api_endpoint + path
1315
- params ['api_key' ] = self .api_key
1316
1315
1317
1316
try :
1318
1317
if method == 'POST' :
1319
- resp = requests .post (url , data = params , timeout = 60 )
1318
+ query = {'api_key' : self .api_key }
1319
+ resp = requests .post (url , params = query , data = params ,
1320
+ timeout = 60 )
1320
1321
elif method == 'GET' :
1322
+ params ['api_key' ] = self .api_key
1321
1323
resp = requests .get (url , params = params , timeout = 60 )
1322
1324
else :
1323
1325
raise VultrError ('Unsupported method %s' % method )
@@ -1327,46 +1329,46 @@ def request(self, path, params={}, method='GET'):
1327
1329
1328
1330
if resp .status_code != 200 :
1329
1331
if resp .status_code == 400 :
1330
- raise VultrError ('Invalid API location. Check the URL that you \
1331
- are using' )
1332
+ raise VultrError ('Invalid API location. Check the URL that' +
1333
+ ' you are using' )
1332
1334
elif resp .status_code == 403 :
1333
- raise VultrError ('Invalid or missing API key. Check that your \
1334
- API key is present and matches your assigned \
1335
- key' )
1335
+ raise VultrError ('Invalid or missing API key. Check that' +
1336
+ ' your API key is present and matches' +
1337
+ ' your assigned key' )
1336
1338
elif resp .status_code == 405 :
1337
- raise VultrError ('Invalid HTTP method. Check that the method \
1338
- (POST|GET) matches what the documentation \
1339
- indicates' )
1339
+ raise VultrError ('Invalid HTTP method. Check that the' +
1340
+ ' method (POST|GET) matches what the' +
1341
+ ' documentation indicates' )
1340
1342
elif resp .status_code == 412 :
1341
-
1342
- raise VultrError ( 'Request failed. Check the response body for \
1343
- a more detailed description' + resp .json () )
1343
+ raise VultrError ( 'Request failed. Check the response body ' +
1344
+ ' for a more detailed description. Body: \n ' +
1345
+ resp .text )
1344
1346
elif resp .status_code == 500 :
1345
- raise VultrError ('Internal server error. Try again at a later \
1346
- time' )
1347
+ raise VultrError ('Internal server error. Try again at a' +
1348
+ ' later time' )
1347
1349
elif resp .status_code == 503 :
1348
- raise VultrError ('Rate limit hit. API requests are limited to \
1349
- an average of 1/s. Try your request again \
1350
- later.' )
1350
+ raise VultrError ('Rate limit hit. API requests are limited' +
1351
+ ' to an average of 1/s. Try your request' +
1352
+ ' again later.' )
1351
1353
1352
1354
return resp .json ()
1353
1355
1354
1356
1355
1357
if __name__ == '__main__' :
1356
- print "Vultr API Python Libary"
1357
- print "http://vultr.com"
1358
+ print ( "Vultr API Python Libary" )
1359
+ print ( "http://vultr.com" )
1358
1360
1359
1361
api_key = ''
1360
1362
if len (sys .argv ) > 1 :
1361
1363
api_key = sys .argv [1 ]
1362
1364
1363
1365
vultr = Vultr (api_key )
1364
1366
1365
- print vultr .iso_list ()
1366
- print vultr .plans_list ()
1367
- print vultr .regions_list ()
1368
- print vultr .os_list ()
1369
- print vultr .app_list ()
1367
+ print ( vultr .iso_list () )
1368
+ print ( vultr .plans_list () )
1369
+ print ( vultr .regions_list () )
1370
+ print ( vultr .os_list () )
1371
+ print ( vultr .app_list () )
1370
1372
1371
1373
if api_key :
1372
- print vultr .account_info ()
1374
+ print ( vultr .account_info () )
0 commit comments