Wrapper for automatic reception of SMS-messages by onlinesim.ru
Project description
Onlinesim Python API
Wrapper for automatic reception of SMS-messages by onlinesim.ru
Installation
You can install or upgrade package with:
$ pip install onlinesimru --upgrade
Or you can install from source with:
$ git clone https://github.com/s00d/onlinesim-python-api
$ cd onlinesim-python-api
$ python setup.py install
...or install from source buth with pip
$ pip install git+https://github.com/s00d/onlinesim-python-api
Example
from onlinesimru import FreeNumbersService, RentNumbersService, ProxyService, UserService, NumbersService
def main():
client = UserService('YOUR_TOKEN')
balance = client.balance()
print(balance)
main()
Example2
from onlinesimru import FreeNumbersService, RentNumbersService, ProxyService, UserService, NumbersService
def main():
numbers = NumbersService('YOUR_TOKEN')
input('Press enter if you sms was sent')
tzid = numbers.get('service')
print(tzid)
code = numbers.wait_code(tzid)
print(code)
main()
Example3
# multiple driver using
from onlinesimru import Driver
def main():
driver = Driver('YOUR_TOKEN')
tzid = driver.numbers().get('service')
print(tzid)
code = driver.numbers().wait_code(tzid)
print(code)
main()
Example4 - Custom Domain
# Using custom domain for API endpoints
from onlinesimru import Driver
def main():
# Use custom domain
driver = Driver('YOUR_TOKEN', base_url='https://custom-onlinesim.com')
# Or use local development server
driver_local = Driver('YOUR_TOKEN', base_url='http://localhost:8000')
# Standard usage remains the same
tzid = driver.numbers().get('service')
print(tzid)
main()
Documentation
All documentation is in the wiki of this project - Documentation
Testing
The project includes comprehensive test coverage. All tests are located in the tests/ directory.
Running Tests
# Install test dependencies
pip install pytest pytest-cov pytest-mock
# Run all tests
python -m pytest tests/ -v
# Run specific test files
python -m pytest tests/test_basic_api.py -v
python -m pytest tests/integration_tests.py -v
# Run tests with coverage
python -m pytest tests/ --cov=onlinesimru --cov-report=html
For more detailed testing information, see tests/README.md.
Bugs
If you have any problems, please create Issues here
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file onlinesimru-2.1.3.tar.gz.
File metadata
- Download URL: onlinesimru-2.1.3.tar.gz
- Upload date:
- Size: 17.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7193be83bc28076a706d1326e495ea533a2f4e068c1ebf3244e6f260e1935317
|
|
| MD5 |
37ec6d13b02eefa135506859557170d5
|
|
| BLAKE2b-256 |
552aacb4a785447054b8e8bdc4bdc4e54137c39c4a5bfabedc6ad2b068a3b2f2
|
File details
Details for the file onlinesimru-2.1.3-py3-none-any.whl.
File metadata
- Download URL: onlinesimru-2.1.3-py3-none-any.whl
- Upload date:
- Size: 15.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85cb97d6c66c5e996f44b0cf83991b1f60cec59aac7b04380290bba0c676e1e8
|
|
| MD5 |
fbf608f0b13789abdfb143d07eb69115
|
|
| BLAKE2b-256 |
1130a69cf0d071ea68d276bc76fb730db132b7685d32740fc9ff061851243c5e
|