├── .gitignore ├── LICENSE ├── README.md ├── SAMPLE_config.py ├── USDT_pairs.txt ├── binance_harvester.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declasm/binance_harvester/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declasm/binance_harvester/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declasm/binance_harvester/HEAD/README.md -------------------------------------------------------------------------------- /SAMPLE_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declasm/binance_harvester/HEAD/SAMPLE_config.py -------------------------------------------------------------------------------- /USDT_pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declasm/binance_harvester/HEAD/USDT_pairs.txt -------------------------------------------------------------------------------- /binance_harvester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declasm/binance_harvester/HEAD/binance_harvester.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declasm/binance_harvester/HEAD/requirements.txt --------------------------------------------------------------------------------