├── LICENSE ├── Procfile ├── README.md ├── amadeus.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewickedkarma/Amadeus/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 amadeus.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewickedkarma/Amadeus/HEAD/README.md -------------------------------------------------------------------------------- /amadeus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewickedkarma/Amadeus/HEAD/amadeus.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-telegram-bot 2 | VaderSentiment 3 | openai 4 | regex 5 | --------------------------------------------------------------------------------