Skip to main content

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

Project description

pyvirtualsms banner

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

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)

# 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
├── provider_base.py   # Abstract provider interface
├── sms24me.py                  # SMS24.me  implementation
└── distributor.py          # High-level public API

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.1.0.tar.gz (6.1 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.1.0-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for pyvirtualsms-0.1.0.tar.gz
Algorithm Hash digest
SHA256 55a8963407c891eadd0cbcb7354cf211592ea54eb787b217194de0a244503932
MD5 97bb9189d67515f81aec7d0b0b3daa94
BLAKE2b-256 1fe23bc9aa25074f677879ea09accac78d5f590daeef9cbbf66c240ba7c7cd65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyvirtualsms-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 7.5 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.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5619ff583c8a4967cb80af4cd83917f526c44399366bd17a72f98e5d7db7cd2c
MD5 6899c21fbcef3cf5dd841a06c9b8e992
BLAKE2b-256 9ea0dd58dd3c5bbcc3e9f8ad9548e384994bac3665580ee65438ffb3ef770e6d

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