- Saved searches
- Use saved searches to filter your results more quickly
- License
- rgordeev/smsactivate
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.rst
- smsactivate 1.5
- История выпусков Уведомления о выпусках | Лента RSS
- Загрузка файлов
- Source Distribution
- Built Distribution
- Хеши для smsactivate-1.5.tar.gz
- Хеши для smsactivate-1.5-py3-none-any.whl
- Помощь
- О PyPI
- Внесение вклада в PyPI
- Использование PyPI
- Saved searches
- Use saved searches to filter your results more quickly
- License
- tezmen/python-sms-activate-ru
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.md
- About
- Saved searches
- Use saved searches to filter your results more quickly
- kubradts/smsactive
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.md
Saved searches
Use saved searches to filter your results more quickly
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.
License
rgordeev/smsactivate
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.rst
Wrapper for SMS activation service http://sms-activate.ru
Download from github and put smsactivate directory into your root project folder. And then use import expression.
smsactivate can be imported as a Python package.
Here are examples of all current features:
>>> import smsactivate >>> smsactivate.get_balance('my_api_key') ACCESS_BALANCE:490 >>> smsactivate.get_numbers_status('my_api_key') >>> smsactivate.get_number('my_api_key') ACCESS_NUMBER:12608620:79036839671 >>> smsactivate.get_status('my_api_key', '12608620') STATUS_WAIT_CODE >>> smsactivate.set_status('my_api_key',-1,'12608620') ACCESS_CONFIRM_GET
This project is released under an MIT License.
smsactivate 1.5
История выпусков Уведомления о выпусках | Лента RSS
Загрузка файлов
Загрузите файл для вашей платформы. Если вы не уверены, какой выбрать, узнайте больше об установке пакетов.
Source Distribution
Uploaded 4 авг. 2022 г. source
Built Distribution
Uploaded 4 авг. 2022 г. py3
Хеши для smsactivate-1.5.tar.gz
Алгоритм | Хеш-дайджест | |
---|---|---|
SHA256 | a2a3bdabbc7c4ba7bed2847168dec6ab1e407d30d33224d82908866ffb592398 | Копировать |
MD5 | fc4b358f6641477906b6e7d608e395af | Копировать |
BLAKE2b-256 | 7c0b92e51b5b82b7e56368739846266074bd0ab929e468e18bbfaeba76744da9 | Копировать |
Хеши для smsactivate-1.5-py3-none-any.whl
Алгоритм | Хеш-дайджест | |
---|---|---|
SHA256 | cf35b0eea24f442b39485941e064dfb31fa9742ff079fc1d98faee1b887a6bd2 | Копировать |
MD5 | 05435e06550af3cdf233ffc337c4358f | Копировать |
BLAKE2b-256 | 735a7769e1ba38d5a3376dba1d3d997757e626891532b5bbeb92e93d86b2073e | Копировать |
Помощь
О PyPI
Внесение вклада в PyPI
Использование PyPI
Разработано и поддерживается сообществом Python’а для сообщества Python’а.
Пожертвуйте сегодня!
PyPI», «Python Package Index» и логотипы блоков являются зарегистрированными товарными знаками Python Software Foundation.
Saved searches
Use saved searches to filter your results more quickly
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.
Wrapper for automatic SMS receiving by sms-activate.ru
License
tezmen/python-sms-activate-ru
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
Wrapper for automatic reception of SMS-messages by sms-activate.ru
You can install or upgrade package with:
$ pip install smsactivateru --upgrade
Or you can install from source with:
$ git clone https://github.com/tezmen/python-sms-activate-ru $ cd python-sms-activate-ru $ python setup.py install
. or install from source but without pip:
$ pip install git+https://github.com/tezmen/python-sms-activate-ru
from smsactivateru import Sms, SmsService, GetNumber wrapper = Sms('API KEY') activation = GetNumber( service=SmsService().Youla, ).request(wrapper) input('Press enter if your sms was sent') activation.was_sent().request(wrapper) code = activation.wait_code(wrapper=wrapper) print(code)
More examples located in /example/ dir
Библиотека на python для работы с api сервиса автоматического приёма смс – sms-activate.ru
Установка с помощью стандартного пакетного менеджера pip:
$ pip install smsactivateru --upgrade
Либо установка напрямую из репозитория, с ручной сборкой
$ git clone https://github.com/tezmen/python-sms-activate-ru $ cd python-sms-activate-ru $ python setup.py install
. либо установка через pip но из репозитория, минуя сервера pypi
$ pip install git+https://github.com/tezmen/python-sms-activate-ru
from smsactivateru import Sms, SmsService, GetNumber wrapper = Sms('API KEY') activation = GetNumber( service=SmsService().Youla, ).request(wrapper) input('Press enter if you sms was sent') activation.was_sent().request(wrapper) code = activation.wait_code(wrapper=wrapper) print(code)
Это пример использует встроенный обработчик. Вы можете вручную устанавливать статусы и управлять процессом, а так же много чего ещё. Больше примеров находится в папке /example/
About
Wrapper for automatic SMS receiving by sms-activate.ru
Saved searches
Use saved searches to filter your results more quickly
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.
kubradts/smsactive
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
Wrapper for automatic reception of SMS-messages by sms-activate.ru
You can install or upgrade package with:
$ pip install smsactivateru --upgrade
Or you can install from source with:
$ git clone https://github.com/tezmen/python-sms-activate-ru $ cd python-sms-activate-ru $ python setup.py install
. or install from source buth with pip
$ pip install git+https://github.com/tezmen/python-sms-activate-ru
from smsactivateru import Sms, SmsService, GetNumber wrapper = Sms('API KEY') activation = GetNumber( service=SmsService().Youla, ).request(wrapper) input('Press enter if you sms was sent') activation.was_sent().request(wrapper) code = activation.wait_code(wrapper=wrapper) print(code)
More examples located in /example/ dir
Библиотека на python для работы с api сервиса автоматического приёма смс – sms-activate.ru
Установка с помощью стандартного пакетного менеджера pip:
$ pip install smsactivateru --upgrade
Либо установка напрямую из репозитория, с ручной сборкой
$ git clone https://github.com/tezmen/python-sms-activate-ru $ cd python-sms-activate-ru $ python setup.py install
. либо установка через pip но из репозитория, минуя сервера pypi
$ pip install git+https://github.com/tezmen/python-sms-activate-ru
from smsactivateru import Sms, SmsService, GetNumber wrapper = Sms('API KEY') activation = GetNumber( service=SmsService().Youla, ).request(wrapper) input('Press enter if you sms was sent') activation.was_sent().request(wrapper) code = activation.wait_code(wrapper=wrapper) print(code)
Это пример использует встроенный обработчик. Вы можете вручную устанавливать статусы и управлять процессом, а так же много чего ещё. Больше примеров находится в папке /example/