added main files

This commit is contained in:
2024-04-05 00:38:00 +07:00
commit ba6c68db7f
10 changed files with 708 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
# 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())
```