smsreg-python

Python client for sms-reg.com API


Keywords
python, python-api, sms-api, smsreg
License
MIT
Install
pip install smsreg-python==1.1.1

Documentation

smsreg-python

Python 3.6|3.7 MIT 1.1.0

Python client for receiving SMS from sms-reg.com.

Installation

pip install smsreg_python --upgrade

Example

from smsreg_python.smsreg import SmsReg
from smsreg_python.dataclasses import Services

# Creating SMS-client instance
sms_client = SmsReg()

# Requesting number
sms_client.request_number(Services.INSTAGRAM)

# Receiving number and code
number = sms_client.wait_number_from_transaction()
input('Enter anything after entering number to form')
code = sms_client.wait_code_from_transaction()

You can see other usage example in examples