Metadata-Version: 2.1
Name: python-orange-sms
Version: 0.1.0
Summary: Sending sms to orange api with python
Home-page: https://github.com/ged-flod/python_orange_sms
Author: Ged-flod
Author-email: gedeon@comptelab.com
License: MIT
Download-URL: https://pypi.org/project/python_orange_sms/
Keywords: orange sms,python orange sms,python-orange-sms,python-orange
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: requests (==2.25.1)
Requires-Dist: certifi (==2020.12.5)
Requires-Dist: chardet (==4.0.0)
Requires-Dist: idna (==2.10)
Requires-Dist: urllib3 (==1.26.4)


# PYTHON ORANGE SMS GATE WAY

Orange provides API to send SMS to some countries around the world, but using the API may take you a few hours.


if you are python developer don't waste your time use our package to save time


## INSTALL

```sh
pip install python-orange-sms
```

## GET CREDENTIALS

1. Go to https://developer.orange.com/ and login or create a new account

2. Go to **my apps**

3. Selecte your app or create a new **app**

4. Get your  **Client ID**

## USAGE

```py
from python_orange_sms import utils

AUTH_TOKEN = 'Client ID' #  Client ID from orange
message = "Your Message" # Your message
to='+243xxxxxxxxx' # Receiver
from_='+243xxxxxxxxx' # Sender (your phone number)

sms = utils.SMS(AUTH_TOKEN)
res = sms.send(from_=from_, to=to, message=message)

print(res)  

if res.status_code == 201:
    print('AVERY THING RIGHT : ', res.text) # SMS sent
else:
    print('SAME THING WRONG')
```



