├── .gitignore ├── README.md ├── base.py ├── filters ├── __init__.py └── group_access.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoEx/django-expert-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoEx/django-expert-bot/HEAD/README.md -------------------------------------------------------------------------------- /base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoEx/django-expert-bot/HEAD/base.py -------------------------------------------------------------------------------- /filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filters/group_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoEx/django-expert-bot/HEAD/filters/group_access.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyrogram==2.0.103 2 | openai==0.27.2 3 | TgCrypto==1.2.5 4 | python-dotenv==1.0.0 --------------------------------------------------------------------------------