Metadata-Version: 2.1
Name: prosto_sms
Version: 0.0.3
Summary: sms-prosto api wrapper written in python
Home-page: https://github.com/exituser/prosto-sms-python
Author: Alex Dennitsev
Author-email: me@chydo.dev
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: pydantic
Requires-Dist: loguru
Requires-Dist: setuptools
Requires-Dist: wheel

# prosto-sms | API python wrapper

## TODO
- tests
------

## Install
```shell
python -m pip install prosto_sms
```
------

## Examples
### Auth by key and get profile data:
```python
import prosto_sms

api = prosto_sms.api.API(
    key="bd...5bb"
)

print(api.methods.get_profile())
```

### Auth by creds and get profile data:
```python
import prosto_sms

api = prosto_sms.api.API(
    email="me@chydo.dev",
    password="password"
)

print(api.methods.get_profile())
```
