├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.md │ └── pull_request_template.md └── workflows │ ├── codeql.yml │ └── python-publish.yml ├── .gitignore ├── .idea ├── Demon_connect.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── .readthedocs.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEMON_CONNECT_DOC.md ├── Documentation └── API.md ├── LICENSE ├── README.md ├── README.rst ├── SECURITY.md ├── WORKFLOW.md ├── assets ├── image.png ├── main.png ├── sc1.jpeg └── sc2.jpeg ├── demon_connect ├── Dockerfile ├── __init__.py ├── chat │ ├── __init__.py │ ├── chat.py │ ├── conversation.py │ └── group.py ├── drivers │ ├── chromedriver.exe │ └── main.txt ├── features │ ├── delete │ │ └── delete_message.py │ ├── extras │ │ ├── add_caption.py │ │ ├── convert_bytes.py │ │ ├── convert_bytes_to.py │ │ ├── fetch_all_unread_chats.py │ │ ├── find_attachment.py │ │ ├── get_list_of_messages.py │ │ └── send_attachment.py │ ├── login │ │ └── login_whatsapp.py │ ├── logout │ │ └── logout.py │ ├── send │ │ ├── send_file.py │ │ ├── send_image.py │ │ ├── send_message.py │ │ └── send_video.py │ └── tagall │ │ └── tagall.py ├── message │ ├── __init__.py │ ├── message.py │ └── unread_message.py ├── requirements.txt ├── utils │ ├── __init__.py │ ├── constants.py │ ├── exceptions.py │ ├── handler.py │ ├── helpers.py │ ├── sorce.py │ └── threads.py └── whatsapp_api.py ├── dist ├── demon_connect-1.0.3-py3-none-any.whl └── demon_connect-1.0.3.tar.gz ├── doc ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── _static │ └── main.png │ ├── conf.py │ ├── content │ ├── api │ │ └── api_reference.rst │ ├── client │ │ └── client_reference.rst │ ├── contribution │ │ └── contribution_reference.rst │ └── features │ │ ├── conversation │ │ └── conversation_reference.rst │ │ ├── extras │ │ ├── add_caption_reference.rst │ │ ├── fetch_all_unread_chats_reference.rst │ │ ├── find_attachment_reference.rst │ │ ├── get_list_of_messages_reference.rst │ │ └── send_attachment_reference.rst │ │ ├── group │ │ └── group_reference.rst │ │ ├── login │ │ └── login_reference.rst │ │ ├── logout │ │ └── logout_reference.rst │ │ ├── message │ │ └── message_reference.rst │ │ ├── send │ │ ├── send_file_reference.rst │ │ ├── send_image_reference.rst │ │ ├── send_message_reference.rst │ │ └── send_video_reference.rst │ │ ├── tagall │ │ └── tagall_reference.rst │ │ └── unread_message │ │ └── unread_message_reference.rst │ ├── favicon.ico │ └── index.rst ├── main.py ├── poetry.lock ├── pull_request_template.md ├── pyproject.toml └── setup.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/.github/ISSUE_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .idea/ 3 | profile/ 4 | -------------------------------------------------------------------------------- /.idea/Demon_connect.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/.idea/Demon_connect.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEMON_CONNECT_DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/DEMON_CONNECT_DOC.md -------------------------------------------------------------------------------- /Documentation/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/Documentation/API.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/SECURITY.md -------------------------------------------------------------------------------- /WORKFLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/WORKFLOW.md -------------------------------------------------------------------------------- /assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/assets/image.png -------------------------------------------------------------------------------- /assets/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/assets/main.png -------------------------------------------------------------------------------- /assets/sc1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/assets/sc1.jpeg -------------------------------------------------------------------------------- /assets/sc2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/assets/sc2.jpeg -------------------------------------------------------------------------------- /demon_connect/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/Dockerfile -------------------------------------------------------------------------------- /demon_connect/__init__.py: -------------------------------------------------------------------------------- 1 | from .whatsapp_api import Demon -------------------------------------------------------------------------------- /demon_connect/chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/chat/__init__.py -------------------------------------------------------------------------------- /demon_connect/chat/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/chat/chat.py -------------------------------------------------------------------------------- /demon_connect/chat/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/chat/conversation.py -------------------------------------------------------------------------------- /demon_connect/chat/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/chat/group.py -------------------------------------------------------------------------------- /demon_connect/drivers/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/drivers/chromedriver.exe -------------------------------------------------------------------------------- /demon_connect/drivers/main.txt: -------------------------------------------------------------------------------- 1 | add drivers 2 | -------------------------------------------------------------------------------- /demon_connect/features/delete/delete_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/features/delete/delete_message.py -------------------------------------------------------------------------------- /demon_connect/features/extras/add_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/features/extras/add_caption.py -------------------------------------------------------------------------------- /demon_connect/features/extras/convert_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/features/extras/convert_bytes.py -------------------------------------------------------------------------------- /demon_connect/features/extras/convert_bytes_to.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/features/extras/convert_bytes_to.py -------------------------------------------------------------------------------- /demon_connect/features/extras/fetch_all_unread_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/features/extras/fetch_all_unread_chats.py -------------------------------------------------------------------------------- /demon_connect/features/extras/find_attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/features/extras/find_attachment.py -------------------------------------------------------------------------------- /demon_connect/features/extras/get_list_of_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/features/extras/get_list_of_messages.py -------------------------------------------------------------------------------- /demon_connect/features/extras/send_attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/features/extras/send_attachment.py -------------------------------------------------------------------------------- /demon_connect/features/login/login_whatsapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/features/login/login_whatsapp.py -------------------------------------------------------------------------------- /demon_connect/features/logout/logout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/features/logout/logout.py -------------------------------------------------------------------------------- /demon_connect/features/send/send_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/features/send/send_file.py -------------------------------------------------------------------------------- /demon_connect/features/send/send_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/features/send/send_image.py -------------------------------------------------------------------------------- /demon_connect/features/send/send_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/features/send/send_message.py -------------------------------------------------------------------------------- /demon_connect/features/send/send_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/features/send/send_video.py -------------------------------------------------------------------------------- /demon_connect/features/tagall/tagall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/features/tagall/tagall.py -------------------------------------------------------------------------------- /demon_connect/message/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/message/__init__.py -------------------------------------------------------------------------------- /demon_connect/message/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/message/message.py -------------------------------------------------------------------------------- /demon_connect/message/unread_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/message/unread_message.py -------------------------------------------------------------------------------- /demon_connect/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/requirements.txt -------------------------------------------------------------------------------- /demon_connect/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/utils/__init__.py -------------------------------------------------------------------------------- /demon_connect/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/utils/constants.py -------------------------------------------------------------------------------- /demon_connect/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/utils/exceptions.py -------------------------------------------------------------------------------- /demon_connect/utils/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/utils/handler.py -------------------------------------------------------------------------------- /demon_connect/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/utils/helpers.py -------------------------------------------------------------------------------- /demon_connect/utils/sorce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/utils/sorce.py -------------------------------------------------------------------------------- /demon_connect/utils/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/utils/threads.py -------------------------------------------------------------------------------- /demon_connect/whatsapp_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/demon_connect/whatsapp_api.py -------------------------------------------------------------------------------- /dist/demon_connect-1.0.3-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/dist/demon_connect-1.0.3-py3-none-any.whl -------------------------------------------------------------------------------- /dist/demon_connect-1.0.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/dist/demon_connect-1.0.3.tar.gz -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/source/_static/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/_static/main.png -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/content/api/api_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/api/api_reference.rst -------------------------------------------------------------------------------- /doc/source/content/client/client_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/client/client_reference.rst -------------------------------------------------------------------------------- /doc/source/content/contribution/contribution_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/contribution/contribution_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/conversation/conversation_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/conversation/conversation_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/extras/add_caption_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/extras/add_caption_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/extras/fetch_all_unread_chats_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/extras/fetch_all_unread_chats_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/extras/find_attachment_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/extras/find_attachment_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/extras/get_list_of_messages_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/extras/get_list_of_messages_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/extras/send_attachment_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/extras/send_attachment_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/group/group_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/group/group_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/login/login_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/login/login_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/logout/logout_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/logout/logout_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/message/message_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/message/message_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/send/send_file_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/send/send_file_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/send/send_image_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/send/send_image_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/send/send_message_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/send/send_message_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/send/send_video_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/send/send_video_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/tagall/tagall_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/tagall/tagall_reference.rst -------------------------------------------------------------------------------- /doc/source/content/features/unread_message/unread_message_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/content/features/unread_message/unread_message_reference.rst -------------------------------------------------------------------------------- /doc/source/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/favicon.ico -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/main.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/poetry.lock -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anupammaurya6767/Demon_connect/HEAD/setup.py --------------------------------------------------------------------------------