├── .gitignore ├── README.md ├── Tools ├── __init__.py ├── client.py ├── database.py ├── dialogs.py ├── info.py ├── methods │ ├── __init__.py │ ├── add_contact.py │ ├── captcha.py │ ├── click.py │ ├── export_chats.py │ ├── get_code.py │ ├── join_chats.py │ ├── leave_chats.py │ ├── ref.py │ ├── refresh.py │ ├── send_contact.py │ ├── send_message.py │ ├── send_reaction.py │ ├── send_vote.py │ ├── unsend_vote.py │ └── watch.py └── parser.py ├── add.py ├── auth.py ├── create.py ├── docs ├── Startup.md ├── join_chats.md ├── leave_chats.md └── send_message.md ├── main.py └── require.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/README.md -------------------------------------------------------------------------------- /Tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/__init__.py -------------------------------------------------------------------------------- /Tools/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/client.py -------------------------------------------------------------------------------- /Tools/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/database.py -------------------------------------------------------------------------------- /Tools/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/dialogs.py -------------------------------------------------------------------------------- /Tools/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/info.py -------------------------------------------------------------------------------- /Tools/methods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/__init__.py -------------------------------------------------------------------------------- /Tools/methods/add_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/add_contact.py -------------------------------------------------------------------------------- /Tools/methods/captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/captcha.py -------------------------------------------------------------------------------- /Tools/methods/click.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/click.py -------------------------------------------------------------------------------- /Tools/methods/export_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/export_chats.py -------------------------------------------------------------------------------- /Tools/methods/get_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/get_code.py -------------------------------------------------------------------------------- /Tools/methods/join_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/join_chats.py -------------------------------------------------------------------------------- /Tools/methods/leave_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/leave_chats.py -------------------------------------------------------------------------------- /Tools/methods/ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/ref.py -------------------------------------------------------------------------------- /Tools/methods/refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/refresh.py -------------------------------------------------------------------------------- /Tools/methods/send_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/send_contact.py -------------------------------------------------------------------------------- /Tools/methods/send_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/send_message.py -------------------------------------------------------------------------------- /Tools/methods/send_reaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/send_reaction.py -------------------------------------------------------------------------------- /Tools/methods/send_vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/send_vote.py -------------------------------------------------------------------------------- /Tools/methods/unsend_vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/unsend_vote.py -------------------------------------------------------------------------------- /Tools/methods/watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/methods/watch.py -------------------------------------------------------------------------------- /Tools/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/Tools/parser.py -------------------------------------------------------------------------------- /add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/add.py -------------------------------------------------------------------------------- /auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/auth.py -------------------------------------------------------------------------------- /create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/create.py -------------------------------------------------------------------------------- /docs/Startup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/docs/Startup.md -------------------------------------------------------------------------------- /docs/join_chats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/docs/join_chats.md -------------------------------------------------------------------------------- /docs/leave_chats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/docs/leave_chats.md -------------------------------------------------------------------------------- /docs/send_message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/docs/send_message.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonNoob999/TeleAccountManager/HEAD/main.py -------------------------------------------------------------------------------- /require.txt: -------------------------------------------------------------------------------- 1 | pyrogram 2 | rich --------------------------------------------------------------------------------