├── .gitignore ├── LICENSE ├── README.md ├── add2group.py ├── adder.py ├── scraper.py ├── setup.py └── smsbot.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Object file 2 | *.o 3 | 4 | # Ada Library Information 5 | *.ali 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damantha126/TelegramScraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damantha126/TelegramScraper/HEAD/README.md -------------------------------------------------------------------------------- /add2group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damantha126/TelegramScraper/HEAD/add2group.py -------------------------------------------------------------------------------- /adder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damantha126/TelegramScraper/HEAD/adder.py -------------------------------------------------------------------------------- /scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damantha126/TelegramScraper/HEAD/scraper.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damantha126/TelegramScraper/HEAD/setup.py -------------------------------------------------------------------------------- /smsbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damantha126/TelegramScraper/HEAD/smsbot.py --------------------------------------------------------------------------------