├── .gitattributes ├── .gitignore ├── Dockerfile ├── LazyDeveloper.txt ├── Procfile ├── README.md ├── app.json ├── app.py ├── bot.py ├── configs.py ├── handlers ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── database.cpython-311.pyc │ └── route.cpython-311.pyc ├── add_user_to_db.py ├── broadcast_handlers.py ├── check_user_status.py ├── database.py ├── force_sub_handler.py ├── helpers.py ├── route.py ├── save_media.py └── send_file.py ├── heroku.yml ├── lazybot ├── __init__.py ├── __pycache__ │ └── __init__.cpython-311.pyc └── clients.py ├── logging.conf ├── requirements.txt ├── runtime.txt ├── server ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ └── exceptions.cpython-311.pyc ├── exceptions.py └── stream_routes.py ├── template ├── dl.html └── req.html ├── util ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── custom_dl.cpython-311.pyc │ ├── file_properties.cpython-311.pyc │ ├── human_readable.cpython-311.pyc │ ├── render_template.cpython-311.pyc │ └── time_format.cpython-311.pyc ├── config_parser.py ├── custom_dl.py ├── file_properties.py ├── file_size.py ├── human_readable.py ├── keepalive.py ├── render_template.py └── time_format.py └── zzint ├── __init__.py └── __pycache__ └── __init__.cpython-311.pyc /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LazyDeveloper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/LazyDeveloper.txt -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python3 bot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/app.json -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/app.py -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/bot.py -------------------------------------------------------------------------------- /configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/configs.py -------------------------------------------------------------------------------- /handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/handlers/__init__.py -------------------------------------------------------------------------------- /handlers/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/handlers/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /handlers/__pycache__/database.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/handlers/__pycache__/database.cpython-311.pyc -------------------------------------------------------------------------------- /handlers/__pycache__/route.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/handlers/__pycache__/route.cpython-311.pyc -------------------------------------------------------------------------------- /handlers/add_user_to_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/handlers/add_user_to_db.py -------------------------------------------------------------------------------- /handlers/broadcast_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/handlers/broadcast_handlers.py -------------------------------------------------------------------------------- /handlers/check_user_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/handlers/check_user_status.py -------------------------------------------------------------------------------- /handlers/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/handlers/database.py -------------------------------------------------------------------------------- /handlers/force_sub_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/handlers/force_sub_handler.py -------------------------------------------------------------------------------- /handlers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/handlers/helpers.py -------------------------------------------------------------------------------- /handlers/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/handlers/route.py -------------------------------------------------------------------------------- /handlers/save_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/handlers/save_media.py -------------------------------------------------------------------------------- /handlers/send_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/handlers/send_file.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/heroku.yml -------------------------------------------------------------------------------- /lazybot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/lazybot/__init__.py -------------------------------------------------------------------------------- /lazybot/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/lazybot/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /lazybot/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/lazybot/clients.py -------------------------------------------------------------------------------- /logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/logging.conf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.8 2 | -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/server/__init__.py -------------------------------------------------------------------------------- /server/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/server/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /server/__pycache__/exceptions.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/server/__pycache__/exceptions.cpython-311.pyc -------------------------------------------------------------------------------- /server/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/server/exceptions.py -------------------------------------------------------------------------------- /server/stream_routes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/dl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/template/dl.html -------------------------------------------------------------------------------- /template/req.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/template/req.html -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | # I hate my Dirty-Mind @LazyDeveloperr 😎😍 -------------------------------------------------------------------------------- /util/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/util/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /util/__pycache__/custom_dl.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/util/__pycache__/custom_dl.cpython-311.pyc -------------------------------------------------------------------------------- /util/__pycache__/file_properties.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/util/__pycache__/file_properties.cpython-311.pyc -------------------------------------------------------------------------------- /util/__pycache__/human_readable.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/util/__pycache__/human_readable.cpython-311.pyc -------------------------------------------------------------------------------- /util/__pycache__/render_template.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/util/__pycache__/render_template.cpython-311.pyc -------------------------------------------------------------------------------- /util/__pycache__/time_format.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/util/__pycache__/time_format.cpython-311.pyc -------------------------------------------------------------------------------- /util/config_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/util/config_parser.py -------------------------------------------------------------------------------- /util/custom_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/util/custom_dl.py -------------------------------------------------------------------------------- /util/file_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/util/file_properties.py -------------------------------------------------------------------------------- /util/file_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/util/file_size.py -------------------------------------------------------------------------------- /util/human_readable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/util/human_readable.py -------------------------------------------------------------------------------- /util/keepalive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/util/keepalive.py -------------------------------------------------------------------------------- /util/render_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/util/render_template.py -------------------------------------------------------------------------------- /util/time_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/util/time_format.py -------------------------------------------------------------------------------- /zzint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/zzint/__init__.py -------------------------------------------------------------------------------- /zzint/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyDeveloperr/MissRozy/HEAD/zzint/__pycache__/__init__.cpython-311.pyc --------------------------------------------------------------------------------