Skip to main content

Telegram Gateway API Wrapper

Project description

TGGateway - Python Telegram Gateway API Wrapper

TGGateway is a Python library that provides both synchronous and asynchronous API clients for interacting with the Telegram Gateway API. This wrapper simplifies the process of sending verification messages, checking their status, and handling delivery reports.

Features

  • The one and only requirement is httpx.
  • Synchronous API client (TGGateway) using httpx.Client.
  • Asynchronous API client (AsyncTGGateway) using httpx.AsyncClient.
  • Handles API requests and responses, including:
    • Sending verification messages
    • Checking the status of sent messages
    • Checking delivery status and revoking verification messages
  • Custom exception handling for API errors.

Installation

You can install the package via pip:

python3 -m  pip  install  PyTGGateway

Usage

It is recommended to use TGGateway as a context manager. By doing this, you can make sure that connections are correctly cleaned up when leaving the with block. However, you also have the option to use .close() to explicitly close the connection.

Get access_token from Telegram Gateway Account.

Sync Example

As context manager

from TGGateway import TGGateway

def main():
    with TGGateway('access_token') as gateway:
        try:
            result = gateway.sendVerificationMessage(
                phone_number = '+1234567890',
                code = '0527'
            )
            print(result.request_id)
            print(result.request_cost)
        except Exception as e:
            print(f"Error: {e}")

if __name__ == '__main__':
    main()

As .close()

from TGGateway import TGGateway

def main():
    try:
        gateway = TGGateway('access_token')
        result = gateway.sendVerificationMessage(
            phone_number = '+1234567890',
            code = '0527'
        )
        print(result.request_id)
        print(result.request_cost)
    except Exception as e:
        print(f"Error: {e}")
    finally:
        gateway.close()

if __name__ == '__main__':
    main()

Async Example

As context manager

import asyncio
from TGGateway import AsyncTGGateway

async def main():
    async with AsyncTGGateway('access_token') as gateway:
        try:
            result = await gateway.sendVerificationMessage(
                phone_number = '+1234567890',
                code = '0527'
            )
            print(result.request_id)
            print(result.request_cost)
        except Exception as e:
            print(f"Error: {e}")

if __name__ == '__main__':
    asyncio.run(main())

As .close()

import asyncio
from TGGateway import AsyncTGGateway

async def main():
    try:
        gateway = AsyncTGGateway('access_token')
        result = await gateway.sendVerificationMessage(
            phone_number = '+1234567890',
            code = '0527'
        )
        print(result.request_id)
        print(result.request_cost)
    except Exception as e:
        print(f"Error: {e}")
    finally:
        await gateway.close()

if __name__ == '__main__':
    asyncio.run(main())

API Reference

For detailed API references, check the Official API Documentation.

TGGateway

Methods:

  • getAccessToken() -> str
    Get the current access token that is being used.

  • sendVerificationMessage(phone_number: str, request_id: str, ...) -> RequestStatus
    Sends a verification message to a phone number.

  • checkSendAbility(phone_number: str) -> RequestStatus
    Checks if a phone number can receive a verification message.

  • checkVerificationStatus(request_id: str, code: str = None) -> RequestStatus
    Checks the status of the verification process.

  • revokeVerificationMessage(request_id: str) -> bool
    Revokes a verification message.

Exception:

  • TGGatewayException
    Base class for all Telegram Gateway exceptions.

  • ApiError
    Raised when the API returns an error.

  • ResponseNotOk
    Raised when the response from the API is not successful (status code not 2xx).

AsyncTGGateway

The asynchronous version of the TGGateway class supports the same methods as its synchronous counterpart, but all methods must be awaited.

Contributing

Contributions are welcome! Please open an issue or submit a pull request with your improvements.

License

This project is licensed under the MIT License. See the LICENSE file for more details.

With ❤️ Made By @Sasivarnasarma

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

pytggateway-1.0.1.tar.gz (7.4 kB view details)

Uploaded Source

Built Distribution

PyTGGateway-1.0.1-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file pytggateway-1.0.1.tar.gz.

File metadata

  • Download URL: pytggateway-1.0.1.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for pytggateway-1.0.1.tar.gz
Algorithm Hash digest
SHA256 f0bff164d82359039c0c1315afb1ec38411023c7f43062e06595e3e8aa296c10
MD5 c912fbe8f897cd7de5cc30b951c2f350
BLAKE2b-256 f2a200718453897ec668ebc1aa9563d4e08c6643776ec55dbc641b1ff1ed7ebf

See more details on using hashes here.

File details

Details for the file PyTGGateway-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: PyTGGateway-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 10.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for PyTGGateway-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 80a62bf312b3d5152294d02edf148aa8753177d686788411dd1351f7cdcc37b4
MD5 85c3ff7e365b8b5b57b6920fcae82e38
BLAKE2b-256 0d8665420a646bd5e27d072f630bb20a0f7c16a0c3f54ee1ec4b2186ac61833a

See more details on using hashes here.

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