├── .gitignore ├── README.md ├── add_member.py ├── config.example.json ├── data ├── group │ └── __init__ └── user │ └── __init__ ├── get_data.py ├── images ├── block.png ├── data_step2.png ├── note_tele.png ├── note_tele2.png ├── step1.png └── step2.png ├── init_session.py ├── requirements.txt └── session └── __init__ /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/addmember-telegram/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/addmember-telegram/HEAD/README.md -------------------------------------------------------------------------------- /add_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/addmember-telegram/HEAD/add_member.py -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/addmember-telegram/HEAD/config.example.json -------------------------------------------------------------------------------- /data/group/__init__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/user/__init__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/addmember-telegram/HEAD/get_data.py -------------------------------------------------------------------------------- /images/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/addmember-telegram/HEAD/images/block.png -------------------------------------------------------------------------------- /images/data_step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/addmember-telegram/HEAD/images/data_step2.png -------------------------------------------------------------------------------- /images/note_tele.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/addmember-telegram/HEAD/images/note_tele.png -------------------------------------------------------------------------------- /images/note_tele2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/addmember-telegram/HEAD/images/note_tele2.png -------------------------------------------------------------------------------- /images/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/addmember-telegram/HEAD/images/step1.png -------------------------------------------------------------------------------- /images/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/addmember-telegram/HEAD/images/step2.png -------------------------------------------------------------------------------- /init_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/addmember-telegram/HEAD/init_session.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | telethon -------------------------------------------------------------------------------- /session/__init__: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------