-
Notifications
You must be signed in to change notification settings - Fork 283
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
various cleanup #104
various cleanup #104
Conversation
flepied
commented
Dec 15, 2017
- fix README to show correct import statements
- fixed flake8 reports
- removed get_markets and get_market_history that seems not available anymore in V2_0
- use /key/orders/getorderhistory to get order history by market in V2_0
- tests: tweak IS_CI_ENV to only rely on secrets.json being present
- fix README to show correct import statements - fixed flake8 reports - removed get_markets and get_market_history that seems not available anymore in V2_0 - use /key/orders/getorderhistory to get order history by market in V2_0 - tests: tweak IS_CI_ENV to only rely on secrets.json being present
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
@@ -167,7 +165,7 @@ def get_markets(self): | |||
at Bittrex along with other meta data. | |||
|
|||
1.1 Endpoint: /public/getmarkets | |||
2.0 Endpoint: /pub/Markets/GetMarkets | |||
2.0 NO Equivalent |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not so sure that these endpoints are permanently gone... but they are definitely broken now. If they come back we can re-enable this functionality.
PR #104 removes two broken 2.0 API endpoints
@@ -19,7 +19,7 @@ Installation | |||
Example Usage for Bittrex API | |||
|
|||
```python | |||
from bittrex import Bittrex |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does from bittrex import Bittrex
not work? I thought the import in the __init__.py
would make it work. Seems like a nicer way to import versus from bittrex.bittrex import Bittrex