Skip to main content

A lightweight Python library for scraping temporary SMS inboxes from multiple providers.

Project description

pyvirtualsms

A small, focused Python library for scraping temporary SMS inboxes. Built for developers who want a clean API, predictable behavior, and zero nonsense.

This started as a personal tool for automating SMS verification flows during scraping. It grew into something reusable, so now it lives here. The goal is simple: provide a lightweight, provider‑agnostic interface for fetching countries, numbers, and messages from virtual SMS services.

Features

  • Minimal, readable codebase
  • Provider‑agnostic architecture
  • Multi-provider support
  • Randomized headers to mimic basic browser behavior
  • Structured responses for countries, numbers, and messages
  • Only depends on requests and selectolax
  • Improved error handling and response normalization
  • Easy to use '.wait_for_message' method with a timeout and interval

Providers

  1. Provider.SMS24ME
  2. Provider.RECEIVESMSS
  3. Provider.FREEPHONENUM

Installation

pip install pyvirtualsms

Or, if you're working with the repo directly:

pip install -e .

Quick start

from pyvirtualsms import GSMDistributor, Provider

dist = GSMDistributor(Provider.SMS24ME)
# or use 'Provider.RECEIVESMSS'
# or use 'Provider.FREEPHONENUM'

# Get a random number from a random country
phone = dist.get_random_number()
print("Using number:", phone)

# Fetch messages from page 1
messages = dist.get_messages(phone, page=1)
for msg in messages:
    print(msg["sender"], ":", msg["text"])

Basic usage

Get available countries

countries = dist.get_countries()
for country in countries:
    print(country["name"], "-", country["url"])

Get numbers for a specific country

country = countries[0]
numbers = dist.get_numbers(country=country)

for num in numbers:
    print(num["number"], "-", num["url"])

Fetch messages for a number

phone = dist.get_random_number()
messages = dist.get_messages(phone, page=1)

for msg in messages:
    print(f"[{msg['sender']}] {msg['text']}")

Project structure

pyvirtualsms/
│
├── client.py                 # HTTP utilities and headers
├── models.py                 # TypedDicts and enums
├── distributor.py            # High-level public API
│
└── providers/
    ├── provider_base.py      # Abstract provider interface
    ├── sms24me.py            # 'sms24.me' implementation
    ├── receivesms.py         # 'receive-smss.com' implementation
    └── freephonenum.py       # 'freephonenum.com' implementation

Why this exists

Most temporary SMS tools are either over‑engineered, tied to one provider, or abandoned. This project aims to be simple enough to understand, flexible enough to extend, and stable enough for automation.

Contributing

Open an issue or PR if you'd like to add a provider, fix a bug, or improve parsing.

License

MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyvirtualsms-0.4.5.tar.gz (13.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyvirtualsms-0.4.5-py3-none-any.whl (17.7 kB view details)

Uploaded Python 3

File details

Details for the file pyvirtualsms-0.4.5.tar.gz.

File metadata

  • Download URL: pyvirtualsms-0.4.5.tar.gz
  • Upload date:
  • Size: 13.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pyvirtualsms-0.4.5.tar.gz
Algorithm Hash digest
SHA256 f60f1479b33f8299e095759b54c8403fe9d5edfabd007ae4eb7d68ae1ecda02a
MD5 173cd43c276d72dd9f00a94565423c8c
BLAKE2b-256 7ed22e51261a71dba76d477246d08e6f91ab45f73ec979d8c1dce4a7e08f4456

See more details on using hashes here.

File details

Details for the file pyvirtualsms-0.4.5-py3-none-any.whl.

File metadata

  • Download URL: pyvirtualsms-0.4.5-py3-none-any.whl
  • Upload date:
  • Size: 17.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pyvirtualsms-0.4.5-py3-none-any.whl
Algorithm Hash digest
SHA256 1e21a672d9e3c988fdc2f69e6c82de1f7e22376a84b6a6650f9275c8d6c79ee0
MD5 c51bc2a2f567067687d33f2492d830af
BLAKE2b-256 4063e72b92c12b03c23e9a4b2793c117b759bc3926778454f3a9c3c2d32c07a3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page