├── .gitignore ├── Dockerfile ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── bitshares_pricefeed ├── __init__.py ├── cli.py ├── history.py ├── pricefeed.py ├── sources │ ├── __init__.py │ ├── aex.py │ ├── alphavantage.py │ ├── bigone.py │ ├── biki.py │ ├── binance.py │ ├── bitcoinaverage.py │ ├── bitcoinvenezuela.py │ ├── bitshares_orderbook.py │ ├── bitsharesfeed.py │ ├── bitstamp.py │ ├── bittrex.py │ ├── coinbase.py │ ├── coincap.py │ ├── coindesk.py │ ├── coinegg.py │ ├── coingecko.py │ ├── coinmarketcap.py │ ├── cointiger.py │ ├── composite.py │ ├── currencylayer.py │ ├── fixer.py │ ├── gateio.py │ ├── graphene.py │ ├── hero.py │ ├── hertz.py │ ├── hitbtc.py │ ├── huobi.py │ ├── huobi_otc.py │ ├── iex.py │ ├── indodax.py │ ├── kraken.py │ ├── lbank.py │ ├── magicwallet.py │ ├── main.py │ ├── manual.py │ ├── norm.py │ ├── okcoin.py │ ├── okex_otc.py │ ├── openexchangerate.py │ ├── poloniex.py │ ├── quandl.py │ ├── robinhood.py │ ├── worldcoinindex.py │ └── zb.py └── ui.py ├── cli.py ├── docs ├── Makefile ├── _build │ ├── doctrees │ │ ├── environment.pickle │ │ └── index.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _sources │ │ └── index.rst.txt │ │ ├── _static │ │ ├── ajax-loader.gif │ │ ├── basic.css │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── comment.png │ │ ├── dialog-note.png │ │ ├── dialog-seealso.png │ │ ├── dialog-todo.png │ │ ├── dialog-topic.png │ │ ├── dialog-warning.png │ │ ├── doctools.js │ │ ├── down-pressed.png │ │ ├── down.png │ │ ├── epub.css │ │ ├── file.png │ │ ├── footerbg.png │ │ ├── headerbg.png │ │ ├── ie6.css │ │ ├── jquery-3.1.0.js │ │ ├── jquery.js │ │ ├── middlebg.png │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── pyramid.css │ │ ├── searchtools.js │ │ ├── transparent.gif │ │ ├── underscore-1.3.1.js │ │ ├── underscore.js │ │ ├── up-pressed.png │ │ ├── up.png │ │ └── websupport.js │ │ ├── genindex.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── search.html │ │ └── searchindex.js ├── conf.py ├── html │ ├── .buildinfo │ ├── .doctrees │ │ ├── environment.pickle │ │ └── index.doctree │ ├── _sources │ │ └── index.rst.txt │ ├── _static │ │ ├── ajax-loader.gif │ │ ├── basic.css │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── comment.png │ │ ├── dialog-note.png │ │ ├── dialog-seealso.png │ │ ├── dialog-todo.png │ │ ├── dialog-topic.png │ │ ├── dialog-warning.png │ │ ├── doctools.js │ │ ├── down-pressed.png │ │ ├── down.png │ │ ├── epub.css │ │ ├── file.png │ │ ├── footerbg.png │ │ ├── headerbg.png │ │ ├── ie6.css │ │ ├── jquery-3.1.0.js │ │ ├── jquery.js │ │ ├── middlebg.png │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── pyramid.css │ │ ├── searchtools.js │ │ ├── transparent.gif │ │ ├── underscore-1.3.1.js │ │ ├── underscore.js │ │ ├── up-pressed.png │ │ ├── up.png │ │ └── websupport.js │ ├── genindex.html │ ├── index.html │ ├── objects.inv │ ├── search.html │ └── searchindex.js ├── index.rst └── requirements.txt ├── examples ├── XCD.yaml ├── baip2.yaml ├── bitshares_orderbook.yaml ├── bsip42.yaml ├── bsip76.yaml ├── composite.yaml ├── default.yaml ├── hero.yaml ├── hertz.yaml ├── norm.yaml └── stocks.yaml ├── requirements-test.txt ├── setup.cfg ├── setup.py ├── tests ├── formula │ ├── conftest.py │ ├── test_hero.py │ ├── test_hertz.py │ ├── test_norm.py │ └── test_xcd.py ├── sources │ ├── conftest.py │ ├── test_aex.py │ ├── test_alphavantage.py │ ├── test_bigone.py │ ├── test_biki.py │ ├── test_binance.py │ ├── test_bitcoinaverage.py │ ├── test_bitcoinvenezuela.py │ ├── test_bitshares_orderbook.py │ ├── test_bitsharesfeed.py │ ├── test_bitstamp.py │ ├── test_bittrex.py │ ├── test_coinbase.py │ ├── test_coincap.py │ ├── test_coindesk.py │ ├── test_coinegg.py │ ├── test_coingecko.py │ ├── test_coinmarketcap.py │ ├── test_cointiger.py │ ├── test_composite.py │ ├── test_currencylayer.py │ ├── test_fixer.py │ ├── test_gateio.py │ ├── test_graphene.py │ ├── test_hitbtc.py │ ├── test_huobi.py │ ├── test_huobi_otc.py │ ├── test_iex.py │ ├── test_indodax.py │ ├── test_kraken.py │ ├── test_lbank.py │ ├── test_magicwallet.py │ ├── test_manual.py │ ├── test_okcoin.py │ ├── test_okex_otc.py │ ├── test_openexchangerate.py │ ├── test_poloniex.py │ ├── test_quandl.py │ ├── test_robinhood.py │ ├── test_worldcoinindex.py │ └── test_zb.py └── test_history.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/README.md -------------------------------------------------------------------------------- /bitshares_pricefeed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/__init__.py -------------------------------------------------------------------------------- /bitshares_pricefeed/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/cli.py -------------------------------------------------------------------------------- /bitshares_pricefeed/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/history.py -------------------------------------------------------------------------------- /bitshares_pricefeed/pricefeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/pricefeed.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/__init__.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/aex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/aex.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/alphavantage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/alphavantage.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/bigone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/bigone.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/biki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/biki.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/binance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/binance.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/bitcoinaverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/bitcoinaverage.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/bitcoinvenezuela.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/bitcoinvenezuela.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/bitshares_orderbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/bitshares_orderbook.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/bitsharesfeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/bitsharesfeed.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/bitstamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/bitstamp.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/bittrex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/bittrex.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/coinbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/coinbase.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/coincap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/coincap.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/coindesk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/coindesk.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/coinegg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/coinegg.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/coingecko.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/coingecko.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/coinmarketcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/coinmarketcap.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/cointiger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/cointiger.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/composite.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/currencylayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/currencylayer.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/fixer.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/gateio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/gateio.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/graphene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/graphene.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/hero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/hero.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/hertz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/hertz.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/hitbtc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/hitbtc.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/huobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/huobi.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/huobi_otc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/huobi_otc.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/iex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/iex.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/indodax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/indodax.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/kraken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/kraken.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/lbank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/lbank.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/magicwallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/magicwallet.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/main.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/manual.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/norm.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/okcoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/okcoin.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/okex_otc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/okex_otc.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/openexchangerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/openexchangerate.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/poloniex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/poloniex.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/quandl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/quandl.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/robinhood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/robinhood.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/worldcoinindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/worldcoinindex.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/zb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/zb.py -------------------------------------------------------------------------------- /bitshares_pricefeed/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/bitshares_pricefeed/ui.py -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/cli.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/_build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/.buildinfo -------------------------------------------------------------------------------- /docs/_build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_build/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/_build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/_build/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/_build/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/comment-close.png -------------------------------------------------------------------------------- /docs/_build/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/comment.png -------------------------------------------------------------------------------- /docs/_build/html/_static/dialog-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/dialog-note.png -------------------------------------------------------------------------------- /docs/_build/html/_static/dialog-seealso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/dialog-seealso.png -------------------------------------------------------------------------------- /docs/_build/html/_static/dialog-todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/dialog-todo.png -------------------------------------------------------------------------------- /docs/_build/html/_static/dialog-topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/dialog-topic.png -------------------------------------------------------------------------------- /docs/_build/html/_static/dialog-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/dialog-warning.png -------------------------------------------------------------------------------- /docs/_build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/_build/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/_build/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/down.png -------------------------------------------------------------------------------- /docs/_build/html/_static/epub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/epub.css -------------------------------------------------------------------------------- /docs/_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/file.png -------------------------------------------------------------------------------- /docs/_build/html/_static/footerbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/footerbg.png -------------------------------------------------------------------------------- /docs/_build/html/_static/headerbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/headerbg.png -------------------------------------------------------------------------------- /docs/_build/html/_static/ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/ie6.css -------------------------------------------------------------------------------- /docs/_build/html/_static/jquery-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/jquery-3.1.0.js -------------------------------------------------------------------------------- /docs/_build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/_build/html/_static/middlebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/middlebg.png -------------------------------------------------------------------------------- /docs/_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/_build/html/_static/pyramid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/pyramid.css -------------------------------------------------------------------------------- /docs/_build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_build/html/_static/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/transparent.gif -------------------------------------------------------------------------------- /docs/_build/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/_build/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/_build/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/up.png -------------------------------------------------------------------------------- /docs/_build/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/_static/websupport.js -------------------------------------------------------------------------------- /docs/_build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/genindex.html -------------------------------------------------------------------------------- /docs/_build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/index.html -------------------------------------------------------------------------------- /docs/_build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/objects.inv -------------------------------------------------------------------------------- /docs/_build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/search.html -------------------------------------------------------------------------------- /docs/_build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/_build/html/searchindex.js -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/.buildinfo -------------------------------------------------------------------------------- /docs/html/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/html/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/basic.css -------------------------------------------------------------------------------- /docs/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/comment-close.png -------------------------------------------------------------------------------- /docs/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/comment.png -------------------------------------------------------------------------------- /docs/html/_static/dialog-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/dialog-note.png -------------------------------------------------------------------------------- /docs/html/_static/dialog-seealso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/dialog-seealso.png -------------------------------------------------------------------------------- /docs/html/_static/dialog-todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/dialog-todo.png -------------------------------------------------------------------------------- /docs/html/_static/dialog-topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/dialog-topic.png -------------------------------------------------------------------------------- /docs/html/_static/dialog-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/dialog-warning.png -------------------------------------------------------------------------------- /docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/down.png -------------------------------------------------------------------------------- /docs/html/_static/epub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/epub.css -------------------------------------------------------------------------------- /docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/file.png -------------------------------------------------------------------------------- /docs/html/_static/footerbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/footerbg.png -------------------------------------------------------------------------------- /docs/html/_static/headerbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/headerbg.png -------------------------------------------------------------------------------- /docs/html/_static/ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/ie6.css -------------------------------------------------------------------------------- /docs/html/_static/jquery-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/jquery-3.1.0.js -------------------------------------------------------------------------------- /docs/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/html/_static/middlebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/middlebg.png -------------------------------------------------------------------------------- /docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/minus.png -------------------------------------------------------------------------------- /docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/plus.png -------------------------------------------------------------------------------- /docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/html/_static/pyramid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/pyramid.css -------------------------------------------------------------------------------- /docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/html/_static/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/transparent.gif -------------------------------------------------------------------------------- /docs/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/up.png -------------------------------------------------------------------------------- /docs/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/_static/websupport.js -------------------------------------------------------------------------------- /docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/genindex.html -------------------------------------------------------------------------------- /docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/index.html -------------------------------------------------------------------------------- /docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/objects.inv -------------------------------------------------------------------------------- /docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/search.html -------------------------------------------------------------------------------- /docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/html/searchindex.js -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /examples/XCD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/examples/XCD.yaml -------------------------------------------------------------------------------- /examples/baip2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/examples/baip2.yaml -------------------------------------------------------------------------------- /examples/bitshares_orderbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/examples/bitshares_orderbook.yaml -------------------------------------------------------------------------------- /examples/bsip42.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/examples/bsip42.yaml -------------------------------------------------------------------------------- /examples/bsip76.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/examples/bsip76.yaml -------------------------------------------------------------------------------- /examples/composite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/examples/composite.yaml -------------------------------------------------------------------------------- /examples/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/examples/default.yaml -------------------------------------------------------------------------------- /examples/hero.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/examples/hero.yaml -------------------------------------------------------------------------------- /examples/hertz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/examples/hertz.yaml -------------------------------------------------------------------------------- /examples/norm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/examples/norm.yaml -------------------------------------------------------------------------------- /examples/stocks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/examples/stocks.yaml -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- 1 | bitshares 2 | pyyaml 3 | pytest 4 | coverage 5 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/setup.py -------------------------------------------------------------------------------- /tests/formula/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/formula/conftest.py -------------------------------------------------------------------------------- /tests/formula/test_hero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/formula/test_hero.py -------------------------------------------------------------------------------- /tests/formula/test_hertz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/formula/test_hertz.py -------------------------------------------------------------------------------- /tests/formula/test_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/formula/test_norm.py -------------------------------------------------------------------------------- /tests/formula/test_xcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/formula/test_xcd.py -------------------------------------------------------------------------------- /tests/sources/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/conftest.py -------------------------------------------------------------------------------- /tests/sources/test_aex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_aex.py -------------------------------------------------------------------------------- /tests/sources/test_alphavantage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_alphavantage.py -------------------------------------------------------------------------------- /tests/sources/test_bigone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_bigone.py -------------------------------------------------------------------------------- /tests/sources/test_biki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_biki.py -------------------------------------------------------------------------------- /tests/sources/test_binance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_binance.py -------------------------------------------------------------------------------- /tests/sources/test_bitcoinaverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_bitcoinaverage.py -------------------------------------------------------------------------------- /tests/sources/test_bitcoinvenezuela.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_bitcoinvenezuela.py -------------------------------------------------------------------------------- /tests/sources/test_bitshares_orderbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_bitshares_orderbook.py -------------------------------------------------------------------------------- /tests/sources/test_bitsharesfeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_bitsharesfeed.py -------------------------------------------------------------------------------- /tests/sources/test_bitstamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_bitstamp.py -------------------------------------------------------------------------------- /tests/sources/test_bittrex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_bittrex.py -------------------------------------------------------------------------------- /tests/sources/test_coinbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_coinbase.py -------------------------------------------------------------------------------- /tests/sources/test_coincap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_coincap.py -------------------------------------------------------------------------------- /tests/sources/test_coindesk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_coindesk.py -------------------------------------------------------------------------------- /tests/sources/test_coinegg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_coinegg.py -------------------------------------------------------------------------------- /tests/sources/test_coingecko.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_coingecko.py -------------------------------------------------------------------------------- /tests/sources/test_coinmarketcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_coinmarketcap.py -------------------------------------------------------------------------------- /tests/sources/test_cointiger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_cointiger.py -------------------------------------------------------------------------------- /tests/sources/test_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_composite.py -------------------------------------------------------------------------------- /tests/sources/test_currencylayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_currencylayer.py -------------------------------------------------------------------------------- /tests/sources/test_fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_fixer.py -------------------------------------------------------------------------------- /tests/sources/test_gateio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_gateio.py -------------------------------------------------------------------------------- /tests/sources/test_graphene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_graphene.py -------------------------------------------------------------------------------- /tests/sources/test_hitbtc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_hitbtc.py -------------------------------------------------------------------------------- /tests/sources/test_huobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_huobi.py -------------------------------------------------------------------------------- /tests/sources/test_huobi_otc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_huobi_otc.py -------------------------------------------------------------------------------- /tests/sources/test_iex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_iex.py -------------------------------------------------------------------------------- /tests/sources/test_indodax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_indodax.py -------------------------------------------------------------------------------- /tests/sources/test_kraken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_kraken.py -------------------------------------------------------------------------------- /tests/sources/test_lbank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_lbank.py -------------------------------------------------------------------------------- /tests/sources/test_magicwallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_magicwallet.py -------------------------------------------------------------------------------- /tests/sources/test_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_manual.py -------------------------------------------------------------------------------- /tests/sources/test_okcoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_okcoin.py -------------------------------------------------------------------------------- /tests/sources/test_okex_otc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_okex_otc.py -------------------------------------------------------------------------------- /tests/sources/test_openexchangerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_openexchangerate.py -------------------------------------------------------------------------------- /tests/sources/test_poloniex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_poloniex.py -------------------------------------------------------------------------------- /tests/sources/test_quandl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_quandl.py -------------------------------------------------------------------------------- /tests/sources/test_robinhood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_robinhood.py -------------------------------------------------------------------------------- /tests/sources/test_worldcoinindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_worldcoinindex.py -------------------------------------------------------------------------------- /tests/sources/test_zb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/sources/test_zb.py -------------------------------------------------------------------------------- /tests/test_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tests/test_history.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zapata/bitshares-pricefeed/HEAD/tox.ini --------------------------------------------------------------------------------