├── .github ├── dependabot.yml └── workflows │ └── python-package.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs └── README.md ├── examples ├── async │ ├── accountMethodsAsync.py │ ├── createGroupAndSendMessageAsync.py │ ├── groupsMethodsAsync.py │ ├── lastMessagesAsync.py │ ├── partnerMethods │ │ ├── CreateInstanceAsync.py │ │ ├── DeleteInstanceAccountAsync.py │ │ └── GetInstancesAsync.py │ ├── payload.py │ ├── receiveNotificationAsync.py │ ├── sendTypingAsync.py │ ├── sending │ │ ├── sendFileByUploadAsync.py │ │ ├── sendFileByUrlAsync.py │ │ ├── sendInteractiveButtonsAsync.py │ │ ├── sendInteractiveButtonsReplyAsync.py │ │ ├── sendLocationAsync.py │ │ ├── sendMessageAsync.py │ │ ├── sendPollAsync.py │ │ └── uploadFileAndSendFileByUrlAsync.py │ ├── serviceMethodsAsync.py │ └── statusesMethods │ │ ├── deleteStatusAsync.py │ │ ├── getStatusesAsync.py │ │ ├── sendMediaStatusAsync.py │ │ ├── sendTextStatusAsync.py │ │ └── sendVoiceStatusAsync.py ├── data │ └── logo.jpg └── sync │ ├── createGroupAndSendMessage.py │ ├── lastMessages.py │ ├── partnerMethods │ ├── CreateInstance.py │ ├── DeleteInstanceAccount.py │ └── GetInstances.py │ ├── receiveNotification.py │ ├── sendTyping.py │ ├── sending │ ├── sendInteractiveButtons.py │ ├── sendInteractiveButtonsReply.py │ ├── sendPictureByLink.py │ ├── sendPictureByUpload.py │ ├── sendPoll.py │ ├── sendTextMessage.py │ └── uploadFileAndSendFileByUrl.py │ ├── serviceMethods.py │ ├── setSettings.py │ └── statusesMethods │ ├── deleteStatus.py │ ├── getStatuses.py │ ├── sendMediaStatus.py │ ├── sendTextStatus.py │ └── sendVoiceStatus.py ├── requirements.txt ├── setup.py ├── tests ├── __init__.py └── test_methods.py └── whatsapp_api_client_python ├── API.py ├── __init__.py ├── response.py └── tools ├── __init__.py ├── account.py ├── device.py ├── groups.py ├── journals.py ├── marking.py ├── partner.py ├── queues.py ├── receiving.py ├── sending.py ├── serviceMethods.py ├── statuses.py └── webhooks.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/docs/README.md -------------------------------------------------------------------------------- /examples/async/accountMethodsAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/accountMethodsAsync.py -------------------------------------------------------------------------------- /examples/async/createGroupAndSendMessageAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/createGroupAndSendMessageAsync.py -------------------------------------------------------------------------------- /examples/async/groupsMethodsAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/groupsMethodsAsync.py -------------------------------------------------------------------------------- /examples/async/lastMessagesAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/lastMessagesAsync.py -------------------------------------------------------------------------------- /examples/async/partnerMethods/CreateInstanceAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/partnerMethods/CreateInstanceAsync.py -------------------------------------------------------------------------------- /examples/async/partnerMethods/DeleteInstanceAccountAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/partnerMethods/DeleteInstanceAccountAsync.py -------------------------------------------------------------------------------- /examples/async/partnerMethods/GetInstancesAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/partnerMethods/GetInstancesAsync.py -------------------------------------------------------------------------------- /examples/async/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/payload.py -------------------------------------------------------------------------------- /examples/async/receiveNotificationAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/receiveNotificationAsync.py -------------------------------------------------------------------------------- /examples/async/sendTypingAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/sendTypingAsync.py -------------------------------------------------------------------------------- /examples/async/sending/sendFileByUploadAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/sending/sendFileByUploadAsync.py -------------------------------------------------------------------------------- /examples/async/sending/sendFileByUrlAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/sending/sendFileByUrlAsync.py -------------------------------------------------------------------------------- /examples/async/sending/sendInteractiveButtonsAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/sending/sendInteractiveButtonsAsync.py -------------------------------------------------------------------------------- /examples/async/sending/sendInteractiveButtonsReplyAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/sending/sendInteractiveButtonsReplyAsync.py -------------------------------------------------------------------------------- /examples/async/sending/sendLocationAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/sending/sendLocationAsync.py -------------------------------------------------------------------------------- /examples/async/sending/sendMessageAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/sending/sendMessageAsync.py -------------------------------------------------------------------------------- /examples/async/sending/sendPollAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/sending/sendPollAsync.py -------------------------------------------------------------------------------- /examples/async/sending/uploadFileAndSendFileByUrlAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/sending/uploadFileAndSendFileByUrlAsync.py -------------------------------------------------------------------------------- /examples/async/serviceMethodsAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/serviceMethodsAsync.py -------------------------------------------------------------------------------- /examples/async/statusesMethods/deleteStatusAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/statusesMethods/deleteStatusAsync.py -------------------------------------------------------------------------------- /examples/async/statusesMethods/getStatusesAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/statusesMethods/getStatusesAsync.py -------------------------------------------------------------------------------- /examples/async/statusesMethods/sendMediaStatusAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/statusesMethods/sendMediaStatusAsync.py -------------------------------------------------------------------------------- /examples/async/statusesMethods/sendTextStatusAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/statusesMethods/sendTextStatusAsync.py -------------------------------------------------------------------------------- /examples/async/statusesMethods/sendVoiceStatusAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/async/statusesMethods/sendVoiceStatusAsync.py -------------------------------------------------------------------------------- /examples/data/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/data/logo.jpg -------------------------------------------------------------------------------- /examples/sync/createGroupAndSendMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/createGroupAndSendMessage.py -------------------------------------------------------------------------------- /examples/sync/lastMessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/lastMessages.py -------------------------------------------------------------------------------- /examples/sync/partnerMethods/CreateInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/partnerMethods/CreateInstance.py -------------------------------------------------------------------------------- /examples/sync/partnerMethods/DeleteInstanceAccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/partnerMethods/DeleteInstanceAccount.py -------------------------------------------------------------------------------- /examples/sync/partnerMethods/GetInstances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/partnerMethods/GetInstances.py -------------------------------------------------------------------------------- /examples/sync/receiveNotification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/receiveNotification.py -------------------------------------------------------------------------------- /examples/sync/sendTyping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/sendTyping.py -------------------------------------------------------------------------------- /examples/sync/sending/sendInteractiveButtons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/sending/sendInteractiveButtons.py -------------------------------------------------------------------------------- /examples/sync/sending/sendInteractiveButtonsReply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/sending/sendInteractiveButtonsReply.py -------------------------------------------------------------------------------- /examples/sync/sending/sendPictureByLink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/sending/sendPictureByLink.py -------------------------------------------------------------------------------- /examples/sync/sending/sendPictureByUpload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/sending/sendPictureByUpload.py -------------------------------------------------------------------------------- /examples/sync/sending/sendPoll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/sending/sendPoll.py -------------------------------------------------------------------------------- /examples/sync/sending/sendTextMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/sending/sendTextMessage.py -------------------------------------------------------------------------------- /examples/sync/sending/uploadFileAndSendFileByUrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/sending/uploadFileAndSendFileByUrl.py -------------------------------------------------------------------------------- /examples/sync/serviceMethods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/serviceMethods.py -------------------------------------------------------------------------------- /examples/sync/setSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/setSettings.py -------------------------------------------------------------------------------- /examples/sync/statusesMethods/deleteStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/statusesMethods/deleteStatus.py -------------------------------------------------------------------------------- /examples/sync/statusesMethods/getStatuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/statusesMethods/getStatuses.py -------------------------------------------------------------------------------- /examples/sync/statusesMethods/sendMediaStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/statusesMethods/sendMediaStatus.py -------------------------------------------------------------------------------- /examples/sync/statusesMethods/sendTextStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/statusesMethods/sendTextStatus.py -------------------------------------------------------------------------------- /examples/sync/statusesMethods/sendVoiceStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/examples/sync/statusesMethods/sendVoiceStatus.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/tests/test_methods.py -------------------------------------------------------------------------------- /whatsapp_api_client_python/API.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/whatsapp_api_client_python/API.py -------------------------------------------------------------------------------- /whatsapp_api_client_python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /whatsapp_api_client_python/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/whatsapp_api_client_python/response.py -------------------------------------------------------------------------------- /whatsapp_api_client_python/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /whatsapp_api_client_python/tools/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/whatsapp_api_client_python/tools/account.py -------------------------------------------------------------------------------- /whatsapp_api_client_python/tools/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/whatsapp_api_client_python/tools/device.py -------------------------------------------------------------------------------- /whatsapp_api_client_python/tools/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/whatsapp_api_client_python/tools/groups.py -------------------------------------------------------------------------------- /whatsapp_api_client_python/tools/journals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/whatsapp_api_client_python/tools/journals.py -------------------------------------------------------------------------------- /whatsapp_api_client_python/tools/marking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/whatsapp_api_client_python/tools/marking.py -------------------------------------------------------------------------------- /whatsapp_api_client_python/tools/partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/whatsapp_api_client_python/tools/partner.py -------------------------------------------------------------------------------- /whatsapp_api_client_python/tools/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/whatsapp_api_client_python/tools/queues.py -------------------------------------------------------------------------------- /whatsapp_api_client_python/tools/receiving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/whatsapp_api_client_python/tools/receiving.py -------------------------------------------------------------------------------- /whatsapp_api_client_python/tools/sending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/whatsapp_api_client_python/tools/sending.py -------------------------------------------------------------------------------- /whatsapp_api_client_python/tools/serviceMethods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/whatsapp_api_client_python/tools/serviceMethods.py -------------------------------------------------------------------------------- /whatsapp_api_client_python/tools/statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/whatsapp_api_client_python/tools/statuses.py -------------------------------------------------------------------------------- /whatsapp_api_client_python/tools/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-python/HEAD/whatsapp_api_client_python/tools/webhooks.py --------------------------------------------------------------------------------