├── .github └── FUNDING.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── examples ├── sending_audio.py ├── sending_button.py ├── sending_document.py ├── sending_image.py ├── sending_location.py ├── sending_message.py ├── sending_template_message.py └── sending_video.py ├── heyoo └── __init__.py ├── hook.py ├── requirements.txt ├── setup.py └── tests ├── test_sending_audio.py ├── test_sending_button.py ├── test_sending_document.py ├── test_sending_image.py ├── test_sending_location.py ├── test_sending_message.py ├── test_sending_template_message.py └── test_sending_video.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: kalebujordan 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /examples/sending_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/examples/sending_audio.py -------------------------------------------------------------------------------- /examples/sending_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/examples/sending_button.py -------------------------------------------------------------------------------- /examples/sending_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/examples/sending_document.py -------------------------------------------------------------------------------- /examples/sending_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/examples/sending_image.py -------------------------------------------------------------------------------- /examples/sending_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/examples/sending_location.py -------------------------------------------------------------------------------- /examples/sending_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/examples/sending_message.py -------------------------------------------------------------------------------- /examples/sending_template_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/examples/sending_template_message.py -------------------------------------------------------------------------------- /examples/sending_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/examples/sending_video.py -------------------------------------------------------------------------------- /heyoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/heyoo/__init__.py -------------------------------------------------------------------------------- /hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/hook.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_sending_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/tests/test_sending_audio.py -------------------------------------------------------------------------------- /tests/test_sending_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/tests/test_sending_button.py -------------------------------------------------------------------------------- /tests/test_sending_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/tests/test_sending_document.py -------------------------------------------------------------------------------- /tests/test_sending_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/tests/test_sending_image.py -------------------------------------------------------------------------------- /tests/test_sending_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/tests/test_sending_location.py -------------------------------------------------------------------------------- /tests/test_sending_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/tests/test_sending_message.py -------------------------------------------------------------------------------- /tests/test_sending_template_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/tests/test_sending_template_message.py -------------------------------------------------------------------------------- /tests/test_sending_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neurotech-HQ/heyoo/HEAD/tests/test_sending_video.py --------------------------------------------------------------------------------