Skip to main content

A Python wrapper for the SmsHub API supporting synchronous and asynchronous requests.

Project description

SmsHub API Wrapper

This library provides a simple and intuitive Python wrapper around the SmsHub API, allowing for both synchronous and asynchronous interaction with the service. With this wrapper, you can easily integrate SmsHub functionality into your Python applications.

Features

  • Synchronous and asynchronous API calls.
  • Comprehensive error handling with custom exceptions.
  • Response parsing utilities.
  • Support RU/EN languages based on system settings.

Installation

To install SmsHub API Wrapper, simply use pip:

pip install pysmshub

Quick Start

Here's a quick example of how you can use the SmsHub API Wrapper:

Synchronous usage

import time
from pysmshub import SyncSmsHubApi
from pysmshub.utils import Status

# Initialize instance with API_KEY. HTTP proxy support available.
hub_api_sync = SyncSmsHubApi(api_key="your_api_key_here", proxy="http://proxyhost:proxyport")

# Get_balance example
balance = hub_api_sync.get_balance()
print(f"Current balance: {balance}")

# Get_number example
num_id, phone = hub_api_sync.get_number(service="ya", max_price=2)

# Get_status example
for _ in range(10):
    status, code = hub_api_sync.get_status("your_num_id")
    if status == Status.SUCCESS:
        print(code)
        break
    time.sleep(1)

# Set_status example
hub_api_sync.set_status("your_num_id", Status.CANCEL)

Asynchronous usage

import asyncio
from pysmshub import AsyncSmsHubApi
from pysmshub.utils import Status


async def async_example():
    # Initialize instance with API_KEY
    hub_api_async = AsyncSmsHubApi(api_key="your_api_key_here")

    # Get_balance example
    balance = await hub_api_async.get_balance()
    print(f"Current balance: {balance}")

    # Get_number example
    num_id, phone = await hub_api_async.get_number(service="ya", max_price=2)

    # Get_status example
    for _ in range(10):
        status, code = await hub_api_async.get_status("your_num_id")
        if status == Status.SUCCESS:
            print(code)
            break
        await asyncio.sleep(1)

    # Set_status example
    await hub_api_async.set_status("your_num_id", Status.CANCEL)


# Run the async example
asyncio.run(async_example())

Error handling

from pysmshub import SyncSmsHubApi

hub_api_sync = SyncSmsHubApi(api_key="your_api_key_here")
try:
    num_id, phone = hub_api_sync.get_number(service="ya", max_price=2)
except SmsHubApiException as e:
    print(e)

Proxy support

from pysmshub import SyncSmsHubApi, AsyncSyncSmsHubApi

SyncSmsHubApi(api_key="your_api_key_here", proxy="http://proxyhost:proxyport")
AsyncSyncSmsHubApi(api_key="your_api_key_here", proxy="http://proxyhost:proxyport")

Documentation

For detailed information about all the functionality available in this wrapper, please refer to the official SmsHub API documentation.

Contributing

Contributions are welcome! If you have an improvement or a bug fix, feel free to fork this repository, make your changes, and submit a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

If you need help or have any questions, please open an issue in the GitHub issue tracker.

Disclaimer

This library is not affiliated with SmsHub and is developed as an independent project.

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

pysmshub-0.1.1.tar.gz (2.3 kB view details)

Uploaded Source

Built Distribution

pysmshub-0.1.1-py3-none-any.whl (2.3 kB view details)

Uploaded Python 3

File details

Details for the file pysmshub-0.1.1.tar.gz.

File metadata

  • Download URL: pysmshub-0.1.1.tar.gz
  • Upload date:
  • Size: 2.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for pysmshub-0.1.1.tar.gz
Algorithm Hash digest
SHA256 8d914978ec90a7b364db870756f55e4d29e70bad73e4f3ab494568164c310f0e
MD5 713e01d810a206534ed7bdf16050cf4b
BLAKE2b-256 cef363eb4a90a63dc58cc00d19d2ad8557c19693433f537787bbe2736712ba05

See more details on using hashes here.

File details

Details for the file pysmshub-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: pysmshub-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 2.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for pysmshub-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7f3d8df6fca7776a8d192c109003829bbc29a1b210651d4a328e8a333f5f0670
MD5 c2882327660224dc9cc3d803ca9c8928
BLAKE2b-256 8ca7cef847e0a25becf4f955d6c210bb7fb853d42cdf32ee68fc976e9b24d7f1

See more details on using hashes here.

Supported by

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