Ecosyste.ms: Awesome
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: 20 days ago
JSON representation
:iphone: Send SMSes to yourself through the 'Free Mobile' SMS API
- Host: GitHub
- URL: https://github.com/bfontaine/freesms
- Owner: bfontaine
- License: mit
- Created: 2015-01-19T21:40:26.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2021-05-18T15:56:59.000Z (over 3 years ago)
- Last Synced: 2024-10-18T13:15:56.867Z (about 2 months ago)
- Topics: free-mobile, python, sms
- Language: Python
- Homepage:
- Size: 26.4 KB
- Stars: 59
- Watchers: 8
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- starred-awesome - freesms - :iphone: Send SMSes to yourself through the 'Free Mobile' SMS API (Python)
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.2.0 the library only supports Python 3.x.
Usage
-----```python
from freesms import FreeClientf = FreeClient(user="...", password="...")
resp = f.send_sms("hello this is my SMS")
resp.status_code # 200
```