Metadata-Version: 2.4
Name: resms
Version: 0.1.1
Summary: Python SDK for ReSMS, a simple and powerful SMS API.
Project-URL: Documentation, https://github.com/resms/resms-python#readme
Project-URL: Issues, https://github.com/resms/resms-python/issues
Project-URL: Source, https://github.com/resms/resms-python
Author-email: louanbel <louanbelicaud63@gmail.com>
License-Expression: MIT
License-File: LICENSE.txt
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.9
Requires-Dist: requests>=2.31
Provides-Extra: async
Requires-Dist: httpx>=0.26; extra == 'async'
Provides-Extra: dev
Requires-Dist: ipython; extra == 'dev'
Requires-Dist: mypy; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Description-Content-Type: text/markdown

# ReSMS SDK for Python
Python SDK for ReSMS, a simple and powerful SMS API.

## Installation

```bash
pip install resms
```

## Setup
You need to get an API key on [ReSMS Dashboard](https://resms.dev/dashboard).
Then import the package and create a new instance of the `ReSMS` class with your API key.

```python
from resms import ReSMS
```

## Usage
Send you can send your SMS:
```python
sms = ReSMS("re-1234")
sms.send(to="+33123456789", message="Code 123456")
```

## Documentation
The full documentation is available at [resms.dev/docs](https://resms.dev/docs).

## License
This project is licensed under the MIT License.

## Note
This is a simple SDK for ReSMS. More features and improvements will be added in the future. If you have any suggestions or issues, please open an issue on GitHub.