├── LICENSE.txt ├── README.md ├── cryptomon ├── __init__.py ├── arbitrage_monitor.py ├── cryptomonitor.py ├── graceful_killer.py ├── html_extractor.py └── stack_api_client.py └── setup.py /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitcoinExchangeFH/CryptoMonitor/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitcoinExchangeFH/CryptoMonitor/HEAD/README.md -------------------------------------------------------------------------------- /cryptomon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptomon/arbitrage_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitcoinExchangeFH/CryptoMonitor/HEAD/cryptomon/arbitrage_monitor.py -------------------------------------------------------------------------------- /cryptomon/cryptomonitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitcoinExchangeFH/CryptoMonitor/HEAD/cryptomon/cryptomonitor.py -------------------------------------------------------------------------------- /cryptomon/graceful_killer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitcoinExchangeFH/CryptoMonitor/HEAD/cryptomon/graceful_killer.py -------------------------------------------------------------------------------- /cryptomon/html_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitcoinExchangeFH/CryptoMonitor/HEAD/cryptomon/html_extractor.py -------------------------------------------------------------------------------- /cryptomon/stack_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitcoinExchangeFH/CryptoMonitor/HEAD/cryptomon/stack_api_client.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitcoinExchangeFH/CryptoMonitor/HEAD/setup.py --------------------------------------------------------------------------------