├── .github └── FUNDING.yml ├── .gitignore ├── .replit ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── assets └── img │ ├── heroku.png │ ├── koyeb.png │ ├── replit.jpg │ ├── screenshots │ └── channels.png │ └── vps.png ├── bot.py ├── config.py ├── database ├── __init__.py ├── database.py └── users.py ├── guides ├── replit.md └── vps.md ├── helpers.py ├── heroku.yml ├── logging.conf ├── main.py ├── plugins ├── __init__.py ├── batch.py ├── broadcast.py ├── callback.py ├── channel.py ├── commands.py ├── filters.py ├── forcesub.py ├── forwarded.py ├── private.py └── route.py ├── requirements.txt ├── runtime.txt ├── sample.env ├── start.sh ├── translation.py └── utils.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/.gitignore -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/.replit -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/app.json -------------------------------------------------------------------------------- /assets/img/heroku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/assets/img/heroku.png -------------------------------------------------------------------------------- /assets/img/koyeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/assets/img/koyeb.png -------------------------------------------------------------------------------- /assets/img/replit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/assets/img/replit.jpg -------------------------------------------------------------------------------- /assets/img/screenshots/channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/assets/img/screenshots/channels.png -------------------------------------------------------------------------------- /assets/img/vps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/assets/img/vps.png -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/bot.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/config.py -------------------------------------------------------------------------------- /database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/database/__init__.py -------------------------------------------------------------------------------- /database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/database/database.py -------------------------------------------------------------------------------- /database/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/database/users.py -------------------------------------------------------------------------------- /guides/replit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/guides/replit.md -------------------------------------------------------------------------------- /guides/vps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/guides/vps.md -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/helpers.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/heroku.yml -------------------------------------------------------------------------------- /logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/logging.conf -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/main.py -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/plugins/__init__.py -------------------------------------------------------------------------------- /plugins/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/plugins/batch.py -------------------------------------------------------------------------------- /plugins/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/plugins/broadcast.py -------------------------------------------------------------------------------- /plugins/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/plugins/callback.py -------------------------------------------------------------------------------- /plugins/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/plugins/channel.py -------------------------------------------------------------------------------- /plugins/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/plugins/commands.py -------------------------------------------------------------------------------- /plugins/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/plugins/filters.py -------------------------------------------------------------------------------- /plugins/forcesub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/plugins/forcesub.py -------------------------------------------------------------------------------- /plugins/forwarded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/plugins/forwarded.py -------------------------------------------------------------------------------- /plugins/private.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/plugins/private.py -------------------------------------------------------------------------------- /plugins/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/plugins/route.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.6 -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/sample.env -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/start.sh -------------------------------------------------------------------------------- /translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/translation.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinnadar22/URL-Shortener-V2/HEAD/utils.py --------------------------------------------------------------------------------