├── .gitignore ├── Bot ├── __init__.py ├── __main__.py ├── helpers │ ├── adminhelpers.py │ ├── interval.py │ └── pyrohelper.py ├── modules │ ├── admin.py │ ├── alive.py │ ├── dev.py │ ├── help.py │ ├── paste.py │ ├── pin.py │ ├── ping.py │ ├── purge.py │ ├── spb.py │ ├── translate.py │ └── whois.py └── sample_config.py ├── LICENSE ├── README.md ├── makesession.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/.gitignore -------------------------------------------------------------------------------- /Bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/__init__.py -------------------------------------------------------------------------------- /Bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/__main__.py -------------------------------------------------------------------------------- /Bot/helpers/adminhelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/helpers/adminhelpers.py -------------------------------------------------------------------------------- /Bot/helpers/interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/helpers/interval.py -------------------------------------------------------------------------------- /Bot/helpers/pyrohelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/helpers/pyrohelper.py -------------------------------------------------------------------------------- /Bot/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/modules/admin.py -------------------------------------------------------------------------------- /Bot/modules/alive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/modules/alive.py -------------------------------------------------------------------------------- /Bot/modules/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/modules/dev.py -------------------------------------------------------------------------------- /Bot/modules/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/modules/help.py -------------------------------------------------------------------------------- /Bot/modules/paste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/modules/paste.py -------------------------------------------------------------------------------- /Bot/modules/pin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/modules/pin.py -------------------------------------------------------------------------------- /Bot/modules/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/modules/ping.py -------------------------------------------------------------------------------- /Bot/modules/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/modules/purge.py -------------------------------------------------------------------------------- /Bot/modules/spb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/modules/spb.py -------------------------------------------------------------------------------- /Bot/modules/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/modules/translate.py -------------------------------------------------------------------------------- /Bot/modules/whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/modules/whois.py -------------------------------------------------------------------------------- /Bot/sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/Bot/sample_config.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/README.md -------------------------------------------------------------------------------- /makesession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dank-del/EagleX/HEAD/makesession.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyrogram 2 | tgcrypto 3 | aiohttp==3.7.4 4 | googletrans==3.0.0 --------------------------------------------------------------------------------