├── README.md ├── add.py ├── how_to_use.txt ├── img └── img1.jpg ├── manager.py ├── requirements.txt ├── sessions └── info.txt └── version.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelwils/Astra/HEAD/README.md -------------------------------------------------------------------------------- /add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelwils/Astra/HEAD/add.py -------------------------------------------------------------------------------- /how_to_use.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelwils/Astra/HEAD/how_to_use.txt -------------------------------------------------------------------------------- /img/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelwils/Astra/HEAD/img/img1.jpg -------------------------------------------------------------------------------- /manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelwils/Astra/HEAD/manager.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | telethon==1.16.4 2 | requests 3 | colorama==0.4.3 4 | -------------------------------------------------------------------------------- /sessions/info.txt: -------------------------------------------------------------------------------- 1 | sessions are stored here -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1.1 2 | --------------------------------------------------------------------------------