Skip to content

Commit

Permalink
Clean Up
Browse files Browse the repository at this point in the history
  • Loading branch information
Vince Forgione committed Oct 22, 2018
1 parent ed224f9 commit 134eec2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 0 additions & 5 deletions aot_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,13 +155,8 @@ def _send_request(self, endpoint: str, paged: bool=True, page: int=None, size: i
params = params.append(('order', order))

url = f'{self._hostname}/{endpoint}'

print(f'sending request to {url}')
print(f'params are {params}')

response = requests.get(url, params)


if paged:
return PagedResponse(payload=response.json(), client=self)
else:
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


# semantic versioning
VERSION = '0.1.0'
VERSION = '0.1.1'


here = os.path.abspath(os.path.dirname(__file__))
Expand All @@ -22,6 +22,9 @@
author='Vince Forgione',
author_email='vforgione@uchicago.edu',
license='MIT',
install_requires=[
'requests'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 134eec2

Please sign in to comment.