Skip to main content

A high-performance Python API framework powered by Rust

Project description

FastrAPI (Fast + Rust + API)

PyPI Downloads

FastRAPI GIF FastrAPI is a high-performance web framework that supercharges your Python APIs with the power of Rust. Built on Axum and PyO3, it delivers unmatched speed, type safety, and developer-friendly Python syntax. Create robust, async-ready APIs with minimal overhead and maximum throughput. FastrAPI is your drop-in replacement for FastAPI, offering familiar syntax with up to 6x faster performance.

Key Features

  • Lightning Speed: Powered by Rust and Axum, FastrAPI delivers up to 6x faster performance than FastAPI, making your APIs scream.
  • Python-First: Write clean, familiar Python code, no Rust knowledge needed. FastrAPI handles the heavy lifting behind the scenes.
  • Ironclad Type Safety: Inherits Rust's robust type system for rock-solid reliability, catching errors before they hit production.
  • Pydantic Powered: Seamless integration with Pydantic for effortless request and response validation, keeping your data in check.
  • Async Native: Built on Tokio's async runtime, FastrAPI maximizes concurrency for handling thousands of requests with ease.
  • Ultra Lightweight: Minimal runtime overhead with maximum throughput.
  • Drop-in Replacement: Drop-in compatibility with FastAPI's beloved decorator syntax, so you can switch without rewriting your codebase.

Is it as fast as claimed?

Yes. Powered by Rust and Axum, FastrAPI outperforms FastAPI by up to 6x in real-world benchmarks, with no compromises on usability. Check it out here

FastRAPI vs other frameworks comparision

Do I need to know Rust?

Nope. FastrAPI lets you write 100% Python code while leveraging Rust's performance under the hood.

Can it handle complex APIs?

Absolutely. With full Pydantic integration and async support, FastrAPI scales effortlessly for small projects and enterprise-grade APIs alike.

Will it keep up with FastAPI updates?

Yes. FastrAPI mirrors FastAPI's decorator-based syntax, ensuring compatibility and instant access to familiar workflows.

Installation

uv

uv install fastrapi

pip

pip install fastrapi

Switch from FastAPI

- from fastapi import FastAPI
+ from fastrapi import FastrAPI

Get Started

from fastrapi import FastrAPI
app = FastrAPI()

@app.get("/hello")
def hello():
    return {"Hello": "World"}

@app.post("/echo")
def echo(data):
    return {"received": data}

if __name__ == "__main__":
    app.serve("127.0.0.1", 8000)

Now, test it with:

curl http://127.0.0.1:8000/hello

For the POST endpoint:

curl --location 'http://127.0.0.1:8000/echo' \
--header 'Content-Type: application/json' \
--data '{"foo": 123, "bar": [1, 2, 3]}'
Show Pydantic example
from pydantic import BaseModel
from fastrapi import FastrAPI

api = FastrAPI()

class User(BaseModel):
    name: str
    age: int

@api.post("/create_user")
def create_user(data: User):
    return {"msg": f"Hello {data.name}, age {data.age}"}

api.serve("127.0.0.1", 8000)
Show ResponseTypes Example
from fastrapi import FastrAPI
from fastrapi.responses import HTMLResponse, JSONResponse

api = FastrAPI()

@api.get("/html")
def get_html() -> HTMLResponse:
    return HTMLResponse("<h1>Hello</h1>")

api.serve("127.0.0.1", 8000)
Show Middleware Example
from fastrapi import FastrAPI
from fastrapi.responses import JSONResponse

from fastrapi.middleware import (
    CORSMiddleware,
    TrustedHostMiddleware,
    GZipMiddleware,
    SessionMiddleware
)

app = FastrAPI()

# TrustedHost Middleware
app.add_middleware(
    TrustedHostMiddleware,
    allowed_hosts=["127.0.0.1", "localhost", "127.0.0.1:8000"],
    www_redirect=True
)

# CORS Middleware
app.add_middleware(
    CORSMiddleware,
    allow_origins=["*"],
    allow_methods=["GET", "POST"],
    allow_headers=["*"],
    allow_credentials=False
)

# 3. GZip Middleware
app.add_middleware(
    GZipMiddleware,
    minimum_size=500,
    compresslevel=9
)

# 4. Session Middleware
app.add_middleware(
    SessionMiddleware,
    secret_key="super-duper-secret-key-change-this-in-prod-pwease-uwu-BUT-MAKE-IT-LONGER-NOW",
    session_cookie="fastrapi_session",
    max_age=3600,
    https_only=False
)

# ROUTES
@app.get("/")
def index() -> JSONResponse:
    return JSONResponse({"status": "running"})

@app.get("/heavy")
def heavy_data() -> JSONResponse:
    # response large enough to trigger GZip compression
    large_data = "x" * 1000
    return JSONResponse({
        "data": large_data,
        "note": "Check content-encoding header!"
    })

# Session Test: Increment a counter stored in the cookie
@app.get("/counter")
def session_counter(request) -> JSONResponse:
    # For now, this verifies the Middleware sets the cookie correctly.
    return JSONResponse({"message": "Session cookie should be set"})

if __name__ == "__main__":
    app.serve("127.0.0.1", 8000)

# Test with:
# curl -v -H "Host: 127.0.0.1" http://127.0.0.1:8000/
# curl -v -H "Origin: http://example.com" http://127.0.0.1:8000/
Show Lifespan Example
from contextlib import asynccontextmanager
from fastrapi import FastrAPI

shared = {}

@asynccontextmanager
async def lifespan(app: FastrAPI):
    shared["ready"] = True
    app.title = "FastrAPI && lifespan"
    try:
        yield
    finally:
        shared.clear()

app = FastrAPI(lifespan=lifespan)

@app.get("/health")
def health():
    return {"ready": shared.get("ready", False), "title": app.title}

app.serve("127.0.0.1", 8080)

If you provide lifespan=..., on_startup and on_shutdown handlers are not called.

Show Startup / Shutdown Example
from fastrapi import FastrAPI

events = []

def startup():
    events.append("startup")

async def shutdown():
    events.append("shutdown")

app = FastrAPI(
    on_startup=[startup],
    on_shutdown=[shutdown],
)

@app.get("/events")
def get_events():
    return {"events": events}

app.serve("127.0.0.1", 8080)

Performance

Benchmarks using k6 show it outperforms FastAPI + Guvicorn across multiple worker configurations.

Benchmarking Locally

For real benchmark numbers, build the PyO3 extension in release mode first:

maturin develop --release
python examples/basic.py
k6 run benchmarks/stress.js

If you benchmark a debug build, Rust-side overhead will be much higher and the numbers will be misleading.

🖥️ Test Environment

  • Kernel: 6.16.8-arch3-1
  • CPU: AMD Ryzen 7 7735HS (16 cores, 4.83 GHz)
  • Memory: 15 GB
  • Load Test: 20 Virtual Users (VUs), 30s

⚡ Benchmark Results

Framework Avg Latency (ms) Median Latency (ms) Requests/sec P95 Latency (ms) P99 Latency (ms)
FASTRAPI 0.59 0.00 31360 2.39 11.12
FastAPI + Guvicorn (workers: 1) 21.08 19.67 937 38.47 93.42
FastAPI + Guvicorn (workers: 16) 4.84 4.17 3882 10.22 81.20

TLDR; FASTRAPI handles thousands of requests per second with ultra-low latency , making it ~6× faster than FastAPI + Guvicorn.

Comparison: FastAPI vs FastRAPI

Area FastAPI FastRAPI FastRAPI wins?
Dependency resolution Runtime inspect + reflection every request One-time parsing at decorator → pre-built injection plan
Fast-path for trivial endpoints No special case: full kwargs/dependency work always is_fast_path flag → skip deps, validation, kwargs
Route lookup speed Starlette regex router (slows with many routes) papaya concurrent hashmap → O(1) lookup
Middleware usability (Python) @app.middleware often buggy / limited Clean, working decorator + real execution
Background tasks reliability Fire-and-forget, errors usually swallowed Proper JoinHandle + error logging
WebSocket implementation Starlette (solid but heavy) Custom with bounded channels + clean async pump
Startup-time error detection Almost everything deferred to runtime Full signature + dependency analysis at decorator time
Concurrency & resource safety asyncio + threadpool Native Tokio + Rust memory & thread safety
Deployment footprint Heavy (uvicorn + many deps) Tiny Rust binary + optional Python runtime
Scaling to 10,000+ routes Noticeable slowdown Stays fast thanks to hashmap lookup
JSON serialization flexibility Hard to swap (monkey-patch needed) Trivial to plug orjson / sonic-rs / simdjson
response_model=None + raw Response return Fully supported serialization ❌ (for now)
APIRouter + include_router() Yes, mature ecosystem Full support
app.mount() / StaticFiles Yes Not yet implemented ❌ (for now)

Current Limitations

Some advanced features are still in development like:

  • Logging/metrics
  • A nice logging tool
  • Async Middleware support
  • Built-in middleware setup (add_middleware for CORS, GZip, Session, TrustedHost)
  • Lifespan Events (lifespan=, on_startup, on_shutdown)
  • Better error handling (currently shows Rust errors)
  • Rate limiter (even FastAPI doesn't have it)
  • Websockets
  • Form/Multipart support
  • File uploads (UploadFile + multipart parsing)
  • Generated OpenAPI JSON + Swagger docs (/api-docs/openapi.json, /docs)
  • Sub-APIs / Includes
  • Security Utilities (OAuth2, JWT, etc.)
  • Rust integration
  • Dependency injection
  • Route parameter parsing (Path, Query, body models, Depends, Security)
  • GraphQL support
  • APIRouter + include_router(prefix=..., tags=..., dependencies=...)
  • Respect response_model=None (allow raw Response / RedirectResponse returns)
  • app.mount() for static files & sub-apps
  • @app.exception_handler() + app.add_exception_handler()
  • Proper Python-friendly error pages (no Rust tracebacks in production)
  • app.openapi() method (customizable spec)
  • app.state (mutable app-wide state)
  • app.openapi_tags= ordering in Swagger UI
  • callbacks= and webhooks= in OpenAPI
  • app.servers=, root_path, openapi_external_docs
  • app.swagger_ui_parameters= customization
  • separate_input_output_schemas in OpenAPI generation
  • Hot reloading / watchfiles integration
  • Built-in TestClient (starlette.testclient style)
  • Metrics / Prometheus endpoint
  • Advanced dependency scopes (request vs function)
  • Full middleware ordering control
  • Rust → Python FFI helpers for fast endpoints

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  • Fork the repository
  • Create your feature branch (git checkout -b feature/amazing-feature)
  • Commit your changes (git commit -m 'Add some amazing feature')
  • Push to the branch (git push origin feature/amazing-feature)
  • Open a Pull Request

Check out CONTRIBUTING.md for more details.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

Inspired by FastAPI Built with PyO3 and Axum

Star History

Star History Chart

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

fastrapi-0.2.11.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

fastrapi-0.2.11-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fastrapi-0.2.11-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fastrapi-0.2.11-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fastrapi-0.2.11-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

fastrapi-0.2.11-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

fastrapi-0.2.11-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.12+ i686

fastrapi-0.2.11-cp314-cp314t-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fastrapi-0.2.11-cp314-cp314t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fastrapi-0.2.11-cp314-cp314t-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

fastrapi-0.2.11-cp314-cp314t-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fastrapi-0.2.11-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

fastrapi-0.2.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

fastrapi-0.2.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fastrapi-0.2.11-cp314-cp314-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86-64

fastrapi-0.2.11-cp314-cp314-win32.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86

fastrapi-0.2.11-cp314-cp314-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fastrapi-0.2.11-cp314-cp314-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

fastrapi-0.2.11-cp314-cp314-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

fastrapi-0.2.11-cp314-cp314-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fastrapi-0.2.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fastrapi-0.2.11-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

fastrapi-0.2.11-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

fastrapi-0.2.11-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fastrapi-0.2.11-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

fastrapi-0.2.11-cp314-cp314-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastrapi-0.2.11-cp314-cp314-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fastrapi-0.2.11-cp313-cp313t-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

fastrapi-0.2.11-cp313-cp313t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

fastrapi-0.2.11-cp313-cp313t-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

fastrapi-0.2.11-cp313-cp313t-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

fastrapi-0.2.11-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

fastrapi-0.2.11-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

fastrapi-0.2.11-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.11-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fastrapi-0.2.11-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

fastrapi-0.2.11-cp313-cp313-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastrapi-0.2.11-cp313-cp313-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fastrapi-0.2.11-cp313-cp313-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

fastrapi-0.2.11-cp313-cp313-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastrapi-0.2.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastrapi-0.2.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

fastrapi-0.2.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

fastrapi-0.2.11-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fastrapi-0.2.11-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

fastrapi-0.2.11-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastrapi-0.2.11-cp313-cp313-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fastrapi-0.2.11-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

fastrapi-0.2.11-cp312-cp312-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastrapi-0.2.11-cp312-cp312-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fastrapi-0.2.11-cp312-cp312-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

fastrapi-0.2.11-cp312-cp312-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastrapi-0.2.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastrapi-0.2.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

fastrapi-0.2.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

fastrapi-0.2.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastrapi-0.2.11-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

fastrapi-0.2.11-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastrapi-0.2.11-cp312-cp312-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fastrapi-0.2.11-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

fastrapi-0.2.11-cp311-cp311-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastrapi-0.2.11-cp311-cp311-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fastrapi-0.2.11-cp311-cp311-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

fastrapi-0.2.11-cp311-cp311-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastrapi-0.2.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastrapi-0.2.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

fastrapi-0.2.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fastrapi-0.2.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastrapi-0.2.11-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

fastrapi-0.2.11-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastrapi-0.2.11-cp311-cp311-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fastrapi-0.2.11-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

fastrapi-0.2.11-cp310-cp310-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastrapi-0.2.11-cp310-cp310-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fastrapi-0.2.11-cp310-cp310-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

fastrapi-0.2.11-cp310-cp310-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastrapi-0.2.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastrapi-0.2.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

fastrapi-0.2.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fastrapi-0.2.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastrapi-0.2.11-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

fastrapi-0.2.11-cp39-cp39-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fastrapi-0.2.11-cp39-cp39-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fastrapi-0.2.11-cp39-cp39-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

fastrapi-0.2.11-cp39-cp39-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fastrapi-0.2.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fastrapi-0.2.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

fastrapi-0.2.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fastrapi-0.2.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fastrapi-0.2.11-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

fastrapi-0.2.11-cp38-cp38-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fastrapi-0.2.11-cp38-cp38-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

fastrapi-0.2.11-cp38-cp38-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

fastrapi-0.2.11-cp38-cp38-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

fastrapi-0.2.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

fastrapi-0.2.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

fastrapi-0.2.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file fastrapi-0.2.11.tar.gz.

File metadata

  • Download URL: fastrapi-0.2.11.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for fastrapi-0.2.11.tar.gz
Algorithm Hash digest
SHA256 aa37f5dddfc0fee8ba2c60817003eec78a5e8f69252179a0324ef68619eedca5
MD5 69ad0153fa06202160aa06281a27cc6b
BLAKE2b-256 859034c98bfe616a881ed152f5da502a83758a9f5308bf0874f7f18395c86c08

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a72feaf799d1d88c6d708e41c5430c184b1408bf74471ee96b3399d44599dfd6
MD5 79db534de373230da3a845c854c3d9f1
BLAKE2b-256 15105138251139a7e08bcefd5a330f579966181ed348462c7e502bc7b2839316

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 627dd6f48feda211f389de4937f74c04f7c8e1196856f302be9afd1e5cd5ab5a
MD5 b705df03594379b1bc640fd559de8b85
BLAKE2b-256 dbb71a06f32bb299ce2be14f603556b68dd67711ff4edff8827ff0aaa2670fb8

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3472c00824bf87fe1d01f1ca2980f55de2232b2f17d377a673c0f8a9b8777c4e
MD5 71970a7fb1aa6732f70d2539d5aac2a8
BLAKE2b-256 1709c325c3ae5f13fea66b2133a6d6fd44434e427c829d298588fe032b0b34a9

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3c386f2ad9eb8f8ccd4de97dce44951fda73523d995965e8ce4a76527273284
MD5 cac16c74c2268a2f8a71fc8f135f0f8c
BLAKE2b-256 d46a80cbbeaa96c0ca072e9938b94d37b151b4dd1467f16ad8c81a53163d0f0e

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6880a795eaae819401475ebafd260db65c8a5342a4c944110eeb7254e1124766
MD5 6a0df96e1938e78c3e134d4771515aef
BLAKE2b-256 97bdbdb42cdddea805837e5431146bc1af4a764970fc095b0445b989096de8d6

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2cde57456078daad584cbf3c2d2b95ac486eb4c094c191372da2f374c4ff0693
MD5 b7ce2d8c87d21b5a23987284f125e81e
BLAKE2b-256 8aaee2ef19c8748626419540f5fce80655b6287d6751b0c1def517c2962b3855

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab8744a8395c6f19818cba93b7244187c8b13a13c153d391a0f270865d0db80d
MD5 abc5c7081a8e5edfeea4d240691358fe
BLAKE2b-256 b0d3a9d47e75be06883f1c3035b31ed8debd95d00f5532df7c14399e9e37d0f5

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 323683e0ee5664d10c1dbc7417e1d80a9f111794c1c55b7f2ece523c96c17790
MD5 5d79c4e4dcce34849d2793ecd8ee83b4
BLAKE2b-256 cd77d9a90615da0722a0d3c4090f04ca7165d95a1fedaaa6b30ca3ecbb595aa2

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 510282082bbcb350ab2dbf847cfb1b878c824045360421808f8112cbe6306a6f
MD5 c7b0f12e8a9a5113d08d00fea663dd03
BLAKE2b-256 b71b2232b654bea74ff0c177b627bc274911f4113b83849a602b9ff8b27b7cc3

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 da5cca915df6946cb86ccfe1bf02fdb485fcc876a4b9d67e4b1a442d7963e151
MD5 8f207a7c9b1e598fb8c50c10acfdf54d
BLAKE2b-256 9f1f8328942cfd46c6d25a6bd28666d6c290283211fa9177f40e7efba84bdc64

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df0ac63d25ddeef7ca14109087cfaf79d5d6f2a6f0ed569e619ab7db5500a252
MD5 51a1d07ad68e33d05ca8e906f8b22bac
BLAKE2b-256 03ca41f2c2fd080913a9ffdc82c215e467ed71f9d0c76779ff2e86b80cabea80

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 899ed27279acba58c37cf18297922f6e3d8a9df11cc855473747373192037f3d
MD5 e8d1654ecc57d82fe4575e146eacaf0a
BLAKE2b-256 2a3c6f52d61aa9cbb635414f3629c2460704aa392930f7b59f425fcd04911429

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4043a56870798fe3c88562c83c3eaf6785e6b637e857e5beb7f19f0a9f6f5d6
MD5 a6735d71a2d0b478d3e12fcceb0ea055
BLAKE2b-256 b4e8e8fca2d963846653c4cd7003c744761f21cceda412d8140ebd5b1c2d3d6d

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2428031c28e5d23439434d5be70766294bc2743046fea7fbbb3e83c5be66b255
MD5 0d19960f3aed79723016ebf3ce3f2d76
BLAKE2b-256 6685ee74a2524ef948429885407e5205d29da154a061137d32f5407ce84edbea

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 27cf1449713cb062fa0f068514e08bac87e66204d4ae997ea44212c9705fc1f7
MD5 dafa3f907e352faa7cbb8ec15c77f86b
BLAKE2b-256 e8417afb9f8cba0d8f1b0b57c11fe74579ed6ba964fdd670ba5dffea70cff95d

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28ec5534f07a5952f25e7cf9cc2b50e731531f9365282103afdb0dc1daa5232b
MD5 1ebbc7171e274d6ba6abbefcc4b9eda6
BLAKE2b-256 e2c5ffeb91f7efc9221fb609df5523144d1ac51badbf2599b74f40ada00858b6

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c62d5738d331452c7c3f044594b77c0d37497b4da501b88624fe4bbe4e66a685
MD5 9d45ee25817a069a48e1bb9df22c8e41
BLAKE2b-256 0a9bdbb6010a735aeccf0f9aa09352108b8f086401bef0f51aba3b31bc642bd7

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 654af83df3bc718d55a9f6a221df0cc3318e45f01382e67fd6b068943454e00d
MD5 9e56b3d01d8ce3dafb1cd00469614fc7
BLAKE2b-256 f929d48874b1c6f3464d2bd2c3db1df0fae317b0a7596eb166d10c42b8663372

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ad0ab168fb4fefff8ee66898f8fa59fc7591d1bf31ba30c430d094fff470d564
MD5 182d19d89a4cc13a396f19d026e2db88
BLAKE2b-256 dbc067a54ad53889024d399eadf9b74a467f841cae05f7d0ad356ceb07e3eaa6

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14749820a4e34ba01c088d4de9d7b5b0a10346236284ac924b7c2f1e9b9642f0
MD5 50847259c7bafe2348604a0780f707e5
BLAKE2b-256 b8033a5d9680d4ffa52159b2fbd2c749943c9c3ab4c4d9813abfeff59d1d4ab4

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 79ec4a22e2ed10e8226dbe765f52da96b80b41feda3c1931de6f8edf06caa6fa
MD5 550d5247bc31a9c7a16a7320ed51b778
BLAKE2b-256 f8c94f4c39cd1ac2e57580adcb23fb0d0338768761de6e34a829ab3f79b30b20

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314-win32.whl.

File metadata

  • Download URL: fastrapi-0.2.11-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3c9c3844c3bf9eb1ed14d1182cec30f8e8a5080aeee85737463a2dbf3cefc585
MD5 f52195fa53e2ccbd23255b0d0533d393
BLAKE2b-256 94bb2d1fade9239b146e14126d9df26b13bb2f91969a4880f62e058bcb156796

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30149d09f9af7406fcd74cdebf86a119d837e5d8669f99c0bf625da48241cea0
MD5 924ea168cbf803278a81f62656f65f27
BLAKE2b-256 c9a3cdcc97b5d235ab7a2e82462f0bd613abccc330c450a73bd6636c3389b070

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6f1b7372e32c8e2fe61075b3c626f5d93d9d2ee04c97c17bd582eae7807ea1b
MD5 48d9cce8eda3e6cb2a39c50d479879ee
BLAKE2b-256 7fa8e72625c725f14d2c2c84a8ff5307d49e5b43cd5ba57c6341f95ea3a4660f

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5614a11355ec29603615c43e90687053995293cbb19f6ce7e5b9dcbc7af56543
MD5 a07606d85b8f6143d7615cf2485e2100
BLAKE2b-256 8dfeff2dc9d0fa66de59fa581f5680a160d410d6d306b57d9a9fb8a5592132ea

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd4a10e7c0067a2a0b671f0ecc45e914ea63eac40e0f4187d50e1ccde19e8ed7
MD5 f12d40afb776f7876c0273c91b08b2a8
BLAKE2b-256 799bba4d0d0ca0d3265817853f970165906a3f0f3f1a0f9d0e439e4fc2538dcf

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 123337a6679bd98e3c11b9147c760f1c44967082d1a3a1078f4617c26c76e690
MD5 5bbcd2261a8d1c22a8914f391847288c
BLAKE2b-256 562abcd156cc249099a1a889ba51134d3e8048a43f8e3e360e6773c16dbf8ac3

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a64d7ab31ec014750d641adc4bc3d04b57030d971b99d6e414b4a3fbbbc682c
MD5 fb074f57c065e2acdec3d6e3feb45482
BLAKE2b-256 6e2e06a62d7e7906d216c36d74ea9bb930da9ee555130c61addb68969cb15ede

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fffb525b15208afac2b3cff3a0c8970a5c4396d6c8f4f46cf3c1ad654f527798
MD5 bbc1cc5475c68d318397b072d5a7663a
BLAKE2b-256 ae273dd0a10ad255477b75357363e94940382ec09a6c0b5e57f63118a182d4e8

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3b1c6f793c0387a49ef298d0d68b4d5888870f8d08533cd070384a262217aa04
MD5 c0a2ccc1a633ffc037ce5af09e3cb5bc
BLAKE2b-256 81a8d44f73a1e9f8b0ccad35a17ad5e1db11858f4e709dec3b14b181121ae078

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce22a68adceecc910080dc611b026a9c781eb42fc6fc094a1b9a8453d41e0a6e
MD5 b652d87abf19ab6dc40a5af4059b44ae
BLAKE2b-256 0718ee86ac71cc31591f1c6fa8aa0f2dfb640a4511834b5be38de3853d1fe932

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d957ab9d6c4afdc5c402dd1a5ea1a612ac2be0657e04ed8a05e373dfb7b6eb0e
MD5 31520f870a85a621a654d758b112155f
BLAKE2b-256 1dc32f3f7145f28054c8282cbd03bb7c537e6ffe4b66f7dfe1ba6558403c4ff1

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a41b36375ec2a375c324b5e14a38d68b9fccdd030be02d31a2a3810e0097e95b
MD5 f454dfbbaafd0d93029eb97cab7dfdc1
BLAKE2b-256 dc3c0e198895389f6e4323745d9c463b7ff7f00c13411fa30a014ba7fc2826f6

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ebd2add4a09e09440c1c7a2af8bc34a8c6b4ec9b7902da8ffd6216c5aab69a9
MD5 d16c715950e7f2aa544f83c335aca573
BLAKE2b-256 6a0c232196a2fe87b730a6899b4815b383f50f7b958095e4649c3f4bb1c564a3

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9899d63a95b066ef3371cdb74da0bcb6203050114504ae1a17c395aedb6ff8d
MD5 e3bba05b16251c8b2b1a2c1c01cdfa4a
BLAKE2b-256 9d25540702b1eff8eeba068686b7a155e6ce7a2970888f82074853823ee2df14

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc741038c988f83012c85d2ddae252ff0b5dabb64a81a44d2f05be745ea4f312
MD5 d474b61500d65522fba8747a3fac650a
BLAKE2b-256 0fb71b2abdaa2db7bba4dd7f94beed089a72991ff94de348d26fea17e989a275

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fe3989bceb2486cc9617a3d84899ca2d035e2d09fafaaded4166bdafea55180d
MD5 7b9201aca560d19b76b199276c92ce9d
BLAKE2b-256 1b1b0d9efc3fa974a49a419d71a1e5b596ca190236ec700fd0f69a6197960f89

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dae5adbe72e24b2c0ed2cc8bab48cb87b7211242f4cecf0aeb3182beb3c616de
MD5 a3ace9c263bc2d34f33ba61c1e6f5f97
BLAKE2b-256 9a296c4595afde5bbdc6479ce3e689eb3375f9a37cfb206a060b5da66f0cbce4

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7481324169b851776c32e4a595751c4edd06073ef50db95620d19dba16d43a95
MD5 898de5e1371b7c7e40dc1f0862eb902a
BLAKE2b-256 58da9bffaadf0bba2b30db5397bb4622baedca40192128a1adeb97deb263f6b7

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a821c8a997bec16c868869f354581931653d61d1390604bf67e1f50a93fb3b4
MD5 be1b9e1d970799c4e219ca27efced448
BLAKE2b-256 b4935ebf67d649c3a760df1124246b52c2e22d5a24aaf20257f7e75f16b44882

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc25078c61ae7ba71d2894accb43978a0f9ae8c112bcbee6d4ef7c84519819ca
MD5 bd58cc0eee18bb9bdfb6da0b947616ff
BLAKE2b-256 f0dd16c2e52c615f71c98b0e35787f8521dc4e2ba11829dc94448ac53d249abe

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16b818f4bfa6b578b420adb2e3d6029a7163124bccae84cf11008fe170b0b815
MD5 3781c037f8e835d779e150a682fe5670
BLAKE2b-256 9d78f310d1db49b43a22eb30e71ec2dbaa110c311b8c88e6a87ca9b9a092060a

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fa5a11870f2f4b2a6d24da056217c8eea40dacd2ef0fb6553d7d93ffc0a67875
MD5 0c2d54b5b9b730030cc43b59e53c358e
BLAKE2b-256 d0c480dede976e3cb31f39f9c45a05d27d41a9593645deff111a675906359829

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4aa16ab72ff28404dcd9f56c62c14e3d5c312cf257145c2653ed0c2a8ae961b0
MD5 3509c7cbda7d9ccc2bfac14e8fe0bc90
BLAKE2b-256 34a44ecc4a7dfab6ebc6797b63fcbf6a76452178275a161acd02f39a404d46a0

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 af551cfe20d292ffb7eef6fdd5b567432a5ff17238565cf13195b2354f25bad0
MD5 a25d1111f137570a3ef90b98125a9a52
BLAKE2b-256 3ad4d60c149fd314a3de208b88cdade403df28935d2d36ff0b5b869266cb381c

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d57bfa9eafb70b9bdf706a06c3606e9e4eeba264103856e3bbc249009344dfe2
MD5 11d35b26cc62f1a2bc1d82b9d6b2b75d
BLAKE2b-256 ae6c2b2366eb4a2ebfc4f78ef056179ce1166dfb5d0dbc0981b9f16680ea8e01

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12fdaacbdd72fd1c98c3c086f9b5fdc745420af54b8eb75bae8cdb868979e045
MD5 242b531b60891f3b2cbe55ccf2c0d821
BLAKE2b-256 9801c3bdb72f12dc51abf5841063126eaf40d99cedd37c352970855e03902a53

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce3800f27b69d9be29adbc3f87ce80365f65b2154ed037aa4b6e6b542ee2dfea
MD5 d0c0e5d8b43ec1292d57668e5a2c95c9
BLAKE2b-256 5448857f3b9d2b34be2af0979ea5f62cafee886df280eca847dd9690d76bbfa0

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d56b3a506ec6645d9e1577d3f9ca0a952711ebad09428cae478a41528d1d452
MD5 30cb91b4d7f51e8b3ff401e477c9a7ef
BLAKE2b-256 39331c29a3eb20760efc120b83c4132861620b67992130d8ea23f97c63362ec6

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9662f45882404f02121859e4ffc893f0cc8622f4b5c21dbd19ab04916df1ba68
MD5 9a61db39f0ed47110c12d5f82c539a4d
BLAKE2b-256 56a047c56824f9aa329b18910da190adc1b7aa64b0242e917b095c2e634dfa05

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6645f94e676a2a94cd45947c5afa6323203cd9a1f9f4fc042e1413157a766b5
MD5 ffb579aaf6e9c67c75b8b83e46210b53
BLAKE2b-256 0b1850c00615f6483b79947d5749e267c7b4e9755bb9ba1a7334e5d2b1611b0f

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b2f3794b6cd25a113e2c1d54017372105fdd0213f46752be728a7bd6a05e4db
MD5 7cc1ed47f28c348707eaf98f80dfa9b2
BLAKE2b-256 96a214aa6ecc9a56d59ca0d815936f24b5fb6b6ee09f43e5ddcc88b6b8cad905

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 618ec8761d8b5abb1958056326f36a1c70d6a5c804b7a0e492ecb8510f32a434
MD5 cf6048ebfa9e42f38571be07c7f1dcbd
BLAKE2b-256 28d34762adaa4cecedfc40a16329e98b190315fc05a8e8ae475ccac5accb7e63

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfd2cb38e6edfec2035819c23b7fe84bdbae9e6870e8c9908becad4008daad66
MD5 669cf2d905a7c2cddde7a1a102272458
BLAKE2b-256 77b8e791ab77b0aaeed71cc82a7e2e2c5d9aadc51e46194f3bbf55574f4539b1

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d03e020ee87c60aaad8af4093641f017913044f65539c3685c3b05881cd8514
MD5 f96e6adcc2394ab61b8098a3f322573f
BLAKE2b-256 8a401cd1950a25dcccdcbbce6fe2f092ff4bf31f72def40878329e98cc967634

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ba88a73585bed34c2949268851adafdbb4a8b21844372d8b23b778d13011075f
MD5 a4c89bc3d0c154f86cd18697cebfde78
BLAKE2b-256 64aa36b86d69dba1c90600ec2a539416f323c4c42fb359db53c7aa0f1afe39e9

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d9615073b7e37cbb0b08c32753d0f539ad7907d257970eeb7db59978c478157
MD5 6fb4f218edc63fea98097b94366789be
BLAKE2b-256 d10492a1b87f26719e732ec88c27862043a5d3dd2f6cbffe68c14fd9a50a433b

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7cccabf1b12d23c5b8db1c7525479abe13fe90d63c63a1fe90792a728f3feec6
MD5 7dde70f0be5b12f5ccb014c7e4498366
BLAKE2b-256 eef370bb4cc68dd80cd9a28004a2f067d3d40057e4193d96eb49452ed31147c6

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f65bd1572cd7a308fa390bc77f6172487df2643f26c294ac43b8c9a1a27f042
MD5 4b90a0413efa0428fcded48ecaee113c
BLAKE2b-256 332f07c65992ec7cf2efc193b6621dad9cdf7504f8b886bce20b60c5c0a91cdc

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12561f84b5c58850b9a59a9d4de58f02620309603de77d4e3939d9f030f91c49
MD5 40cd69dd0d9a88c219220d0a7ae8568c
BLAKE2b-256 c30e6cc23f1241fca440e8a055fcc70467624483e079a3e1f20029d6b48e0e5b

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21b5d48be18d04b230d81d3a23b3ad50effa9f28573cdf71d8880af654b04446
MD5 03cd4e99f8c948e3d2d2252ae6d6e1b0
BLAKE2b-256 170ac36b2bd6677acf79831601a75b4531f9041b588d1d76c2687a627348ebf5

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 754b05a4d1e741dd0b406d7ae5c37a891997b10e794c04008c999faec7594c60
MD5 c78d1e8ff2ba16d1a630131987f8b372
BLAKE2b-256 11471c5384271a20a7270cad42cf8c5c65eee219f9098adbd3c6ab1925826074

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e7198606d6a4de8b819aa13756d848d06f9bfcc2731e7df3288602b4c3fbc2a
MD5 ddfce48208a6c9f65b0579e131d45979
BLAKE2b-256 09a7d5bb9ada61e7ba6e1fd0eefbdf0317c3309c3e7406445eb3158ff3851070

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b54cf39ea6b766cd7052edb0d112a6b4b7dee531e0fa75bb0d57e5e257cc40ee
MD5 f21d48a1d48714784343382def001944
BLAKE2b-256 b1d97630a8776f4f5849450c9b4a4978aeac9c1ee5c8b2f625c1d06ce2ce48a9

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2803ffe604650e5104dc620eb2a84bc5d1c6b08fd4363755cca19918391632f
MD5 f2af7bc59d9a48213ee73e1506c374bd
BLAKE2b-256 f14fa554b5f1d896b7ea53bb8bfbc7e3355b711c0d70f096415c40cb0dfdd633

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5caeb9c211ece078c9e0705ee83a77c6446d6f761e00b6885fb2e0dfb795bed5
MD5 bf9783b7c2863f86c2c54d7a88890e2e
BLAKE2b-256 b66a04e773e5c5a94d5c598803aa60a1d8c2766d9c517a032826111a1039003e

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7159294d2daad8db14888a35afeea648591ffdd208588192b9879744ef82911
MD5 a9af74b993ab3ec39b23da960752628e
BLAKE2b-256 fff1e24b488f7485eeeecfbaad329b03cbf9a7f3b0f63e3f634165e64a975a29

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 890136ae28dd7846415ba2b7791a6f0e9f8052cf9b01e9249661ae0d3de63caf
MD5 41a71dbec08bcfecee694f6d3ab8743d
BLAKE2b-256 6578ee4efa2556a44093b489ebd7d291cb3073a7695b40693fac169acfd7a9e9

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3eb8543705415844fe269a6ec409f13dee3e7ece32627485e0762f3d1acfca92
MD5 2cd5630d3eb3b70532a4a1d0aaa30d5d
BLAKE2b-256 21cfe47894e37cd1bd4d4ad14419f4b13869ffe2c624b78c26374d1efd1fd7dc

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bd7aa719ea219a1cae0acf54b06b9043a467f33b5124d5319ab6ff7b55f58df
MD5 75e843b5dc052d4db6597ae699c1f2e1
BLAKE2b-256 73069f5ca5bdd7d19ff4fa213fc73af33aeab31cd803e8fe7dd9c25aefaacb50

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d5b47668c4042c4d5d8015a4e819c7314c9ed4c65f0b0981cf82df2ff1454d1
MD5 38d14fb9028c95e4373a42f9cb2cce26
BLAKE2b-256 7e1e7afa9030774cbe30f265db2f3128544c92e910eb828fa05ff988116060a4

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 45e7bac5f81cd5a9a66665f961e838e11e9ec73eb9542bde3f6744e529878402
MD5 ce667e7f4ca74ef41c10044fdd782b0e
BLAKE2b-256 ae080d575bcff2a894689eb46470f2ebdeebbc2157f2672ff4cc772eac03785b

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1498f8bdc1da279238f1cb109ea944b187484cab6246df5bdbefa1a6b8da16c
MD5 f4b1652e6bd948060bafa1d9be0a6745
BLAKE2b-256 b4579a6b42aef518f6ac2e05957b0f980a8b98e7927a027ea6a41fc2d11ad359

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b20db00ba8bffe2bf541b247e61bf5ff23612e9617caa49d59685af28caad360
MD5 84fde3eaf4c7f906d36d2c04c7bc30e7
BLAKE2b-256 a7770c9f6bd964b98fd1fcb6c3b07f5a7b50b7b943b3c6ece260906ead25d920

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da328a86d1bc81f457c8aa10d62b17fbd505d42ebae73cfad8509a62b34a2f44
MD5 f4873c3903a5435ae0f040cd1a1f3c5f
BLAKE2b-256 aacb5e216e7f3d0fb8e9e126bd516c29718b6559b74af305aa92a0c64859557f

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12830481dbf14ca06ef6c0b85c4ffe90f4d0ab67ca4df08fc0ae15e8d61cfd51
MD5 bb103bcf5fa1c3cc36cf6b0eb9e1d9f2
BLAKE2b-256 0acd5c9a78d647a98382e031c9e2f760a939cbb553030c26abaad82bdbf9a4f1

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8c89f7ed3594313fecca32a93e4010265ec6fcc7b04c4715c182eadf89ff1fb9
MD5 e2a679229bdd70f72b13a9f5a0a00025
BLAKE2b-256 6aba907013ef37e8e2b47f0718bdb5f4383be04aeba84802bfaf7a2383a4c025

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32c0d025429719fccdb42275380084969aae44067cc5f91b4aa62873a35490d2
MD5 feb1558971aea179cc34de8275a01fa0
BLAKE2b-256 e1437d394b689635e0d396588935ef18b6b2b2ca68f7e8d0fa34cae5c7bff732

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 94058992ba69de900684cf3405bc59393192acd2e338cf59e35ebf7cc4afe281
MD5 bb59f6022b7f473130d088df4e55ab91
BLAKE2b-256 d0fb8506eddbfe9e0cadb5269db2f5bd3be43223719839a4f8c6dda6077d5090

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f858968f9a41087863b9e5640ecb271be14896f3e847dba2b867bd12a768a56
MD5 c084f9fb2b3080f6b7f95428dcfce4d0
BLAKE2b-256 3416e5d5a59af493c02e06a4746b50b4722bad8a092501d7465bd560b4f96a95

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c69e7268600fdeca8899c8fb2efed107d108be3f5089a039ededc4ad67297346
MD5 91b3fc610d750e5954d4d5f097eb5191
BLAKE2b-256 75c6d655b8a845ea59808d089b2a0ebde98ec9a99596297e0ea7828b419ce3ca

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3d775253689dc2aae6dd5da5feeef1957f1ee0bdb065e032591689732224d1af
MD5 9dfb883386fbe2812d9c70688b47d017
BLAKE2b-256 b714824b0878d619f85372b8df91c0fa481db039b0a796c811c8bdda810ba822

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ac3342a987cb4e3af23229e6b9ab5ec5aab39a8f667262d00893c8b500959b7
MD5 4b6d2a297c93ecc8dcf20b3f530cbbf7
BLAKE2b-256 85a13980b9e0c17bb72dbf6d61c1a24641827da351342382aad0bb0f00103623

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d00228b6acdf3b4389ff90020ca40ada4960dbad621b014cf373c268e30ce3e0
MD5 362c7552709ebec679becd10fbdc58ee
BLAKE2b-256 6444d7d03136ffd6f6f049afb10bcb9e39080f5887769c4450aa4c3f00301a64

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e7d9754b5363e1cea96f2a749b74716ae3ba640e69086a9b4829b163002c9af9
MD5 08f5d44b374fb6e3aeb7095ea064c7ac
BLAKE2b-256 327b1283ec0a83e9d705d3bb5276450c4f5f54fb650c46eb6a49a54fee90117e

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aec98cb910e6c48ecbaf171c6228287ac8cda8056277816921781d29b1643c98
MD5 68a73faac96397e4f86effdac803e748
BLAKE2b-256 269ca99dbab606bfefbf03031f444f05bca1029f13aa449939c84066aeafe334

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f495a381b8ce2a43cfcdfdf28a0af5c9c7d45762dbc5bac0fa55f02cce8e60de
MD5 e806e9f93730a161194e8f868cdc88b2
BLAKE2b-256 d503d6657629895ce53fd38d9918ec3fadcaea348f8ae5d49395494475ee0276

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6eaee4e829f8df40cd15fa93663d958bb276744d0f03ea2ba6e09d47687e688f
MD5 bceffddafb49e396f2e7353daac915c2
BLAKE2b-256 52013769aa8c52775d1190b156e80836cad5483a2e72dc6c694c456780e959a5

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5c8781c4b85215b3244dc2b67468df55436805922dbbe92ff55d7d7c723e5f13
MD5 47f38ccc84fcc19c351c8ca3735cdb7f
BLAKE2b-256 e138dd4ae50aac5ba795fafd296c39ae1510cc71409a6e20ec9dc180953f614c

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b35035e2fa5d9e0fbd14aaa8f44b5530cab03bbe949dc5eafb2b91a8e07fbd9
MD5 8a7c126b587755a1b93620f344bf0b62
BLAKE2b-256 baa2516771299dc0982ccc633488b02fafdfda98553f8e4060787554f5228637

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6ab34165ff281092e616a4a7c5e3966ba2a4ffb8abc91722f80e84cf6ff10c0
MD5 c75395247b34a1c6d89437a0f95ee74b
BLAKE2b-256 eda1b5b5eef4e9d50663dccded608b594a56fa72aefcfab82fc2b28c314b3e2e

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 82fa849daf38330cac37acc6a45e7824da18a9fdb8663c17fadef251f69c3505
MD5 1ec84660e92d0eed8bf5ef4cc9f24662
BLAKE2b-256 b701f760c25d1ebda60eb4af379afedbddea6ec770c9a42e8b388a3ab55c85d6

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 500855fe2ce45f92f74a0719d41a8baf139bc78b2021e50b1133a2b28298be18
MD5 a3a76c669f5862d43eddab2f97af273f
BLAKE2b-256 7551039bd3caff5c71f82cf4c390954f5ccadf22ea594876ae675d980d0499b5

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d2620ac625c0cbea011df725fb28b82d6b7678a43fa6be655e5f3d0e7b0f8381
MD5 6ce63a7d56368620db2d4da8b0d0b333
BLAKE2b-256 cc7a0efe73caad89abd9dc64cf4f3b9532f37aa6c1966c549ec0d490ee41c0d3

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f3e46787707870bc816e57e5a3c6d3a3f8c00c73137cf8b368523c7785faefa3
MD5 1e3f589e210962e301e8c6ef379b9e83
BLAKE2b-256 0b02148d8ffacb687947d8accdbd79ea8af1a60b17c2c2c3b4808d9d4cc2f88a

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37cc2e9e07e2626629be5bf0a9b5717750ff9e94cceb1b46d23422fc97d61d6d
MD5 2e65b4cb4b6db5e01c867363536f590d
BLAKE2b-256 250ce2edd78d87562819d3f31b72ae657ee5b5e43fd28ec0b4b21c38984adc31

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 becb7e70f92ec32b151fb4c46dbeb85714ef40bc00ff00498a9c645eac416ac7
MD5 462d63077b286b1dd6019abee2b71dbc
BLAKE2b-256 51e58dbd88f1f7a63db7f3a91cee5f40d252be7c943cc0ac803b1a775dfeb1c5

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9b137e322010b128a7d33e4fc695d2c134772cd283688d0005844065cfff55f
MD5 563e15b3b49c75d07357fbff0ca4f191
BLAKE2b-256 1e5bd29c90f9a1782e9f8f8d8b7adac5ded6a7da7e7ce29a65767447babf3154

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9d4750e181c97ae338b1511879d70a27be8a529bce5536c2300b4ccd71d1d7a1
MD5 690b8f52d2ab34ce507d31e630b62cb9
BLAKE2b-256 6a2e6febb0a4ee33562a26d00f738ea64811f0a361b6a6bf448654b0b3cff0b9

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b7d5cc0a405094ecc1e7affc9645e02d55a9011e868814b87a8ffe8f4eeb079
MD5 5cd2fdc18ebba2de2ed020b698ac86f9
BLAKE2b-256 5f5b53f3b4107846d5b6554d488d564bf9ba7f9fd74f52bfe26ddc246ea1b3af

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5756d7f9edd290baf0b3e686e0d065f5f90c4134e5b42f8914b16e67e9c1b663
MD5 2f50420aab4e1d0ee8ef4e548801db8f
BLAKE2b-256 0932ec7a0e3060b9271b965438e9ca792a3fa040f88a297d17cb9dc5edf2f549

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c3511a9309c1aed143de05c7a679c39d5a8cc6a77ef40cc42ffdbaf2da28723d
MD5 ec85cb58e3ccd68c72c846822f05677a
BLAKE2b-256 fb5caeb488a5ba12f345dddc991d487f994b109b2408a0aea7e558a103268057

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f33e787df2b727d68c34155eb6376adf447f2ad117e9c02f37fe35490c4735e9
MD5 3fa446ad0818ac38387be49f74f6071e
BLAKE2b-256 0e9d236589ddf1e0306dac6ff7910e8f0dc6b34e48e9c01d06a1307f4b8f7caa

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb6b5dce1ee1c1328b502344680b2ed7fc7cd95c2d2da94b458ad7f130669583
MD5 1bb9a0df16e5b6a6163a9bfef4feea83
BLAKE2b-256 2cfad0c6296346ecada38dd56ccf7a7f28dc7113e3d4f5f31fdb61fdf76f43ff

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f9d660678f86de8e1bfdd54c25d94efc29b1886f23489c5fe4ede92abee0bba7
MD5 077101a770c0211b352ab8101eb50bea
BLAKE2b-256 b2286a541c3574521b5b369dedb22978f7a59ee10a1a9b5c5ff4aa24f2948559

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92c02c5333d27dfdb645e63175b5d3cd6cfee2901f2ff38fd30241c14f181879
MD5 a1f086e68dba0416fce66902cfd20e14
BLAKE2b-256 0c920bb5fe0a7895562aa9782267837959e2e42d65b51d1ceac5027f56c435b2

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2be24937648a3eb7f077c89a1aad71c7fc6556d498a0b89b1fe4057bd65637af
MD5 4818e57349f49e3d04d52bd188ef0337
BLAKE2b-256 dfe151c6e5c0be4150a2bea2c3ab0983932fe90cb99aebb7dc317f4333ec94b5

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 124a2ebb4ddd46262199f374e559362c7afa9090bac5dad027b243c4b82373d3
MD5 08c0057254a6b4394f02fbdd88e4d2b4
BLAKE2b-256 7c1212a70337a751412e13fbfea50776bee9e35ac94547c522714911272d0595

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e0df911d5e1228ed5cbb7fe663bc979e3279e56cae23b50a3888ec26427690d
MD5 3b33f5907690341d74c337e4e6c4d678
BLAKE2b-256 224ac82af9e3b608da2a08fad1fb7f182065115926dba60ed672aea2632a999d

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71730c75a9402668061bab6d85b4b373d5670cdc703b37f370517b9a1faebf36
MD5 88679a889c37fa943636b6c47080ecf5
BLAKE2b-256 80a7946c5980d6031d8284e702222322eb8c3b761a81502f0337c21fd2157fa1

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