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
- Host: GitHub
- URL: https://github.com/bfontaine/freesms
- Owner: bfontaine
- License: mit
- Created: 2015-01-19T21:40:26.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2025-03-20T10:39:54.000Z (about 2 months ago)
- Last Synced: 2025-04-01T16:18:10.966Z (about 1 month ago)
- Topics: free-mobile, python, sms
- Language: Python
- Homepage:
- Size: 45.9 KB
- Stars: 59
- Watchers: 7
- Forks: 13
- 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
[](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 FreeClientf = FreeClient(user="...", password="...")
resp = f.send_sms("hello this is my SMS")
print(resp.status_code) # 200
```