Skip to content

Commit

Permalink
Merge pull request #10 from danielecook/development
Browse files Browse the repository at this point in the history
v0.0.5 -- remove print statement
  • Loading branch information
danielecook committed Aug 15, 2018
2 parents 62d97f4 + 9007505 commit 37b010f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion iex/batch.py
Expand Up @@ -47,7 +47,6 @@ def _get(self, _type, params={}):
params.update({'symbols': self.symbols_list,
'types': _type})
response = requests.get(request_url, params=params)
print(json.dumps(response.json(), indent=2))
# Check the response
if response.status_code != 200:
raise Exception(f"{response.status_code}: {response.content.decode('utf-8')}")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -10,7 +10,7 @@
]

setuptools.setup(name='iex-api-python',
version="0.0.3",
version="0.0.5",
description='Fetch data from the IEX API',
long_description=open('README.md').read().strip(),
author='Daniel E. Cook',
Expand Down

0 comments on commit 37b010f

Please sign in to comment.