├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── requirements.txt └── runtime.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/webscrap-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/webscrap-bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/webscrap-bot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/webscrap-bot/HEAD/bot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | TgCrypto 2 | Pyrogram==1.4.16 3 | beautifulsoup4 4 | requests 5 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.15 2 | --------------------------------------------------------------------------------