Metadata-Version: 2.1
Name: pl-tmobile-sms-gateway
Version: 0.1.1
Summary: Dead simple wrapper for T-Mobile Poland SMS gateway
Home-page: https://github.com/krzysztofmo/pl_tmobile_sms_gateway
Author: Krzysztof Mochejski
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Wrapper for T-Mobile Poland SMS Gateway

This python package is a simple wrapper for T-Mobile (Poland only) SMS endpoint. The endpoint only provides facility to send test messages.

T-Mobile provides users with two SMS sending endpoints: one is completely free (so called *Sponsored*) and a paid one with tokens (so called *Omnix*). For details on T-Mobile's API please see this [link](http://www.t-mobile.pl/pl/muzyka-i-rozrywka/ucz-sie-i-poznawaj/komunikacja/dostep-skryptowy).
To use both gateways you need to register an account with T-Mobile.

:warning: __Note__: Both gateways (the paid one and the one free of charge) are only available over http.
__Do not use this package__ if you are concerned with leaking your credentials or the text message.

```python
from pl_tmobile_sms_gateway import Sponsored

sponsored = Sponsored(login="my login", password="my secret password")
sponsored.send("recipient's phone number", "Using free of charge gateway")
```


