├── .env.example ├── .gitignore ├── Dockerfile ├── TelegramCommand.py ├── agregator.py ├── commands ├── deleteall_command.py ├── filter_command.py ├── filterclear_command.py ├── filterlist_command.py ├── filterstart_command.py ├── filterstop_command.py ├── helpmessage_command.py ├── import_module.py ├── join_command.py ├── leave_command.py ├── listchannels_command.py ├── message_command.py ├── new_command.py ├── start_command.py ├── stop_command.py ├── test_command.py └── unfilter_command.py ├── database.py ├── docker-compose.yaml ├── readme.md ├── requirements.txt └── telegregator.ini /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/Dockerfile -------------------------------------------------------------------------------- /TelegramCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/TelegramCommand.py -------------------------------------------------------------------------------- /agregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/agregator.py -------------------------------------------------------------------------------- /commands/deleteall_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/deleteall_command.py -------------------------------------------------------------------------------- /commands/filter_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/filter_command.py -------------------------------------------------------------------------------- /commands/filterclear_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/filterclear_command.py -------------------------------------------------------------------------------- /commands/filterlist_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/filterlist_command.py -------------------------------------------------------------------------------- /commands/filterstart_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/filterstart_command.py -------------------------------------------------------------------------------- /commands/filterstop_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/filterstop_command.py -------------------------------------------------------------------------------- /commands/helpmessage_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/helpmessage_command.py -------------------------------------------------------------------------------- /commands/import_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/import_module.py -------------------------------------------------------------------------------- /commands/join_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/join_command.py -------------------------------------------------------------------------------- /commands/leave_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/leave_command.py -------------------------------------------------------------------------------- /commands/listchannels_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/listchannels_command.py -------------------------------------------------------------------------------- /commands/message_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/message_command.py -------------------------------------------------------------------------------- /commands/new_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/new_command.py -------------------------------------------------------------------------------- /commands/start_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/start_command.py -------------------------------------------------------------------------------- /commands/stop_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/stop_command.py -------------------------------------------------------------------------------- /commands/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/test_command.py -------------------------------------------------------------------------------- /commands/unfilter_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/commands/unfilter_command.py -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/database.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/requirements.txt -------------------------------------------------------------------------------- /telegregator.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parotikov/telegregator/HEAD/telegregator.ini --------------------------------------------------------------------------------