Metadata-Version: 1.1
Name: arbitrage
Version: 0.1.0
Summary: Get current coin (btc/eth/xrp) ticker from exchanges (bitflyer/btcbox/zaif/bitbank/quoinex)
Home-page: https://github.com/10mohi6/arbitrage-python
Author: 10mohi6
Author-email: 10.mohi.6.y@gmail.com
License: MIT
Description: arbitrage
        =========
        
        `PyPI version <https://badge.fury.io/py/arbitrage>`__ `License:
        MIT <https://opensource.org/licenses/MIT>`__
        
        Get current coin (btc/eth/xrp) ticker from exchanges
        (bitflyer/btcbox/zaif/bitbank/quoinex)
        
        Installation
        ------------
        
        ::
        
           $ pip install arbitrage
        
        Usage
        -----
        
        .. code:: python
        
           from arbitrage import Arbitrage
        
           arbitrage = Arbitrage()
           ticker = arbitrage.get_ticker()
           print(ticker)
           # {
           #   "btc": {
           #     "bitflyer": {"ask": 923717.0,"bid": 923175.0},
           #     "btcbox": {"ask": 924397.0,"bid": 922298.0},
           #     "zaif": {"ask": 922605.0,"bid": 922445.0},
           #     "bitbank": {"ask": 922904.0,"bid": 922495.0},
           #     "quoinex": {"ask": 921706.83,"bid": 921414.31}
           #   },
           #   "eth": {
           #     "bitflyer": {"ask": 78700.6884,"bid": 78608.35125},
           #     "btcbox": {"ask": 78919.0,"bid": 78509.0},
           #     "zaif": {"ask": 78670.0,"bid": 78650.0},
           #     "bitbank": {"ask": 79084.64972536,"bid": 77950.8459499},
           #     "quoinex": {"ask": 79356.93999,"bid": 78400.01001}
           #   },
           #   "xrp": {
           #     "bitbank": {"ask": 77.219,"bid": 77.171},
           #     "quoinex": {"ask": 76.9898,"bid": 75.881}
           #   }
           # }
        
        
           arbitrage = Arbitrage(timeout=30, exception_handler=exception_handler)
        
           def exception_handler(request, exception):
               print('Request failed', exception)
        
        Contributing
        ------------
        
        1. Fork it
        2. Create your feature branch (``git checkout -b my-new-feature``)
        3. Commit your changes (``git commit -am 'Add some feature'``)
        4. Push to the branch (``git push origin my-new-feature``)
        5. Create new Pull Request
        
Keywords: arbitrage
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.6
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Office/Business :: Financial :: Investment
Classifier: License :: OSI Approved :: MIT License
