You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pandas-datareader splits their API calls from the specific platform (Yahoo, Google, Quandl, etc). Expand paths like datareader/coins/ to datareader/coins/hitbtc/ and datareader/coins/cryptocompare/
Full paths may not be required. But make private platform-specific libraries for separating concerns.
The text was updated successfully, but these errors were encountered:
but allow get_orderbook_hitbtc() to source deeper:
"""prosper.datareader.coins.__init__.py?"""from . importhitbtcfrom . importcryptocomparedefget_orderbook_hitbtc(coin, which_book, currency, logger=DEFAULT_LOGGER):
"""get the current orderbook from hitbtc"""coin_info=hitbtc.get_coin_info(coin)
...
Move all the __all__ scoped functions to be easier to reach, and platform-weirdness segregated by provider rather than type
pandas-datareader splits their API calls from the specific platform (Yahoo, Google, Quandl, etc). Expand paths like
datareader/coins/
todatareader/coins/hitbtc/
anddatareader/coins/cryptocompare/
Full paths may not be required. But make private platform-specific libraries for separating concerns.
The text was updated successfully, but these errors were encountered: