├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── example.env ├── handlers ├── bunkr.py ├── cyberdrop.py ├── help.py ├── ping.py ├── start.py ├── streamdl.py └── streamul.py ├── helpers ├── bunkr_scraper.py ├── get_dl_ticket.py ├── get_dl_url.py ├── grabber.py ├── pingtest.py ├── streamtape_d.py └── streamtape_u.py ├── requirements.txt ├── runtime.txt ├── session └── session_gen.py ├── test ├── session │ └── session_gen.py └── test.py ├── thumbnail └── thumb.py └── utils ├── get_extension.py ├── get_file_id.py └── get_link_id.py /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 -m bot 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/bot.py -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/example.env -------------------------------------------------------------------------------- /handlers/bunkr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/handlers/bunkr.py -------------------------------------------------------------------------------- /handlers/cyberdrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/handlers/cyberdrop.py -------------------------------------------------------------------------------- /handlers/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/handlers/help.py -------------------------------------------------------------------------------- /handlers/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/handlers/ping.py -------------------------------------------------------------------------------- /handlers/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/handlers/start.py -------------------------------------------------------------------------------- /handlers/streamdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/handlers/streamdl.py -------------------------------------------------------------------------------- /handlers/streamul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/handlers/streamul.py -------------------------------------------------------------------------------- /helpers/bunkr_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/helpers/bunkr_scraper.py -------------------------------------------------------------------------------- /helpers/get_dl_ticket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/helpers/get_dl_ticket.py -------------------------------------------------------------------------------- /helpers/get_dl_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/helpers/get_dl_url.py -------------------------------------------------------------------------------- /helpers/grabber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/helpers/grabber.py -------------------------------------------------------------------------------- /helpers/pingtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/helpers/pingtest.py -------------------------------------------------------------------------------- /helpers/streamtape_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/helpers/streamtape_d.py -------------------------------------------------------------------------------- /helpers/streamtape_u.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/helpers/streamtape_u.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.6 2 | -------------------------------------------------------------------------------- /session/session_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/session/session_gen.py -------------------------------------------------------------------------------- /test/session/session_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/test/session/session_gen.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/test/test.py -------------------------------------------------------------------------------- /thumbnail/thumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/thumbnail/thumb.py -------------------------------------------------------------------------------- /utils/get_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/utils/get_extension.py -------------------------------------------------------------------------------- /utils/get_file_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/utils/get_file_id.py -------------------------------------------------------------------------------- /utils/get_link_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/link-media-scraper-bot/HEAD/utils/get_link_id.py --------------------------------------------------------------------------------