Skip to content

Commit b4b942f

Browse files
committed
Merge pull request spry-group#12 from spry-group/master
0.1.1 Release
2 parents 4780539 + 92d45da commit b4b942f

File tree

7 files changed

+112
-35
lines changed

7 files changed

+112
-35
lines changed

.travis.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
language: python
2+
python:
3+
- "2.6"
4+
- "2.7"
5+
- "3.2"
6+
- "3.3"
7+
- "3.4"
8+
- "nightly"
9+
install:
10+
- "pip install ."
11+
script: "python setup.py develop && python setup.py test"

README.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Vultr
22
=====
3-
3+
.. image:: https://travis-ci.org/spry-group/python-vultr.svg?branch=master
4+
:target: https://travis-ci.org/spry-group/python-vultr
5+
46
Vultr provides a client library to the Vultr.com API.
57

68
**Usage**

setup.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ def read(filename):
1212

1313
setup(
1414
name='vultr',
15-
version='0.1.0',
15+
version='0.1.1',
16+
install_requires=[
17+
"requests"
18+
],
1619
description='Vultr.com API Client',
1720
long_description=(read('README.rst')),
1821
url='http://github.com/spry-group/python-vultr',
@@ -32,4 +35,5 @@ def read(filename):
3235
'Topic :: Software Development :: Libraries :: Python Modules'
3336
],
3437
license=read('LICENSE'),
38+
test_suite='tests'
3539
)

tests/__init__.py

Whitespace-only changes.

tests/test_vultr.py

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
import unittest
2+
import os
3+
import warnings
4+
from vultr import Vultr, VultrError
5+
6+
7+
class UnauthenticateTests(unittest.TestCase):
8+
9+
def setUp(self):
10+
self.vultr = Vultr('')
11+
12+
def test_plans_list(self):
13+
response = self.vultr.plans_list()
14+
15+
def test_regions_list(self):
16+
response = self.vultr.regions_list()
17+
18+
def test_os_list(self):
19+
response = self.vultr.os_list()
20+
21+
def test_app_list(self):
22+
response = self.vultr.app_list()
23+
24+
25+
class AuthenticatedTests(unittest.TestCase):
26+
27+
def setUp(self):
28+
self.VULTR_KEY = os.environ.get('VULTR_KEY')
29+
30+
if self.VULTR_KEY is None:
31+
warnings.warn('The VULTR_KEY environment variable is not ' +
32+
'set. AuthenticatedTests will be bypassed.',
33+
UserWarning)
34+
else:
35+
self.vultr = Vultr(self.VULTR_KEY)
36+
37+
def test_get_api_key(self):
38+
if self.VULTR_KEY is None:
39+
return
40+
response = self.vultr.iso_list()
41+
42+
def test_post_api_key(self):
43+
if self.VULTR_KEY is None:
44+
return
45+
try:
46+
response = self.vultr.server_label_set('', '')
47+
except VultrError as e:
48+
msg = str(e)
49+
self.assertEqual(msg, "Request failed. Check the response body" +
50+
" for a more detailed description. Body:" +
51+
" \nInvalid server. Check SUBID value and" +
52+
" ensure your API key matches the server's" +
53+
" account")
54+
55+
if __name__ == '__main__':
56+
unittest.main()

vultr/__init__.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
__version__ = '0.1.0'
2-
__license__ = 'MIT'
1+
__version__ = '0.1.1'
2+
__license__ = 'MIT'
3+
4+
from .vultr import Vultr, VultrError

vultr/vultr.py

+33-31
Original file line numberDiff line numberDiff line change
@@ -863,23 +863,23 @@ def server_create(self, dcid, vpsplanid, osid, ipxe_chain_url=None,
863863
if ipxe_chain_url is not None:
864864
params['ipxe_chain_url'] = ipxe_chain_url
865865
if isoid is not None:
866-
params['isoid'] = isoid
866+
params['ISOID'] = isoid
867867
if scriptid is not None:
868-
params['scriptid'] = scriptid
868+
params['SCRIPTID'] = scriptid
869869
if snapshotid is not None:
870-
params['snapshotid'] = snapshotid
870+
params['SNAPSHOTID'] = snapshotid
871871
if enable_ipv6 is not None:
872872
params['enable_ipv6'] = enable_ipv6
873873
if enable_private_network is not None:
874874
params['enable_private_network'] = enable_private_network
875875
if label is not None:
876876
params['label'] = label
877877
if sshkeyid is not None:
878-
params['sshkeyid'] = sshkeyid
878+
params['SSHKEYID'] = sshkeyid
879879
if auto_backups is not None:
880880
params['auto_backups'] = auto_backups
881881
if appid is not None:
882-
params['appid'] = appid
882+
params['APPID'] = appid
883883
return self.request('/v1/server/create', params, 'POST')
884884

885885
def server_list_ipv4(self, subid):
@@ -1312,12 +1312,14 @@ def request(self, path, params={}, method='GET'):
13121312
if not path.startswith('/'):
13131313
path = '/' + path
13141314
url = self.api_endpoint + path
1315-
params['api_key'] = self.api_key
13161315

13171316
try:
13181317
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)
13201321
elif method == 'GET':
1322+
params['api_key'] = self.api_key
13211323
resp = requests.get(url, params=params, timeout=60)
13221324
else:
13231325
raise VultrError('Unsupported method %s' % method)
@@ -1327,46 +1329,46 @@ def request(self, path, params={}, method='GET'):
13271329

13281330
if resp.status_code != 200:
13291331
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')
13321334
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')
13361338
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')
13401342
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)
13441346
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')
13471349
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.')
13511353

13521354
return resp.json()
13531355

13541356

13551357
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")
13581360

13591361
api_key = ''
13601362
if len(sys.argv) > 1:
13611363
api_key = sys.argv[1]
13621364

13631365
vultr = Vultr(api_key)
13641366

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())
13701372

13711373
if api_key:
1372-
print vultr.account_info()
1374+
print (vultr.account_info())

0 commit comments

Comments
 (0)