Skip to main content

A simple python package to send SMS via HahuCloud API

Project description

API Guide for Hahu Cloud SMS Gateway

This is simple python api for hahucloud sms. It is a RESTful API, and you can use it to send SMS messages to your customers. It is a simple and easy to use API.

This is unofficial API, and it is not supported by Hahu Clouds. It is just a guide for you to use Hahu SMS API. If you have any questions, please contact us.

Contact Information:

- Email: chapimenge3@gmail.com
- Telegram: @chapimenge
- Twitter: @chapimenge
- Linkedin: https://www.linkedin.com/in/chapimenge/

Installation

hahusms is available on PyPI:

python -m pip install hahusms

Hahusms officially supports Python 3.7 and above.

User Guide

Simple API Reference:

from hahusms import SMS

sms = SMS(api_key='your_api_key')

response = sms.send_message(to='+86xxxxxxxx', message='Hello world!')
print(response['status'])
print(response['message'])
print(response['data'])

# Or you can use the following to make the response from json to object

sms = SMS(api_key='your_api_key', response_format="obj")
response = sms.send_message(to='+86xxxxxxxx', message='Hello world!')
print(response.status)
print(response.message)
print(response.data.message)

API Reference

The SMS class the base class for all API calls. You can set the following parameters when you initialize the SMS class:

- api_key: Your API key.
- response_format: The response format. It can be "json" or "obj".
- device (optional): The device id to set your own default device.
- sim (optional): The sim slot to set your own default sim slot.
- priority (optional): The priority of the message. It can be 0 or 1.

To use the above parameters we can use as below

from hahusms import SMS
sms = SMS(api_key='your_api_key', response_format="json",
          device='your_device_id(int)', sim='your_sim_slot(int)',
          priority=1)

You can pass the parameters when you call the API.

sms = SMS(api_key='your_api_key', response_format="obj")
params = {
    "id": 1
}
response = sms.get_device(params=params)
print(response.status)
print(response.message)
print(response.data.name) # The response is object type because we set response_format="obj"

you can always override the SMS class and define your own custom methods to call the API.

Available Methods

SMS class have the following methods:

- create_contact
- create_group
- delete_contact
- delete_group
- get_contacts
- get_groups
- get_device
- get_devices
- get_pending
- get_received
- get_received
- send
- send_message - required parameters: to, message

You can find the official Postman Collection for each method in the API Reference.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hahusms-0.0.1.tar.gz (4.6 kB view hashes)

Uploaded Source

Built Distribution

hahusms-0.0.1-py3-none-any.whl (4.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page