An open API service indexing awesome lists of open source software.

https://github.com/bfontaine/freesms

:iphone: Send SMSes to yourself through the 'Free Mobile' SMS API
https://github.com/bfontaine/freesms

free-mobile python sms

Last synced: about 1 month ago
JSON representation

:iphone: Send SMSes to yourself through the 'Free Mobile' SMS API

Awesome Lists containing this project

README

        

# freesms

[![Pypi package](https://img.shields.io/pypi/v/freesms.png)](https://pypi.python.org/pypi/freesms)

**`freesms`** is a Python interface for Free Mobile SMS API. If you subscribed to their service, it allows you to
programmatically send SMSes to yourself.

## Install

[sudo] pip install freesms

Starting from v0.3.0 the library only supports Python 3.8+.

## Usage

```python
from freesms import FreeClient

f = FreeClient(user="...", password="...")
resp = f.send_sms("hello this is my SMS")
print(resp.status_code) # 200
```