├── .gitattributes ├── .gitignore ├── Dockerfile ├── Procfile ├── README.md ├── bot.py ├── cache └── a.txt ├── config.py ├── html_gen.py ├── requirements.txt ├── static ├── logo.png ├── no-image.png ├── screenshot1.jpg └── screenshot2.jpg ├── streamer.py ├── templates ├── home.html └── stream.html ├── utils ├── __init__.py ├── custom_dl.py ├── file_properties.py └── time_format.py └── web.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/bot.py -------------------------------------------------------------------------------- /cache/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/config.py -------------------------------------------------------------------------------- /html_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/html_gen.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | uvicorn 3 | pyrogram 4 | requests 5 | TgCrypto -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/static/logo.png -------------------------------------------------------------------------------- /static/no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/static/no-image.png -------------------------------------------------------------------------------- /static/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/static/screenshot1.jpg -------------------------------------------------------------------------------- /static/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/static/screenshot2.jpg -------------------------------------------------------------------------------- /streamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/streamer.py -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/templates/stream.html -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/custom_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/utils/custom_dl.py -------------------------------------------------------------------------------- /utils/file_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/utils/file_properties.py -------------------------------------------------------------------------------- /utils/time_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/utils/time_format.py -------------------------------------------------------------------------------- /web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TechZIndex/HEAD/web.py --------------------------------------------------------------------------------