bluzir / smsreg-python

Python client for sms-reg.com API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Python client for sms-reg.com API

License:MIT License


Languages

Language:Python 100.0%