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
) usinghttpx.Client
. - Asynchronous API client (
AsyncTGGateway
) usinghttpx.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
Built Distribution
File details
Details for the file pytggateway-1.0.3.tar.gz
.
File metadata
- Download URL: pytggateway-1.0.3.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
Algorithm | Hash digest | |
---|---|---|
SHA256 | a642610483a16524f7d09d7065a49e80f15579903c410f6a0a22d357aa541bb7 |
|
MD5 | bcec2092dcd40230725b069c65371ced |
|
BLAKE2b-256 | c1559c3fbbd703375baafbb819c7520a142a2db2811536dc7a093a5acb94555c |
File details
Details for the file PyTGGateway-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: PyTGGateway-1.0.3-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
Algorithm | Hash digest | |
---|---|---|
SHA256 | be5cc09a44e1162035232cce5107555d36ebc04bd835b33ea1cff4aff8af6578 |
|
MD5 | 65b8ad2ee0ba4b7f2588cedbd173385f |
|
BLAKE2b-256 | 7f104c035346a944d2179da6c7a7d62bb512c2f5b99f37bfa76c86fbfdca9492 |