Skip to main content

A simple wrapper delivering complete web framework power - like Wonka's Gobstopper, wrapping RSGI complexity into Flask-like simplicity

Project description

Gobstopper Web Framework ๐Ÿฌ

"Like Willy Wonka's Everlasting Gobstopper - a simple wrapper that delivers a complete multi-course meal"

A production-ready, high-performance async web framework built specifically for Granian's RSGI interface. Gobstopper takes the raw power of RSGI and wraps it in a simple, elegant API - giving you a full-featured web framework that's as easy to use as Flask but as fast as raw ASGI/RSGI.

The Magic: Just like Wonka's magical candy that contains an entire meal in a single piece, Gobstopper wraps RSGI's complexity into a simple interface while delivering everything you need: routing, templates, WebSockets, background tasks, sessions, security, and more.

๐ŸŽฏ Why Gobstopper?

Simple Wrapper, Complex Power:

  • ๐Ÿฌ Simple API: Flask-like simplicity wrapping RSGI's raw performance
  • โšก๏ธ RSGI Native: Direct access to Granian's high-performance RSGI interface
  • ๐Ÿฆ€ Rust-Accelerated: Optional Rust components for routing, templates, and static files
  • ๐Ÿ”‹ Batteries Included: Complete framework - background tasks, WebSockets, sessions, and security
  • ๐ŸŽจ Familiar Design: Ergonomic API with modern async/await patterns
  • ๐Ÿ“ฆ Layered Features: Start simple, add complexity only when you need it

๐Ÿ Benchmarks

๐Ÿงช Testing Gobstopper Benchmark Endpoints
==================================================
โœ… Info              1.04ms  application/json
โœ… JSON              0.44ms  application/json
โœ… Plaintext         0.35ms  text/plain
โœ… Single Query      1.51ms  application/json
โœ… 5 Queries         1.64ms  application/json
โœ… 3 Updates         2.77ms  application/json
โœ… Fortunes          2.72ms  text/html; charset=utf-8
โœ… 10 Cached        11.91ms  application/json

๐Ÿš€ Features

๐Ÿฆ€ Rust-Powered Components

  • Rust Router: High-performance path routing with zero-copy parameter extraction
  • Rust Templates: Blazing-fast Jinja2-compatible rendering with streaming support
  • Rust Static Files: Ultra-fast static asset serving with intelligent caching
  • Hybrid Architecture: Seamless fallback to Python components when Rust unavailable

๐ŸŒ Core Framework

  • RSGI Interface: Built specifically for Granian's high-performance RSGI protocol
  • Type-Safe Validation: Automatic request validation with msgspec Struct type hints
  • High-Performance JSON: msgspec-powered JSON parsing and serialization (up to 10x faster)
  • Async/Await: Full async support throughout the framework stack
  • Background Tasks: Intelligent task system with DuckDB persistence, priorities, and retries
  • WebSocket Support: Real-time communication with room management and broadcasting
  • Template Engine: Jinja2 integration with async support and hot-reload
  • Middleware System: Static files, CORS, security, and custom middleware

๐Ÿ”’ Security & Production

  • Security First: CSRF protection, security headers, rate limiting, input validation
  • Production Ready: Comprehensive error handling, logging, and monitoring
  • CLI Tools: Project initialization, task workers, and management commands
  • Cross-Platform: Native wheels for macOS ARM64, Linux x86_64/ARM64
  • Developer Experience: Clean APIs, helpful error messages, hot reload

๐Ÿ“ฆ Installation

# Basic installation (core framework only)
uv add gobstopper

# With all optional features
uv add "gobstopper[all]"

# Or specific features
uv add "gobstopper[templates,tasks,cli,charts]"

# For production with session backends
uv add "gobstopper[redis,postgres]"

# Development installation
uv add "gobstopper[dev]"

Optional Dependencies

Gobstopper uses optional dependencies to keep the core lightweight:

  • templates: Jinja2 template engine (jinja2>=3.1.0)
  • tasks: Background task system with DuckDB persistence (duckdb>=0.9.0)
  • cli: Command-line tools for project generation (click>=8.0.0)
  • charts: Data visualization support (pyecharts>=2.0.0)
  • redis: Redis session storage backend (redis>=5.0)
  • postgres: PostgreSQL session storage backend (asyncpg)
  • dev: Development tools (pytest, black, ruff, mypy, httpx)
  • all: All optional features except dev dependencies

Note: All optional features have graceful fallbacks - the framework will work without them, but specific features will be unavailable.

๐Ÿƒ Quick Start

Create a New Project

# Install Gobstopper with CLI tools
uv add "gobstopper[cli]"

# Create new project
uv run gobstopper init my_app

# Navigate and run
cd my_app
uv sync
uv run gobstopper run --reload

Simple Example

from gobstopper import Gobstopper, Request, jsonify

app = Gobstopper(__name__)

@app.get("/")
async def hello(request: Request):
    return jsonify({"message": "Hello from Gobstopper!"})

@app.get("/users/<user_id>")
async def get_user(request: Request, user_id: str):
    return jsonify({"user_id": user_id, "name": f"User {user_id}"})

# Run with: gobstopper run
# Or: gobstopper run --reload  (with auto-reload)
# Or: gobstopper run -w 4      (with 4 workers)

๐Ÿ“š Examples

๐ŸŒŸ Interactive Demo (example_app.py)

Complete showcase of all framework features with a web UI:

uv sync --extra all
granian --interface rsgi --reload example_app:app

Visit http://localhost:8000 for interactive demos of:

  • HTTP endpoints and routing
  • Background task processing
  • WebSocket communication
  • Security features
  • Middleware functionality

๐Ÿงฉ Blueprints Demo (blueprints_demo)

A blueprint-structured sample app demonstrating nested blueprints, per-blueprint static/templates, WebSockets, background tasks, middleware, and rate limiting.

Run:

uv sync --extra all
granian --interface rsgi --reload blueprints_demo.app:app
# or:
uv run granian -w 1 -h 0.0.0.0 -p 8080 -r blueprints_demo.app:app

Then visit http://localhost:8080/

๐Ÿ“Š Data Handling (data_example.py)

RESTful API demonstrating data operations:

granian --interface rsgi --reload data_example:app

Features:

  • CRUD operations with filtering and pagination
  • Background data processing
  • Real-time analytics
  • Task monitoring

๐Ÿ“ˆ Benchmarks (benchmark_simple.py)

Standard TechEmpower benchmark implementation:

granian --interface rsgi --workers 4 --threads 2 benchmark_simple:app

Benchmark endpoints:

  • JSON serialization
  • Database queries (simulated)
  • Database updates (simulated)
  • Plaintext response
  • HTML template rendering
  • Cached queries

๐Ÿ—๏ธ Architecture

src/gobstopper/
โ”œโ”€โ”€ core/           # Main Gobstopper application class
โ”œโ”€โ”€ http/           # Request/Response handling & routing  
โ”œโ”€โ”€ websocket/      # WebSocket support & room management
โ”œโ”€โ”€ tasks/          # Background task system with DuckDB
โ”œโ”€โ”€ templates/      # Jinja2 template engine
โ”œโ”€โ”€ middleware/     # Static files, CORS, security
โ”œโ”€โ”€ cli/            # Command-line tools
โ””โ”€โ”€ utils/          # Rate limiting and utilities

๐Ÿ”ง Key Components

Application & Type-Safe Validation

from gobstopper import Gobstopper
from msgspec import Struct

app = Gobstopper(__name__, debug=True)
app.init_templates()  # Enable Jinja2 templates

# Define data models with automatic validation
class User(Struct):
    name: str
    email: str
    age: int = 0  # Optional field with default

class UpdateUser(Struct):
    name: str = None  # All fields optional for updates
    email: str = None

# Routes with automatic validation
@app.post("/api/users")
async def create_user(request, user: User):
    # user is automatically validated and typed!
    # No manual request.json() or validation needed
    return {"message": f"Created user: {user.name}"}

@app.put("/api/users/<user_id>")
async def update_user(request, user_id: str, updates: UpdateUser):
    # Path params + validated body automatically injected
    return {"updated": user_id, "changes": updates}

# Manual JSON parsing still available
@app.post("/api/data")
async def manual_data(request):
    data = await request.get_json()  # msgspec powered
    return {"received": data}

# Middleware
from gobstopper.middleware import CORSMiddleware
app.add_middleware(CORSMiddleware(origins=["*"]))

Background Tasks

import os
from gobstopper import should_run_background_workers

# Enable background tasks (required)
os.environ["WOPR_TASKS_ENABLED"] = "1"

@app.task("send_email", "notifications")
async def send_email(to: str, subject: str):
    # Task implementation
    return {"status": "sent"}

# Queue tasks
task_id = await app.add_background_task(
    "send_email", "notifications", TaskPriority.HIGH,
    to="user@example.com", subject="Welcome!"
)

# Start workers (only in main process when using multiple workers)
@app.on_startup
async def startup():
    if should_run_background_workers():
        await app.start_task_workers("notifications", worker_count=2)

WebSocket

@app.websocket("/ws/chat")
async def chat_handler(websocket):
    await websocket.accept()
    
    while True:
        message = await websocket.receive()
        await websocket.send_text(f"Echo: {message.data}")

Templates

@app.get("/")
async def index(request):
    return await app.render_template("index.html",
                                   message="Hello World!")

File Uploads

from gobstopper import FileStorage, secure_filename, send_from_directory

@app.post("/upload")
async def upload_file(request):
    files = await request.get_files()

    if 'document' in files:
        file: FileStorage = files['document']
        filename = secure_filename(file.filename)
        file.save(f"uploads/{filename}")
        return {"uploaded": filename}

    return {"error": "No file"}, 400

@app.get("/files/<path:filename>")
async def serve_file(request, filename: str):
    return send_from_directory("uploads", filename)

Flask/Quart Convenience Features

from gobstopper import abort, make_response, notification

@app.get("/users/<user_id>")
async def get_user(request, user_id: str):
    if not user_id.isdigit():
        abort(400, "Invalid user ID")

    user = find_user(user_id)
    if not user:
        abort(404, "User not found")

    return {"user": user}

@app.post("/users")
async def create_user(request):
    # Flash-style notifications
    notification(request, "User created successfully!", "success")

    # Flexible response building
    response = make_response({"id": 123}, 201, {"X-User-ID": "123"})
    return response

๐Ÿ› ๏ธ CLI Tools

Gobstopper includes a comprehensive CLI for rapid development and project management:

๐Ÿƒ Running Your Application

# Basic usage (Flask-like interface)
gobstopper run

# With auto-reload for development
gobstopper run --reload

# Production with multiple workers
gobstopper run -w 4

# Custom host and port
gobstopper run -h 0.0.0.0 -p 3000

# Specific app module
gobstopper run myapp:app

# Load from configuration file
gobstopper run --config dev              # Loads dev.json or dev.toml
gobstopper run --config production       # Loads production.json or production.toml

# Override config with CLI arguments
gobstopper run --config production -w 8  # Use production config but override workers

# All options
gobstopper run -w 4 -t 2 -h 0.0.0.0 -p 8080 --reload

Configuration Files:

Create dev.json, production.json, or use TOML format:

{
  "app": "myapp:app",
  "host": "0.0.0.0",
  "port": 8080,
  "workers": 4,
  "threads": 2,
  "reload": false
}
# production.toml
app = "myapp:app"
host = "0.0.0.0"
port = 8080
workers = 4
threads = 2
reload = false

Platform-Optimized Performance:

  • ๐ŸŽ ARM (Apple Silicon): Automatically uses --runtime-mode st (single-threaded)
  • ๐Ÿ’ป x86_64 (Intel/AMD): Automatically uses --runtime-mode mt (multi-threaded)

Built-in Granian Optimizations:

  • --log-level error: Minimal logging overhead
  • --backlog 16384: Large connection backlog for high throughput
  • --loop uvloop: High-performance event loop
  • --respawn-failed-workers: Automatic worker recovery

๐Ÿš€ Project Generation

# Interactive project setup
gobstopper init

# Create specific project types  
gobstopper init my-api --usecase data-science --structure modular
gobstopper init my-cms --usecase content-management --structure blueprints
gobstopper init dashboard --usecase real-time-dashboard --structure microservices
gobstopper init simple-app --usecase microservice --structure single

Available Use Cases:

  • data-science: ML APIs with data processing, model endpoints, and analytics
  • real-time-dashboard: Live dashboards with WebSocket streaming and data visualization
  • content-management: Full CMS with admin interface, user management, and content APIs
  • microservice: Lightweight service architecture for distributed systems

Available Structures:

  • modular: Clean separation with modules (recommended for large projects)
  • blueprints: Flask-style blueprints for organized route grouping
  • microservices: Distributed service architecture with service discovery
  • single: Single-file applications for simple projects and prototypes

โšก Component Generation

# Generate data models with type hints
gobstopper generate model User -f name:str -f email:str -f created_at:datetime -f is_active:bool

# Generate API endpoints with automatic routing
gobstopper generate endpoint /api/users -m GET --auth
gobstopper generate endpoint /api/users -m POST --auth

# Generate background tasks with categories  
gobstopper generate task process_data --category data
gobstopper generate task send_notification --category notifications

# Generate WebSocket handlers
gobstopper generate websocket /ws/live --room-based

๐Ÿ”ง Development Commands

# Run background task workers
gobstopper run-tasks --categories data,notifications --workers 3

# Clean up old completed tasks
gobstopper cleanup-tasks --days 7
gobstopper cleanup-tasks --months 1

# Version and system info
gobstopper version

๐Ÿ“ Generated Project Structure

Modular Structure:

my_app/
โ”œโ”€โ”€ app.py              # Main application
โ”œโ”€โ”€ config.py           # Configuration
โ”œโ”€โ”€ requirements.txt    # Dependencies
โ”œโ”€โ”€ .env.example        # Environment template
โ”œโ”€โ”€ modules/            # Feature modules
โ”‚   โ”œโ”€โ”€ auth/           # Authentication
โ”‚   โ”œโ”€โ”€ api/            # API routes
โ”‚   โ”œโ”€โ”€ admin/          # Admin interface
โ”‚   โ””โ”€โ”€ public/         # Public pages
โ”œโ”€โ”€ models/             # Data models  
โ”œโ”€โ”€ tasks/              # Background tasks
โ”œโ”€โ”€ templates/          # Jinja2 templates
โ””โ”€โ”€ static/             # CSS, JS, images

Blueprint Structure:

my_app/
โ”œโ”€โ”€ app.py              # Main application
โ”œโ”€โ”€ blueprints/         # Route blueprints
โ”‚   โ”œโ”€โ”€ auth.py         # Auth routes
โ”‚   โ”œโ”€โ”€ api.py          # API routes
โ”‚   โ””โ”€โ”€ admin.py        # Admin routes
โ””โ”€โ”€ ...

๐ŸŽฏ Use Case Features

Each use case generates tailored code:

Data Science:

  • Model training/inference endpoints
  • Data processing pipelines
  • Analytics and metrics APIs
  • Jupyter notebook integration

Real-time Dashboard:

  • WebSocket streaming endpoints
  • Live data aggregation
  • Chart and graph APIs
  • Real-time metrics collection

Content Management:

  • User authentication/authorization
  • CRUD operations for content
  • Media upload handling
  • Admin dashboard interface

Microservice:

  • Health check endpoints
  • Service discovery integration
  • Metrics and monitoring
  • Minimal dependencies

๐Ÿ›ก๏ธ Security

  • CSRF Protection: Built-in CSRF token generation and validation
  • Security Headers: X-Frame-Options, CSP, HSTS, etc.
  • Rate Limiting: Configurable rate limiting with decorators
  • Input Validation: Request data validation and sanitization
  • Static File Security: Path traversal protection

JSON Limits (Size & Depth)

  • Configure maximum JSON request body size via env GOBSTOPPER_JSON_MAX_BYTES (bytes). If exceeded, returns HTTP 413 (Request too large).
  • Configure maximum JSON nesting depth via env GOBSTOPPER_JSON_MAX_DEPTH. If exceeded, returns HTTP 400 with a clear error.
  • Limits are applied per-request; you can also set request.max_body_bytes / request.max_json_depth manually in middleware if needed.

Secure Cookies (Production)

  • When ENV=production, cookie attributes are enforced by default:
    • Secure=True, HttpOnly=True, SameSite=Lax (if not set)
  • To explicitly allow insecure cookies in production (not recommended), set GOBSTOPPER_ALLOW_INSECURE_COOKIES=true.
  • Gobstopper logs a warning when it has to override insecure cookie attributes in production.

WebSocket Safety

  • Max message size enforced via MAX_WS_MESSAGE_BYTES (default: 1 MiB). Oversized messages are closed with code 1009.
  • Basic send backpressure with chunked writes (WS_SEND_CHUNK_BYTES, default: 64 KiB).

Basic Rate Limiting

Use the built-in token-bucket limiter:

from gobstopper.utils.rate_limiter import TokenBucketLimiter, rate_limit

limiter = TokenBucketLimiter(rate=5, capacity=10)  # 5 req/sec, burst 10

@app.get('/limited')
@rate_limit(limiter, key=lambda req: req.client_ip)
async def limited(request):
    return {'ok': True}

Session Management

Gobstopper includes a production-grade, database-backed session system with a familiar API.

  • Pluggable Backends: Supports Redis, PostgreSQL, and in-memory storage.
  • Secure by Default: Optional HMAC-signed session IDs and secure cookie flags.
  • Ergonomic API: Simple request.session access and response.set_cookie() helpers.

For more details, see the Middleware documentation.

Note: The default file-based session storage is not recommended for production, especially in cloud or containerized environments. Use Redis or PostgreSQL for production deployments.

โšก Performance

  • RSGI Interface: Maximum performance with Granian server
  • Async Throughout: Non-blocking operations everywhere
  • Background Tasks: Offload heavy work to background queues
  • Efficient Routing: Fast path matching with parameter extraction
  • Optional Dependencies: Load only what you need

๐Ÿงช Testing

# Install dev dependencies
uv sync --extra dev

# Run tests (when implemented)
uv run pytest

# Code quality
uv run black .          # Format code
uv run ruff check .     # Lint code  
uv run mypy src/        # Type checking

๐Ÿ“– Documentation

Official Documentation

Build and view the complete Sphinx documentation:

./build_docs.sh
cd sphinx-docs
python -m http.server 8080 -d build/html
# Visit http://localhost:8080

Or use live preview:

cd sphinx-docs
pip install -r requirements.txt
sphinx-autobuild source build/html
# Visit http://127.0.0.1:8000

Additional Resources

  • Example Applications: Fully commented examples demonstrating all features
  • Inline Documentation: Comprehensive docstrings and type hints throughout
  • Markdown Docs: Additional guides in the docs/ directory
  • See the Changelog for release notes

๐Ÿ› ๏ธ Building from Source

Gobstopper includes Rust extensions for maximum performance. Build tools are provided:

# Install build dependencies
uv add --dev maturin build

# 1) Fast dev install of Rust core into your current venv (recommended while iterating)
#    Defaults to features: router,templates,static
uv run python dev_install_rust.py --strip
# or explicitly:
MATURIN_FEATURES="router,templates,static" uv run python dev_install_rust.py --strip

# 2) Build wheels for the current platform (drops wheels in ./dist)
python build_wheels.py --platform local --features "router,templates,static"

# 3) Build Linux manylinux wheels for both x86_64 and aarch64 (requires Docker)
python build_wheels.py --platform linux --arch both --features "router,templates,static"

# 4) Build for all platforms
./build_linux_wheels.sh

To verify the Rust core is active at runtime, look for these logs on startup:

๐Ÿš€ Found Rust extensions, using high-performance router.
๐Ÿฆ€ Rust template engine initialized successfully

You can also run:

python -c "import gobstopper._core as core; print('Symbols:', [s for s in dir(core) if not s.startswith('_')][:20])"

๐Ÿ“ฆ Distribution Packages

Pre-built wheels available for:

  • macOS ARM64: Python 3.10, 3.11, 3.12, 3.13
  • Linux x86_64: Python 3.10, 3.11, 3.12, 3.13
  • Linux ARM64: Python 3.10, 3.11, 3.12, 3.13
  • Source Distribution: Universal compatibility

๐Ÿค Contributing

Gobstopper is built with modern Python and Rust:

  • Python 3.10+ (3.13 recommended) for latest async improvements
  • Rust for high-performance components (optional)
  • Type hints throughout the Python codebase
  • Modular architecture for easy extension
  • Comprehensive error handling and logging
  • Security-first design with defense in depth

๐Ÿ“„ License

MIT License - see LICENSE file for details.

๐Ÿ”— Links


Gobstopper - High-performance async web framework for modern Python web applications. ๐ŸŽฎ

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

gobstopper-0.2.7.tar.gz (251.6 kB view details)

Uploaded Source

Built Distributions

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

gobstopper-0.2.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

gobstopper-0.2.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

gobstopper-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

gobstopper-0.2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

gobstopper-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

gobstopper-0.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

gobstopper-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

gobstopper-0.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file gobstopper-0.2.7.tar.gz.

File metadata

  • Download URL: gobstopper-0.2.7.tar.gz
  • Upload date:
  • Size: 251.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for gobstopper-0.2.7.tar.gz
Algorithm Hash digest
SHA256 15622a592d953d89adbc0cf19e4bf821c2e5c1799adaeb65c70e2020935721f0
MD5 5e2b164e8a1dbda8b9f37b86a566c130
BLAKE2b-256 c6b8b186018a15cb7a9a4a1a84d93eafb40311357b483d9f075c31ec8e24c02b

See more details on using hashes here.

File details

Details for the file gobstopper-0.2.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gobstopper-0.2.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 988ab4ddab3a23083d0ab9a4e86728aa57898390a84b90337de61b8208d5a329
MD5 4935ae6c1e160dfdb1568e3e876f7b43
BLAKE2b-256 2b78c7e4232e0dd6d6584d89dc9b3de97c80182473788b52f9543a4fe905f2f0

See more details on using hashes here.

File details

Details for the file gobstopper-0.2.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gobstopper-0.2.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e133a6c94273dba3efd7c8ff35f0e1cb243effcf16ab0a1dd3db73db6c4e746
MD5 5deec95394374069f88de41f1aa43731
BLAKE2b-256 ceced558dbe96fdefa05e872e5039f24d56ea694496be58b425f740085bc96e9

See more details on using hashes here.

File details

Details for the file gobstopper-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gobstopper-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3431806c5048b12e022ecff8fe653d40238438ee3b2b85a8f5114df429217a52
MD5 3a74a71765bc587268212ec807de776a
BLAKE2b-256 8b9d9473c9abbad929c4024cb9ce6d134b226de0c8d4c44a3ae9418c1295e4c5

See more details on using hashes here.

File details

Details for the file gobstopper-0.2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gobstopper-0.2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee2286fce03fffcdb5632498a95d7c1972670563018b0bc3397eaf18a50295c1
MD5 4aacac3d3c2a2801316931c2b4ed191a
BLAKE2b-256 5324bbf090bafe8ce8dcc6bfb0ccd29e8fe654d50588813f90f283940090507b

See more details on using hashes here.

File details

Details for the file gobstopper-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gobstopper-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d98dcc4976b63313451e803641027023853d64854e3ac9c45ba15a996ad49c24
MD5 42c3a3270b4869cbe1e8a9d15badb674
BLAKE2b-256 dbf6f05e6511c6cdbb0e41d1b08f7bc42680156c2854fac9c0351fdde319d170

See more details on using hashes here.

File details

Details for the file gobstopper-0.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gobstopper-0.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f1642d08290b07b40756295282ee78fde36d8119833e476b10520d601f29c38
MD5 9c30749ae2120587a2f49f4178fff121
BLAKE2b-256 c24796b778b86134cd61a8f460cd641d1ff7be2484554587b3b5f6143ac6035e

See more details on using hashes here.

File details

Details for the file gobstopper-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gobstopper-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d67348c3040b6989d531fb2da423cf6dccd97dbe93d0aec85e24453b278f8760
MD5 deb24261987dac7bb92f9c3c23e7a99c
BLAKE2b-256 d4599595e54cd02151a02ea49160e7a20889f97924239e2ff98e303e4287548b

See more details on using hashes here.

File details

Details for the file gobstopper-0.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gobstopper-0.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ce17ebf079f586ea3a8d0dbf95eda973850fcaef958ca739ea42bd867002939
MD5 5bba47be00086aaecfad57c49631afc1
BLAKE2b-256 f235db90b5a2936f7c83fe5625d6ec554adb256504e0cd5b2c69bb1f0ac0196e

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