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-2.0.0.tar.gz (8.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytggateway-2.0.0-py3-none-any.whl (11.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pytggateway-2.0.0.tar.gz
  • Upload date:
  • Size: 8.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.21

File hashes

Hashes for pytggateway-2.0.0.tar.gz
Algorithm Hash digest
SHA256 470594b55723477c9ddec575022c22290898ee9185496355f4e8bcad4bd34b6e
MD5 04d77debc1fde44668a2fe0c6a09c938
BLAKE2b-256 f398c118a27f23711cb3f48d1c0188850ab095fad9ef3cbcf3f1aa51ec41fe4c

See more details on using hashes here.

File details

Details for the file pytggateway-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: pytggateway-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 11.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.21

File hashes

Hashes for pytggateway-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0263fc032913c5c52d76f046b49fac1cb05ffe0aad970283b17bd0594a773c67
MD5 7464636b01359e749d0e198e76dfd50c
BLAKE2b-256 a195a205d51eaa88fa1cf908d1fbd6bc3101ec340fb3b15dc0fbfb258f5774c7

See more details on using hashes here.

Supported by

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