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.1.tar.gz (6.2 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.1-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pyvirtualsms-0.1.1.tar.gz
  • Upload date:
  • Size: 6.2 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.1.tar.gz
Algorithm Hash digest
SHA256 90972f95d6ffbf4d491f1c2cdc39000e1028ef964bac53406dbd6904d10a0226
MD5 ca3e8d145aa0a3f1168da046a2382dc2
BLAKE2b-256 9265d05cc01ccd120c32eac32f9af7f8b9799fb7012a5b6a853535a5444098e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyvirtualsms-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 7.6 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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c1650587554e6c86114aa2fc4ae750a7bce0857053bd8bb7d68a8db1aa1a0b63
MD5 9a2e538f0b2ca4423e30ef51d2fde4a9
BLAKE2b-256 3e90ce62a34d92e9ec9f9523e481443347d1e0cc759ea7d1d6e8a6fbbc790619

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