├── .python-version ├── Dockerfile ├── Jisshu ├── __init__.py ├── bot │ ├── J │ ├── __init__.py │ └── clients.py ├── j ├── server │ ├── J │ └── exceptions.py ├── template │ ├── J │ ├── dl.html │ └── req.html └── util │ ├── J │ ├── config_parser.py │ ├── custom_dl.py │ ├── file_properties.py │ ├── file_size.py │ ├── human_readable.py │ ├── keepalive.py │ ├── render_template.py │ └── time_format.py ├── LICENSE ├── Procfile ├── README.md ├── SECURITY.md ├── Script.py ├── Template.py ├── app.py ├── bot.py ├── database ├── config_db.py ├── ia_filterdb.py ├── jsreferdb.py ├── topdb.py └── users_chats_db.py ├── heroku.yml ├── info.py ├── logging.conf ├── plugins ├── Extra │ ├── Link.py │ ├── Most.py │ ├── Redeem.py │ ├── Set_update.py │ ├── Top.py │ ├── ads.py │ ├── cmds.py │ └── premium.py ├── __init__.py ├── b_users.py ├── banned.py ├── bot_stats.py ├── broadcast.py ├── channel.py ├── commands.py ├── deleteFiles.py ├── helper │ ├── Channel.py │ ├── ban.py │ ├── font.py │ ├── fotnt_string.py │ ├── stream.py │ └── telegraph.py ├── id.py ├── index.py ├── join_req.py ├── pm_filter.py └── route.py ├── requirements.txt ├── start.sh └── utils.py /.python-version: -------------------------------------------------------------------------------- 1 | 3.10.13 -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jisshu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Jisshu/__init__.py -------------------------------------------------------------------------------- /Jisshu/bot/J: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Jisshu/bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Jisshu/bot/__init__.py -------------------------------------------------------------------------------- /Jisshu/bot/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Jisshu/bot/clients.py -------------------------------------------------------------------------------- /Jisshu/j: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Jisshu/server/J: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Jisshu/server/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Jisshu/server/exceptions.py -------------------------------------------------------------------------------- /Jisshu/template/J: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Jisshu/template/dl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Jisshu/template/dl.html -------------------------------------------------------------------------------- /Jisshu/template/req.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Jisshu/template/req.html -------------------------------------------------------------------------------- /Jisshu/util/J: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Jisshu/util/config_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Jisshu/util/config_parser.py -------------------------------------------------------------------------------- /Jisshu/util/custom_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Jisshu/util/custom_dl.py -------------------------------------------------------------------------------- /Jisshu/util/file_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Jisshu/util/file_properties.py -------------------------------------------------------------------------------- /Jisshu/util/file_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Jisshu/util/file_size.py -------------------------------------------------------------------------------- /Jisshu/util/human_readable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Jisshu/util/human_readable.py -------------------------------------------------------------------------------- /Jisshu/util/keepalive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Jisshu/util/keepalive.py -------------------------------------------------------------------------------- /Jisshu/util/render_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Jisshu/util/render_template.py -------------------------------------------------------------------------------- /Jisshu/util/time_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Jisshu/util/time_format.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Script.py -------------------------------------------------------------------------------- /Template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/Template.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/app.py -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/bot.py -------------------------------------------------------------------------------- /database/config_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/database/config_db.py -------------------------------------------------------------------------------- /database/ia_filterdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/database/ia_filterdb.py -------------------------------------------------------------------------------- /database/jsreferdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/database/jsreferdb.py -------------------------------------------------------------------------------- /database/topdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/database/topdb.py -------------------------------------------------------------------------------- /database/users_chats_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/database/users_chats_db.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/heroku.yml -------------------------------------------------------------------------------- /info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/info.py -------------------------------------------------------------------------------- /logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/logging.conf -------------------------------------------------------------------------------- /plugins/Extra/Link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/Extra/Link.py -------------------------------------------------------------------------------- /plugins/Extra/Most.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/Extra/Most.py -------------------------------------------------------------------------------- /plugins/Extra/Redeem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/Extra/Redeem.py -------------------------------------------------------------------------------- /plugins/Extra/Set_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/Extra/Set_update.py -------------------------------------------------------------------------------- /plugins/Extra/Top.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/Extra/Top.py -------------------------------------------------------------------------------- /plugins/Extra/ads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/Extra/ads.py -------------------------------------------------------------------------------- /plugins/Extra/cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/Extra/cmds.py -------------------------------------------------------------------------------- /plugins/Extra/premium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/Extra/premium.py -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/__init__.py -------------------------------------------------------------------------------- /plugins/b_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/b_users.py -------------------------------------------------------------------------------- /plugins/banned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/banned.py -------------------------------------------------------------------------------- /plugins/bot_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/bot_stats.py -------------------------------------------------------------------------------- /plugins/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/broadcast.py -------------------------------------------------------------------------------- /plugins/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/channel.py -------------------------------------------------------------------------------- /plugins/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/commands.py -------------------------------------------------------------------------------- /plugins/deleteFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/deleteFiles.py -------------------------------------------------------------------------------- /plugins/helper/Channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/helper/Channel.py -------------------------------------------------------------------------------- /plugins/helper/ban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/helper/ban.py -------------------------------------------------------------------------------- /plugins/helper/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/helper/font.py -------------------------------------------------------------------------------- /plugins/helper/fotnt_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/helper/fotnt_string.py -------------------------------------------------------------------------------- /plugins/helper/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/helper/stream.py -------------------------------------------------------------------------------- /plugins/helper/telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/helper/telegraph.py -------------------------------------------------------------------------------- /plugins/id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/id.py -------------------------------------------------------------------------------- /plugins/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/index.py -------------------------------------------------------------------------------- /plugins/join_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/join_req.py -------------------------------------------------------------------------------- /plugins/pm_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/pm_filter.py -------------------------------------------------------------------------------- /plugins/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/plugins/route.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/start.sh -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JisshuTG/Jisshu-filter-bot/HEAD/utils.py --------------------------------------------------------------------------------