├── .github ├── FUNDING.yml └── workflows │ └── codeql.yml ├── .gitignore ├── Configs.py ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── requirements.txt ├── runtime.txt └── start.bat /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: New-dev0 4 | -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/New-dev0/TgTwitterStreamer/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/New-dev0/TgTwitterStreamer/HEAD/.gitignore -------------------------------------------------------------------------------- /Configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/New-dev0/TgTwitterStreamer/HEAD/Configs.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/New-dev0/TgTwitterStreamer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/New-dev0/TgTwitterStreamer/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/New-dev0/TgTwitterStreamer/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/New-dev0/TgTwitterStreamer/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/New-dev0/TgTwitterStreamer/HEAD/bot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/New-dev0/TgTwitterStreamer/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.5 -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- 1 | python -m TgTwitterStreamer --------------------------------------------------------------------------------