├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── bitshares_pricefeed ├── __init__.py ├── cli.py ├── examples │ ├── XCD.yaml │ ├── default.yaml │ ├── fox.yaml │ ├── hero.yaml │ └── hertz.yaml ├── pricefeed.py ├── sources │ ├── __init__.py │ ├── aex.py │ ├── bigone.py │ ├── bitcoinaverage.py │ ├── bitcoinindonesia.py │ ├── bitcoinvenezuela.py │ ├── bitstamp.py │ ├── bittrex.py │ ├── btc38.py │ ├── btcchina.py │ ├── bter.py │ ├── chbtc.py │ ├── coincap.py │ ├── coinmarketcap.py │ ├── currencylayer.py │ ├── fixer.py │ ├── google.py │ ├── graphene.py │ ├── huobi.py │ ├── lbank.py │ ├── main.py │ ├── okcoin.py │ ├── openexchangerate.py │ ├── poloniex.py │ ├── quandl.py │ ├── yahoo.py │ ├── yunbi.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 ├── requirements-test.txt ├── setup.cfg ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/README.md -------------------------------------------------------------------------------- /bitshares_pricefeed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/__init__.py -------------------------------------------------------------------------------- /bitshares_pricefeed/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/cli.py -------------------------------------------------------------------------------- /bitshares_pricefeed/examples/XCD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/examples/XCD.yaml -------------------------------------------------------------------------------- /bitshares_pricefeed/examples/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/examples/default.yaml -------------------------------------------------------------------------------- /bitshares_pricefeed/examples/fox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/examples/fox.yaml -------------------------------------------------------------------------------- /bitshares_pricefeed/examples/hero.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/examples/hero.yaml -------------------------------------------------------------------------------- /bitshares_pricefeed/examples/hertz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/examples/hertz.yaml -------------------------------------------------------------------------------- /bitshares_pricefeed/pricefeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/pricefeed.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/__init__.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/aex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/aex.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/bigone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/bigone.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/bitcoinaverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/bitcoinaverage.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/bitcoinindonesia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/bitcoinindonesia.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/bitcoinvenezuela.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/bitcoinvenezuela.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/bitstamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/bitstamp.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/bittrex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/bittrex.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/btc38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/btc38.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/btcchina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/btcchina.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/bter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/bter.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/chbtc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/chbtc.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/coincap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/coincap.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/coinmarketcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/coinmarketcap.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/currencylayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/currencylayer.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/fixer.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/google.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/graphene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/graphene.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/huobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/huobi.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/lbank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/lbank.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/main.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/okcoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/okcoin.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/openexchangerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/openexchangerate.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/poloniex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/poloniex.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/quandl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/quandl.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/yahoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/yahoo.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/yunbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/yunbi.py -------------------------------------------------------------------------------- /bitshares_pricefeed/sources/zb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/sources/zb.py -------------------------------------------------------------------------------- /bitshares_pricefeed/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/bitshares_pricefeed/ui.py -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | from bitshares_pricefeed import cli 4 | 5 | cli.main() 6 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/_build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/.buildinfo -------------------------------------------------------------------------------- /docs/_build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_build/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/_build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/_build/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/_build/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/comment-close.png -------------------------------------------------------------------------------- /docs/_build/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/comment.png -------------------------------------------------------------------------------- /docs/_build/html/_static/dialog-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/dialog-note.png -------------------------------------------------------------------------------- /docs/_build/html/_static/dialog-seealso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/dialog-seealso.png -------------------------------------------------------------------------------- /docs/_build/html/_static/dialog-todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/dialog-todo.png -------------------------------------------------------------------------------- /docs/_build/html/_static/dialog-topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/dialog-topic.png -------------------------------------------------------------------------------- /docs/_build/html/_static/dialog-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/dialog-warning.png -------------------------------------------------------------------------------- /docs/_build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/_build/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/_build/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/down.png -------------------------------------------------------------------------------- /docs/_build/html/_static/epub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/epub.css -------------------------------------------------------------------------------- /docs/_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/file.png -------------------------------------------------------------------------------- /docs/_build/html/_static/footerbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/footerbg.png -------------------------------------------------------------------------------- /docs/_build/html/_static/headerbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/headerbg.png -------------------------------------------------------------------------------- /docs/_build/html/_static/ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/ie6.css -------------------------------------------------------------------------------- /docs/_build/html/_static/jquery-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/jquery-3.1.0.js -------------------------------------------------------------------------------- /docs/_build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/_build/html/_static/middlebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/middlebg.png -------------------------------------------------------------------------------- /docs/_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/_build/html/_static/pyramid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/pyramid.css -------------------------------------------------------------------------------- /docs/_build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_build/html/_static/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/transparent.gif -------------------------------------------------------------------------------- /docs/_build/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/_build/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/_build/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/up.png -------------------------------------------------------------------------------- /docs/_build/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/_static/websupport.js -------------------------------------------------------------------------------- /docs/_build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/genindex.html -------------------------------------------------------------------------------- /docs/_build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/index.html -------------------------------------------------------------------------------- /docs/_build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/objects.inv -------------------------------------------------------------------------------- /docs/_build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/search.html -------------------------------------------------------------------------------- /docs/_build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/_build/html/searchindex.js -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/.buildinfo -------------------------------------------------------------------------------- /docs/html/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/html/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/basic.css -------------------------------------------------------------------------------- /docs/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/comment-close.png -------------------------------------------------------------------------------- /docs/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/comment.png -------------------------------------------------------------------------------- /docs/html/_static/dialog-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/dialog-note.png -------------------------------------------------------------------------------- /docs/html/_static/dialog-seealso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/dialog-seealso.png -------------------------------------------------------------------------------- /docs/html/_static/dialog-todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/dialog-todo.png -------------------------------------------------------------------------------- /docs/html/_static/dialog-topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/dialog-topic.png -------------------------------------------------------------------------------- /docs/html/_static/dialog-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/dialog-warning.png -------------------------------------------------------------------------------- /docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/down.png -------------------------------------------------------------------------------- /docs/html/_static/epub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/epub.css -------------------------------------------------------------------------------- /docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/file.png -------------------------------------------------------------------------------- /docs/html/_static/footerbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/footerbg.png -------------------------------------------------------------------------------- /docs/html/_static/headerbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/headerbg.png -------------------------------------------------------------------------------- /docs/html/_static/ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/ie6.css -------------------------------------------------------------------------------- /docs/html/_static/jquery-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/jquery-3.1.0.js -------------------------------------------------------------------------------- /docs/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/html/_static/middlebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/middlebg.png -------------------------------------------------------------------------------- /docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/minus.png -------------------------------------------------------------------------------- /docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/plus.png -------------------------------------------------------------------------------- /docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/html/_static/pyramid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/pyramid.css -------------------------------------------------------------------------------- /docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/html/_static/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/transparent.gif -------------------------------------------------------------------------------- /docs/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/up.png -------------------------------------------------------------------------------- /docs/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/_static/websupport.js -------------------------------------------------------------------------------- /docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/genindex.html -------------------------------------------------------------------------------- /docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/index.html -------------------------------------------------------------------------------- /docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/objects.inv -------------------------------------------------------------------------------- /docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/search.html -------------------------------------------------------------------------------- /docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/html/searchindex.js -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- 1 | bitshares 2 | pyyaml 3 | pytest 4 | coverage 5 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeroc/bitshares-pricefeed/HEAD/tox.ini --------------------------------------------------------------------------------