├── .gitignore ├── LICENSE ├── README.md ├── background.py ├── bot.py ├── crypto.py ├── data.py ├── main.py ├── queries.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgeteixe/binance-alerts-telegram-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgeteixe/binance-alerts-telegram-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgeteixe/binance-alerts-telegram-bot/HEAD/README.md -------------------------------------------------------------------------------- /background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgeteixe/binance-alerts-telegram-bot/HEAD/background.py -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgeteixe/binance-alerts-telegram-bot/HEAD/bot.py -------------------------------------------------------------------------------- /crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgeteixe/binance-alerts-telegram-bot/HEAD/crypto.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgeteixe/binance-alerts-telegram-bot/HEAD/data.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgeteixe/binance-alerts-telegram-bot/HEAD/main.py -------------------------------------------------------------------------------- /queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgeteixe/binance-alerts-telegram-bot/HEAD/queries.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgeteixe/binance-alerts-telegram-bot/HEAD/requirements.txt --------------------------------------------------------------------------------