├── .gitignore ├── LICENSE.txt ├── README.md ├── release ├── requirements.txt ├── setup.py ├── src └── __init__.py └── test └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-socket-client-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-socket-client-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-socket-client-python/HEAD/README.md -------------------------------------------------------------------------------- /release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-socket-client-python/HEAD/release -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-socket-client-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-socket-client-python/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-socket-client-python/HEAD/src/__init__.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-socket-client-python/HEAD/test/test.py --------------------------------------------------------------------------------