Skip to content

exituser/prosto-sms-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

prosto-sms | API python wrapper

TODO

  • tests

Install

python -m pip install prosto_sms

Examples

Auth by key and get profile data:

import prosto_sms

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

print(api.methods.get_profile())

Auth by creds and get profile data:

import prosto_sms

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

print(api.methods.get_profile())