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 33x faster performance.

Key Features

  • Lightning Speed: Powered by Rust and Axum, FastrAPI delivers up to 33x 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 33x 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", 8080)

Now, test it with:

curl http://127.0.0.1:8080/hello

For the POST endpoint:

curl --location 'http://127.0.0.1:8080/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", 8080)
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", 8080)
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
# WARNING: ALWAYS return JSONResponse if it's JSON, to ensure proper serialization
@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/

Performance

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

🖥️ 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 ~33× faster than FastAPI + Guvicorn with 1 worker.

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 Not yet implemented ❌ (for now)
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
  • Lifespan Events (@app.on_startup / @app.on_shutdown)
  • Better error handling (currently shows Rust errors)
  • Rate limiter (even FastAPI doesn't have it)
  • Websockets
  • Form/Multipart support
  • Sub-APIs / Includes
  • Security Utilities (OAuth2, JWT, etc.)
  • Hot Reloading
  • Rust integration
  • Dependency injection
  • Static file serving (UploadFile + axum::extract::Multipart)
  • Testing support
  • 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)
  • lifespan= context manager (modern style)
  • 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.9.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.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fastrapi-0.2.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fastrapi-0.2.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fastrapi-0.2.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fastrapi-0.2.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fastrapi-0.2.9-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fastrapi-0.2.9-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fastrapi-0.2.9-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fastrapi-0.2.9-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

fastrapi-0.2.9-cp314-cp314t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fastrapi-0.2.9-cp314-cp314t-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fastrapi-0.2.9-cp314-cp314t-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

fastrapi-0.2.9-cp314-cp314t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fastrapi-0.2.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

fastrapi-0.2.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

fastrapi-0.2.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fastrapi-0.2.9-cp314-cp314-win_amd64.whl (996.6 kB view details)

Uploaded CPython 3.14Windows x86-64

fastrapi-0.2.9-cp314-cp314-win32.whl (961.2 kB view details)

Uploaded CPython 3.14Windows x86

fastrapi-0.2.9-cp314-cp314-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fastrapi-0.2.9-cp314-cp314-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

fastrapi-0.2.9-cp314-cp314-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

fastrapi-0.2.9-cp314-cp314-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fastrapi-0.2.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fastrapi-0.2.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

fastrapi-0.2.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

fastrapi-0.2.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fastrapi-0.2.9-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

fastrapi-0.2.9-cp314-cp314-macosx_11_0_arm64.whl (992.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastrapi-0.2.9-cp314-cp314-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fastrapi-0.2.9-cp313-cp313t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

fastrapi-0.2.9-cp313-cp313t-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

fastrapi-0.2.9-cp313-cp313t-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

fastrapi-0.2.9-cp313-cp313t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

fastrapi-0.2.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

fastrapi-0.2.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

fastrapi-0.2.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fastrapi-0.2.9-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

fastrapi-0.2.9-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastrapi-0.2.9-cp313-cp313-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fastrapi-0.2.9-cp313-cp313-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

fastrapi-0.2.9-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastrapi-0.2.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastrapi-0.2.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

fastrapi-0.2.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

fastrapi-0.2.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fastrapi-0.2.9-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

fastrapi-0.2.9-cp313-cp313-macosx_11_0_arm64.whl (991.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastrapi-0.2.9-cp313-cp313-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fastrapi-0.2.9-cp312-cp312-win_amd64.whl (998.8 kB view details)

Uploaded CPython 3.12Windows x86-64

fastrapi-0.2.9-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastrapi-0.2.9-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fastrapi-0.2.9-cp312-cp312-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

fastrapi-0.2.9-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastrapi-0.2.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastrapi-0.2.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

fastrapi-0.2.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

fastrapi-0.2.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastrapi-0.2.9-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

fastrapi-0.2.9-cp312-cp312-macosx_11_0_arm64.whl (990.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastrapi-0.2.9-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fastrapi-0.2.9-cp311-cp311-win_amd64.whl (995.0 kB view details)

Uploaded CPython 3.11Windows x86-64

fastrapi-0.2.9-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastrapi-0.2.9-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fastrapi-0.2.9-cp311-cp311-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

fastrapi-0.2.9-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastrapi-0.2.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastrapi-0.2.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

fastrapi-0.2.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fastrapi-0.2.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastrapi-0.2.9-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

fastrapi-0.2.9-cp311-cp311-macosx_11_0_arm64.whl (993.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastrapi-0.2.9-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fastrapi-0.2.9-cp310-cp310-win_amd64.whl (994.7 kB view details)

Uploaded CPython 3.10Windows x86-64

fastrapi-0.2.9-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastrapi-0.2.9-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fastrapi-0.2.9-cp310-cp310-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

fastrapi-0.2.9-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastrapi-0.2.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastrapi-0.2.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

fastrapi-0.2.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fastrapi-0.2.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastrapi-0.2.9-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

fastrapi-0.2.9-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fastrapi-0.2.9-cp39-cp39-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fastrapi-0.2.9-cp39-cp39-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

fastrapi-0.2.9-cp39-cp39-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fastrapi-0.2.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fastrapi-0.2.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

fastrapi-0.2.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fastrapi-0.2.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fastrapi-0.2.9-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

fastrapi-0.2.9-cp38-cp38-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fastrapi-0.2.9-cp38-cp38-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

fastrapi-0.2.9-cp38-cp38-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

fastrapi-0.2.9-cp38-cp38-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

fastrapi-0.2.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fastrapi-0.2.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

fastrapi-0.2.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

fastrapi-0.2.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

fastrapi-0.2.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

fastrapi-0.2.9-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

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

File metadata

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

File hashes

Hashes for fastrapi-0.2.9.tar.gz
Algorithm Hash digest
SHA256 c17e932ff587ceb6bffd1bfeba018e11eb05a3db8ee13a8a77ca492fccd49f3b
MD5 100708e151c3687cc65ed7b2d662f3dd
BLAKE2b-256 12e06707b996d86c570485c4534c9aac14b0ed302892533f8dad36b636b5dda7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05f38b1b77555d1522e11efbf109390369ae1bf964b452c7680eb9e36f434b9c
MD5 8f4e16fa0b965d304ec6e0b67a7ae93e
BLAKE2b-256 10ee1dbc5959d8c101d9b67c9b2977a66635b40c17310ca11009632282187206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4c727329f2f63c62191d6be5b5989a95c9f7cb0db41cf094a8d7afd88b2b6ff
MD5 7d54947e2aa8e8d570c08c80cb86bd0d
BLAKE2b-256 76ae80109b7b2e87fe75aae7c57571989475dddc87cc7fea262c7f4e4f71022f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f75859fc203965c71177f63b79c8bee7e85f127cc0f3c70257059dc9941b4e7e
MD5 93cf2b34e19fbfdfc13c1e71c3ac57e4
BLAKE2b-256 23d2eda12477f1c95b64cdbe486a0606592f0265cae6708f73ba2d1239beb7c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ab3f1ddac084eb845f614307298fbbd55acb3fc4c2b9f1e4a6c0378af4471db
MD5 04a904ba55fd2fb053d7414caf3830b4
BLAKE2b-256 29ee0e977ccc3601da6401794154820ff14593a934f4f800640c43d166442f43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4266fc639a729c2ed5ed6e3e0e11ec42a3d38480466aac70bccdf4a175fad3bb
MD5 cc5fd379615a8a0700d65f27f5cec9b4
BLAKE2b-256 ec144792833b598b9326b872df6142017457a68bde425b1f729f078b9af274d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e329b16fe9b0ae6b766442f52a16f98ee75ea208fd436fb4da393ed6fac5f23
MD5 7dd75977932753bb329ca6a0940d73bc
BLAKE2b-256 80fbe57d1cde14067ef34d917eeb2ca6614a1e7ecce5c57c6185df8b2e4f4bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e90ee0cad3641c7669854313501abc1027a261a14ce0cb251ad1fbd0e86e16f
MD5 00d061d27fc718876e7f563874402bfd
BLAKE2b-256 fdea3b21b2b8fc18656b7d47c94412af28b7439d1c55ec7641654c180a9acdf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb38ef772490755e90c9d589385e06426a42edfb2cda7c0179c71324b8deb66a
MD5 9fe5fc10aed7a5dd729f0f9e52f2afd1
BLAKE2b-256 ffe7f8d729e9d4119e0ca854b83b9daaeabea37a52efdff0e4f36326362f060b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c544e360f5908c45854f4b22799f0a2044212f6c7e99afc383dfca561aca309e
MD5 677b9f4f60f47d272bf45729461570fa
BLAKE2b-256 3827d3d11686edf29e5bdf7031d00925df0fc262098788bc4c99be7c8ac1f557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1052648428aa87e52730c59c9e3f44125cc94de1dca16f7cd569411a4ee92814
MD5 27c1cf8e48b45a00f3adebba451c3d2d
BLAKE2b-256 e8c6bfc5531f83d260b35cb39f5fc8dddcb9dec3d3d5c3698bef8ef298fbce95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5190f7ed3664f4446d66072faebfe74023a626f7f89e7fa9b1a1ce7e509e5069
MD5 fd2327b26d35db5bff3f06682d11f2b5
BLAKE2b-256 8b8d1bf2d5136ddbbc7afba72dd1102a617bd11d3354981d2fda2ecd0e8883b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6f746eec5ba9505b7f1eca93d9cfa1f2515f10409f9e2172d68929d8f2d9c24
MD5 164b005cf36ceed75c190cdc4a74d975
BLAKE2b-256 2fb6bd5e4e612401653421fb060892bbac7f19c6d44ac7d16230b0985f2f319d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 82e2b5bb82fec8b30f16c0d7262116bfaa200993d4ba32ece8737cf28c50b1a1
MD5 88d6cb48e76cbe174f7e86f944806691
BLAKE2b-256 b6ef9b80b530229a2c3e0ed0c1b4a2829b8cfead0a63ffa737b79ec7ed415fa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7c6658a25d19c675f26890119c47e1f1b69ccd915f0b0542c9cfed51d590cbe
MD5 eb7af3f3451128698abbc5953c699aa2
BLAKE2b-256 41cd946258fed4e464bf066634df604fc7282283eb9cfd794e6891ae548b9bc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 042f26c512a6866aeb5712330c4bd43271e7782800979e5c63c106ff9f4332c0
MD5 72eb9fc62978ad4a4893b64b376e72c7
BLAKE2b-256 a4a239c78d91369b25d626db6166ff189e06b41f8c6b88a0035dbf977e5ba782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a503cb7abcb1f6e1c7c87f64c50d91065e632691346497da60991df840ce224b
MD5 dbd1c8491b25fcb3be6bbbc212f7d3f6
BLAKE2b-256 776f25c387e6018819f2370ef3952eb5fbe4a3ee1bfeec55d3399d03781e85b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6850ca95bad8f8059baf65a95cced197d08d3347308fc89d47d758c5dfa3827e
MD5 42abc89c9d1cd76c69504f3876a20970
BLAKE2b-256 13b96749f9c08c4541a854f871bccd500b946757960845c838343e96849ba75a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fff1c444a6eaeb104bcd5f8f4c3c57155b0956132057b0f46c484bef1b724c62
MD5 c6a15a7f71b35450aa123175723e7968
BLAKE2b-256 2c27fa12d080545f2baaff6b7950c2b8412a18067cf3977417b1c22366fab63c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 aa8e5fc4b3f29bbb898dd22a5dc75dcba90493bfcf238c77687b34e711ab67f6
MD5 4e186e594985184c90718a8ed03ba90d
BLAKE2b-256 b0183f5f2d171c53a88cec78327b5787e4a4ed9c0dd7660eeebb46892451b81d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastrapi-0.2.9-cp314-cp314-win32.whl
  • Upload date:
  • Size: 961.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9a8b76d2608bf166335db1d32f3cdbaf3f926f48fa6c5cd4e454f04ebc2e87fc
MD5 a16e4f76270eb266ff211cb21615a130
BLAKE2b-256 24c645f66a0427ab94349f393e3089c1d5ff205cd2cc366489b7915fb1463251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c04ddc7a895dfa2f369f423949d9383a072500132fe7ac630ea5ba89554b818f
MD5 b552d598e5e80ec2b1bc1f76fae64f28
BLAKE2b-256 fa7823ca91197e6ea24c7802369a7cddb251cbd0cb7750d642edf1867f2dc409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e7cf801ac0801cea29dc8bc434ca0b2cb2a6e17c126a8fb6d0b293134a8538ec
MD5 f076433a5f3f018da83971995a7fa8e4
BLAKE2b-256 c122e51406d70457edcb5da8fb04f788e852573666ce66f5478249553c590c52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 478fa452cd9b46984b5e291081b65e63752a71ed4bf5e0a4e7672d2df49c6c4d
MD5 57acfbcdcb46fc8a7711771a652b944b
BLAKE2b-256 337e6ceebad7f0ec0ac37211cc18ffcb43f1307d2339079bf09acba2c97e332b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02f3e259213a4503578dfdcbf219b33d30e15dafb1556e22c0e0efe01846354f
MD5 5361f6aa6c1bdff82ce93aa2c04aaf9d
BLAKE2b-256 8a811510135aa664e9f216a4c9b2f0b5f5d0958430381985b53b178182452ea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d502c51aa13d5be3c73aaecbb2837f4b4cd9e1dd753fb7a5a6fb917e31acb8f
MD5 a0c692445237d1d1a5d12a340ec602e4
BLAKE2b-256 95645985c73b020bb54fe41a1b4d775ce8fc1f2acef5bd47782869c830f3c9df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e901696358976abd83a7bdc4aeed96e926b7ed68d654bb8544b685044745263a
MD5 67090129e61cf96c4d30b7c1f4d298e0
BLAKE2b-256 d2dc25686ef940bcc67ae783325b4f0b1a30ccd6bb794a9b427107c943c58217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ebf505db98cf110b7d1797db908318041e327767c412de2d896b32a9255f5fa
MD5 ea33e2287900aed014e09d017dbf7e06
BLAKE2b-256 117dc3c27161ab33c31e3430d1995876fda2fe0e280ec663512bbf0f594f859c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba3132df6345edd51a314e7ef502b600e4b5e98d996e4f7a2061a13d2accd246
MD5 454a357dc14e60e16e0dda1df351b48d
BLAKE2b-256 5a6daa610a1015dffec80eb075bfd867e9cad139b3a0898d14a8423ee2498f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 665e30df62ba5d8d13ba4faa0d2fe1c7c42c53554f1b6a90ea5c5914578024c3
MD5 7e3665d117f8afaa164e77cba905c5a4
BLAKE2b-256 09f6e9806f68d8ff61684b43ce8e75e115aeab7643f6c4ff08be85a0047bca08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2d056683165bd593a6d7bf3c4e554fdcb19f9570cc823ca9dfba1677331f7323
MD5 bb46ce98111bad66187504289015163e
BLAKE2b-256 eb646536cfb0c4c8fffc355715706a4d4cf174c84ed6b8833df1900fcc5eaf38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1f2bdfa72800dcf8f1ca4580854962f7e02d2a29f386ea8758e8e91f584b709
MD5 b41a17c139e6705b82b30273ac22ed9b
BLAKE2b-256 408a981e6fd453225fa6900265372c6043b772e58230859e50bda1f2e75bcb4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71f3b942a047a91031982be0bb7df74e9612d758484bfacfe6b85924b05d6ef9
MD5 5f209fc29d4f676bd784b184eb8b61d0
BLAKE2b-256 f8241c55d094a1f9f83a0b22d817f927fd1597cb4b13cc77e8488977b77a1518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6285184427437b8fa07d7bab6d7d3ac08f5acefd736c4c8262f8fbef9e220538
MD5 cc1190a1f33ee8a0f9b2a4a73099c965
BLAKE2b-256 896ba25e61d7a09c510d1e6d523ad42ddc0c0eb06b66255e3f3c7d1ac94df44f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 19e0cb1060d65e19e3dca4ce01658807c06c3a535ea2a5c06ee9c4c12fdef445
MD5 fe2ea006d8aec91e3dc85fbe5bec6b89
BLAKE2b-256 77369b478bad2d7c3056a543c6ab0e6af18ea25a641e6fc2fd1d0daf7c1e823d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15ce76011f927b3d8930355568238681d82b43b8e41c2efc562e94cd1ba72bc4
MD5 ea9b462cae9ab1662d22173358b0096a
BLAKE2b-256 f6f8648d6dc7061b4e86be12b30536ad335abf2fc83b85e85d26cb61e54840bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5167203ca946bd5b65bd7b2117ae53001049e5f6f9550a4cea0f34e7f514ba03
MD5 fe1d01e33d4b656cce58f29620ca47d5
BLAKE2b-256 e0c7d4fedc8904a3cadbfce595910fc98f27f4e1770362db1d70902bec06705b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed7e86b12da1853ea108af064c5edf288d5f0d487085f7ee4f43d95aba821b00
MD5 09dede80da024180972037564d415a64
BLAKE2b-256 eda4a55d5f4f7dd02ae3e7e38f18ffe141db60b9f5080fb84c4bf27f2923b6a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d7d7b11df31e3526e1b5ba4a48919f4a80bb3bbb94e9cfa8d18b679b9b0622b
MD5 f2dddf35e9f601285240766a6dc864bb
BLAKE2b-256 13d96a09813547b5db76efabe4f6df49e9d140e953d2a72ee4f1027506f18886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 214b48a1888370fe0ed2831a32b9a32a6de18fa691297ab73b451dc1ec51578e
MD5 67cc91b3b7604d4ccd1ce7d35e7e892f
BLAKE2b-256 c57d0f43423c17d5f67cafa743806da2dce92f1f52634e7de35a9c823825e6a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1421a0cd313ffd245804d5eae4aed98e780feeeca29cd1caeb95a4c943ba9a26
MD5 6ecf5d917c5c8812d49df1fad5ef3c83
BLAKE2b-256 ba0a2f59354b092c9b306bca972beaa6946923ecf4e4fbbc46fa3919cde8c7a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8315c6e7e43accafcb84d91275b57c6f13e6e478e1daec1262b489017152cf85
MD5 e319052a3c7e6b79f75556850b97e746
BLAKE2b-256 ac6b354818d9486c34dd6ee35f6abd74272bf6d66175eb306e892d30e3f72a9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1010a4b594ef8f2c3e740c89b349b72323460ac5a8e3bde35e4fd1fc27de9084
MD5 258ca0369e11c56088460b30e8ecf352
BLAKE2b-256 1ad7e3f5f8880f66caf76002678db64dca3131fe281eaa72398918b171758327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e20066efd7b1c71b678fe7673b689e9038a53de8be8f427d867786129303d7e
MD5 e9fd16478e080b94420ef465b0f1553a
BLAKE2b-256 8323751ce8d49f37d0e942a408860e7ff628f9389f734450856ec186edc84fc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b7640677ba81a3b19e351481cd669124e1d4dfc146aeffd1ef151ac79d9fb88
MD5 512eaa1ef313e426f0a17603f5ae3490
BLAKE2b-256 2bbd8993fed98b2b7670f9a17692df27240a2d2435f1f41a380677f8dc0d830b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0b5cf7605001ca9fbf0e77e4427ef8798f72f0f9e7863de4b82445cbcddec00
MD5 eb72c5faa88622beb7a3911c8149c48c
BLAKE2b-256 7fb7faf621c50cd1c254cd9d3b32a03ce0444b8caa170bb31b9cef360fbe8d46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f89b4ccc46eb731c6df0a7c1b2c7fc2804b9e1fe04a4ef5e2cca046c79d8cfdd
MD5 61ac07f795be996f5580d23d063bbeae
BLAKE2b-256 766d66676f456b075da8adce42a94e033fbd89363b40f2305c57a0ff5663ace1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d75bb0d7748c08b6ba774c84b988b27001be668d6a6ae302f0931460d7d9cc8
MD5 ed9804394fac203d7ccb93c25eb7df99
BLAKE2b-256 e244b9fb67481be54b57910c9426aa4bfabc90ea7d19a1c2aaa46063009004fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4073a276d32f1fe0d6e43caa78b580e72775d60501f08496c7a637ee93a7d368
MD5 cd8466bfa2d0966c916afe3cff7275f9
BLAKE2b-256 ea96968e0182e5124eb1b8d081dff2afb6e81e7187660cbdc5650243c842a5da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 53f84c3384245784bb652da965d65f34eef824becc51e1aa44a2982e9e887258
MD5 12c774f4c0d18b8edeb106eff04b4f89
BLAKE2b-256 bee00f227dd1f64d6d14d162a3961edfa5c601905ada647f4d50455cc69c9dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 673ae861eaea80bf6d433a91c88b2dbf798cb0ee68da21c1e98d40601c6fad98
MD5 614d438b26f8d714833b412251079d9a
BLAKE2b-256 eaca4c82c8d911933a671c52b0f9c720615a52b374d117c656eeaace7894dfa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 13b66a4a4fb489a932140a0e4c70b215837956d656a3ac04ea8090c52b64aca5
MD5 16814c54377271b8818e1aa39e0c2351
BLAKE2b-256 fce195962955b97106752f38459905083c4da3569c933fa3627d43c90868155f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ffcbe4f324c992ab86f8c2aca0de910991bacc0d60caf4089c529a940d487dc
MD5 99c6370966dea5f0fe365e06ba0323bd
BLAKE2b-256 6d66ef80aa275048fbc8102d36e769bf10ff6819374e84f89c00b846be8bda74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06c391183df539081fdfbe7570b2b3f95bcf38b77a64d4cea8e589db3b578762
MD5 306715452e218811c24ed58aca23457e
BLAKE2b-256 144563516edf57a98d8e2935467a11a59dc19f53b3113101a5799f188240b2ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f05ab4f0ed16f48c869b303e894855f87e358e50a932f2039747618b99fcac5a
MD5 46cdeaec1460764651e26e15b9721dae
BLAKE2b-256 6e8235f3440c8579730c118c554e39c76c8961c12f059fad97ac8f5a82ba9120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1946b9337ccaa8354d43b3d3fa78d6d0957123ca4aeebcdfc451bf0967c8daae
MD5 341a5adf6f44fdc50478501840e5cf5a
BLAKE2b-256 b01f4a653fa5f3e68dd4fc9111aa90e773240f3cb1be6715662b7c68c064ac75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 568214af41bffd91f4501b80ec583c81af21252c44b6d3e0eda4366ce3729d1e
MD5 76a8a73e5918135f28f2746ac6c050fb
BLAKE2b-256 f190114b52e8cc0b550825dc44737b340e419ff6ff2bc0bce1c374ebe84d9105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 10630e757c3047156cf2b106cdc38990b40d8d5a0dd1d1ecbd4422d37d216f26
MD5 0d3ad98c6252d554dd78dfefecb84e7d
BLAKE2b-256 6da79a6b25a970f60d7e71894cdabd6d20641ae44d4e56d709da3b86c1f27b87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b7d8f236ff535d6aa3d9ea61731fd5e266e0d12abe27a4c4888c02be4f0c8c4
MD5 600371744360081f20f6f17a8c0c5ffb
BLAKE2b-256 517ee2f9e514e18351df277d739785156b484538a72ea06cff46de4697479fd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb38073ff608b88e40f39063eaaa6f4b60ed0157a0de799c1120de54dd5b7432
MD5 50466dad67e5cbaeab3e1a9c4c3a0a12
BLAKE2b-256 7c3c3104c0cc5de43b85016d10bf24cd54b27e0f8ae2d8960239cc254f075fdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5b02bffce7a7afd53a40c3611b5016a71b0b856412692057bf469ee54a20377
MD5 775f22c7e5fedfa8f34aeef2cf8e1a39
BLAKE2b-256 4be2e7762e1d5724cae748d0bf6a745ee8f72f23fc3aa81e82515b1c3dc09904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a1d7d81e340401bfff8606b78e05a8628d297f1a1a0e36d8f3e22b7bc04a0465
MD5 658cfb81b8942d94a411adb54f4041ae
BLAKE2b-256 300d44f628ac28abddfda3b58a05985fb2b4cd47f06c0f92c588f6ec62276d4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f29bcfcede8d6ff3fb26b96dc146d04b6d3e0b4f473efc6a002f86f0ac0bf24a
MD5 289e79d4ff8b3e4963f0c0ff4404cb61
BLAKE2b-256 f79afa8f3740fe6bfbe7bf4bfdc80d0819ea5b3b1f7bf92461c871d3675b3685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95ddd5c0aec59e811dd8ea2a40745dde16ee6901ae0dba5c4384cf53588d7929
MD5 b214e47d9f279c6bf3934a0ede0fc7c0
BLAKE2b-256 80bf57dcd5b29ff7b4862eac6cc9e162cf546abd6ddab116af7d176b4d9e194b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 16c6cc78128930f4c946fe0d4ac6669b0253072150fb96602292b22cc8aa3333
MD5 27f1f028f70615b65c436c1403c29da1
BLAKE2b-256 d20f4c3612c1a44a92d55058684445b8325cd30bf315202f4483c8259b279574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c7ec96f2d8f7c70e703b82cc1a0e31279586de3cdae5db6b402b160405806d1
MD5 b519759adfaf04092f40faad1282413b
BLAKE2b-256 d844d3af915019d58402a4c660a5ca286a11f910c037dbd884f17ac75d28389b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 59e502d28efa7809a9f737a28797abff0f8ba77cdd1ef0a1d2a3e06a3e28bae7
MD5 8aa81afdb2aa3f82be73f8ed7c71e26e
BLAKE2b-256 efd6b96fc3714e636a8e45cc3de32bc9491e775d22c79414e11ceca1100d1f3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 57eda12873a0eac49468a1177fe39d0e12ad5fdd91fd02b96b138f62bdadad2e
MD5 7e17388c8d5240ab61003eb339c483af
BLAKE2b-256 03a7e0b4e7a500b22d4849629c4be6fccaba1f5b88ed08ce5dfe8c98573c33af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5fb0ed8d18256d19d240d0c8fbda9eaa8b20e33c29f0122bd0d15435b453ea2
MD5 ba6c9c4f5eb07f22894140326dc4bdc7
BLAKE2b-256 ba1c653690a8b47aa8aa764fd2a77bd5e170a15f13f57ace81fa59a8766a86f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5a2eb2afb977f0010d4953606f82081972e63070f4a4c2cf60d47c2fb397953
MD5 862adbf5a6d8036c9b0fbe4b7b361d2a
BLAKE2b-256 27e755add550492b732e9c6a35044a8928b37fd29ed5594ce42f2c4a915c5de0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e96f2d310ed9e9d0a51984c2cce534007b05fc4c3be683537e8c26fbb0e9c564
MD5 23482c64337d7ecb690bbcf9329c4a8b
BLAKE2b-256 e10757af7f2a4867278f6acda42375335ae9dac3f6e39ced0bb50a70821493fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09f4d60ac412393bf24c895dd1e212edc9ef380e5228ee97574ead5205b34789
MD5 3bf2fe5ef48308b741b38393df48f96e
BLAKE2b-256 336ca170ed5593981b102c8082cf427a96ed83bb33fd55be0b9f76c628d9b6ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73fcb6acae36aa6995ca28f2abd3d80c517e1071933a902d0672e01998875cf1
MD5 aba6ccf0caf9e3ec5b05acf12d8c5c26
BLAKE2b-256 ad78a3e6a82f66f0f9eef554b8c990ba01c2145730662d0fdfcf94d1c0553ef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02033ca7215b98fb8d5256aca5bc5b6f5150fb5a6257803badbd4a3b06864ede
MD5 990893639087c61fcdd8356261615b1d
BLAKE2b-256 0a4b52ea63c2369990d9f95625ca146564d5bdef72b3bbf29cf1315941528d49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f941059a16e69812611b7ed7a233549d9e4e862af744f8035172e380f2c2739b
MD5 55d2dc6efa16c0885cad1114c24a6317
BLAKE2b-256 f8fcb9bc08cec2e8d7214e89d414d35f22877bd754c4937cc464cb0c23120360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0c64cb953b676bfd2aaadfd8364f112bdf8cee463b64819f37aa0de0f3967f07
MD5 3e88c6824da3597329576f50754f3f86
BLAKE2b-256 24708efc5cb4206667758c1fd67a1f063ef6595e1abaf367d6e4b6223fa5af29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b85605bd6d5eb8adfd2a5c8d0acad3d57bddbcff127f5921856207cb38f71fc0
MD5 8c5cea91f560b716b8a81757752ec736
BLAKE2b-256 bd6106115117e5f4370a1d0a6ec3599c2b56741b4b5b421d1356a46abe5dc759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c244345744c44373f6ccb20bddb669e69d52a7aa14e167ddf12ddc05b8d9f69a
MD5 03304cbaf58775a9634c211a439b76b5
BLAKE2b-256 35f222644b6522deb2a707ffafcca2bff03d879f06b15d1dda89b46ade208751

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edd734fe69698b578b6b03d8c01a62369283bb68071c1cc4b29f58a4d561576d
MD5 f52eedc6a64a9af3d27d81d0cc25c8f1
BLAKE2b-256 eb1db0a4ebea40bcb2b9fdacc8b85c2ecd03fc5fcefa3a8b740dc7724ab79aa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44d7bbad5a29b4e36fc2e5cbdceed50f10d573811b67ff7b7fb47d468764b541
MD5 696876a567d9ad79a0b61e24a2b9dca2
BLAKE2b-256 f372370f17b17fb721c100b02b44a28be592098ead919b59bbef94e202bb467d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dbb4b95c579150ecc6fe0e776d1311a6179dc7fcdf85d3c521d050fb133a992c
MD5 8d65f2996a2a0265d2b7708ba37db87d
BLAKE2b-256 b4cf858fa8e7de0340b4e7f60fec95769a2e1eaf0bfd12fae4d69d0947b8a9e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c68f49e6e0dbd9a6926b4b5e1433d435edc46bc49b0757a4d32b5b4d2f88b48
MD5 a6409fd7f4124e590caecc8b88762d62
BLAKE2b-256 d359d1e882eb2f6aff210dd1e7ffe7fbce51bac34fec200f1e6078edc8d98c24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a823b5a73f9ab3321d9aec451b7d2b81caea911c3ba97583551e7c73d2e46e7
MD5 8ce3ba046d4ae4c562c3901ab81b9e7c
BLAKE2b-256 3669eb316849f532be5b81d274e15db4da00ff50a5698500feaf74c48f6b1a32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 97960e747759e1c491eeefd2ad681d1fb738885fe200d2d95fb75963327d4eb9
MD5 8f7ecbdfa17551e93229eedd6d48a51f
BLAKE2b-256 edf2d83ec6e5b878f066a07526ac11cf47031d33228a78206c4d861c72395248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88eb6656cf02039064e1f1b625d77564cd5b5c0898e24b3a53167994ccb79008
MD5 a4ddc09b752fdc077041a63c16554601
BLAKE2b-256 713878b4f7ad2dcfcb8091e14069d58190ae9fd34e81d3462eb251f58a90b7f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ebe70ffdba938187d1b3169b588de9f4a53502eba1980be6d8243af4ade9ba1
MD5 bc03a5405a6c4cdf01fc4856d3f474e4
BLAKE2b-256 f90551f37479af3bf63287618b571329d9786b8df1bc541593b5f90c6549411c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0b4a655805403afae3abc28d8bf3853c5f502baf07227aae61c0383017f2e94
MD5 00a83ba7618a8e2b6fec2f9cfd6ce00d
BLAKE2b-256 5b55aa463d4dd7610f559dfd72861374e65836af73d0d00f2158315cad946aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4622c465f70c2f5e0ad85226a99718c6637447ce7cd8376f9a4b0a0a4dba4618
MD5 0efe5a00523ef387b886f17e4a2a8618
BLAKE2b-256 2c777ab3608b7d2acc030aba07d03d8c7d58c354668a6ae7ff6b0c6088889652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae36e05af3722e28fc65018fbb5eee252625ad1ec8474de01fae688a8bb0c6a9
MD5 d161669ba911ddbdb44655616dc18ed9
BLAKE2b-256 615bc2d6701d4e616813370c70dc6a90b417be83eae5861c520c8708e762c721

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7947c712ba94355ec3e4d47ca7956fb880a81ae6caff3358f17a307c38489dc
MD5 d1f1d597eb397b71bc0cd58fb8f900b3
BLAKE2b-256 e97f7f9ce5e38500cdff1d7cfeab5fcc4fc6a00488b569949e2f8573c5f015a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0216709d541f70fb4defb741ea5484b815168ca3018ec687ee88cf553629f2c7
MD5 2798019932baa637dcddb14972cf2c0c
BLAKE2b-256 97b8de8574b0260b1f1971787e13cb33795c3b4cede0f220cbc565af9414c6db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 784db082ffc6c6e647cb04df9d7887476e6c30a5460e932c36660cf19898158e
MD5 71bf3861a92278275da413273c46cf6d
BLAKE2b-256 8d0469fba1cbd03c3966e511d3511eadf7a529347c73dc5c7aea8e55d97a9a97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3223881ac3104b5fdb3faa70445048555eafd9232956484a059878c2814cd991
MD5 a3adbf03657ffc176023fbe41ef18040
BLAKE2b-256 2f40c4bd5b39d6a1438dc30999f40a8552a907b75fee19da10d014745e66e68f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9e121898979a7ab870b3ccbd5b21e004539b83b9fc285803af8b7000638deeb3
MD5 a0f098db796d94b9631ce044ebdd5793
BLAKE2b-256 8d5f565cb3779a7e2cf99490a5a0aa2451c1af463108207244141fe36e7e0543

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 042934d223cef5eddfd3db155528b542f2a341c1c3db9822c7e6087e5824d1a0
MD5 c67e916c23a95467f6f651dcbb3186b9
BLAKE2b-256 8d376d0b328eca41f38160ae61f9268a1837261c95dde961ee2bc207317dd35d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aca9a42b285f79932624464948692a37916a9faea761f352c0d58208f210736a
MD5 ecc5382a9e3444ac50351b0d0a2ba88d
BLAKE2b-256 75b232f92087c140386d416cc5c83e87dc237b8b5b3cc5c7dac8c3987d0dfd73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a55bb507f6dd3b3ac7e007261ce44192dac45511191ce5a27aedfcddd57be26
MD5 4756426bb81db65d863c7264594daf1f
BLAKE2b-256 aaf4d569f704f3f41069f8d087573eb7f144f87b8fe77145fba1987c584ee2f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 074a864c3f9403c9054a65e4e6475622e4e147e6616ccde8397218877e19f57e
MD5 be8820dcfc7fc99b1fcf2cce8f6bbe2b
BLAKE2b-256 693923fcc37fdc60566d414ce401a12891371400000ab80592c677d4e4e1f968

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5fc23707774ae46eefd25f7a5face272063b386a7f85b572db2c39a8e8566011
MD5 e49befb2f8cee57c5ce3743acbf3001c
BLAKE2b-256 6d8dd3f185dc9d26a1a5f2d49d9fba5eecc4df0aab19a1678ea412287ae14e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2236247abc0af32954a6023817dd6bf46b17fd13ea9860301fcf97c3ebbd4d0
MD5 c0e1d798d92aeae7adf6624c2be12bef
BLAKE2b-256 f15106f92116d5b742bec002c1767654543796e95c38404c73839ea8ef19335a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 eaae054b6d0e5e8ffaea9cd8f41916aab0b86959f31ac57b778d0c2ac167627c
MD5 58cc47c5680b5d3cfd1c19c74321a103
BLAKE2b-256 c67fb1051db53f8c760ab10000e28c1abfa8d48650d7d241930b153259c77910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a88205244dd9b4d2182906357d3a75c4ebb1db9588d22672dc07a69b0cfdaf9a
MD5 fbde13b58c162875ae19c6d8a58a3b26
BLAKE2b-256 1687e6bf9298faa4a34576b53c181c60fe1a2db3f307fcf12baf43926f433c34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ff333cc3f73625be95071feac9120812ade69f30c2ee1753ddd0ab91439ea0c
MD5 1bff38566d3d36b7528f8ba472a1b458
BLAKE2b-256 ea2281544387b2b9695e26d89769c7ac96bbd70f5e7f023562657a990b2b2ff2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7230f22ae1471421046806926b065b562cd83af1d2f4a499bd980172201b0877
MD5 b26c567fa661e0241c0813046b645f20
BLAKE2b-256 4ea5f218cceeb1bb8dbf6f98ae3caa4e8f22ac9dc4390ff9e10b16455c58c875

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e164511947d06c54113b3b146ffd6200a29948bb137bb9669b4327c9560845c
MD5 05c0668be6303b2a9029872b547513ae
BLAKE2b-256 610d5d847fd3ed7453dafcbacbbfe681639eb45fabc4de2e84a81afcd8214617

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 503b06a1a282b16d07d028a0af7d8c47aff1bda564e03f459db5a3a67c3d1a38
MD5 1ade6265264fe58748e22ab40a72fb94
BLAKE2b-256 6a2b30fe7204ea49f6baf7474dd542c649c9dc876aeb4804a2472d04cc39a175

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7723db2f46e98adb19eb429b15908a83faad52834a9a4a83e31a638db188e4ca
MD5 6b9a584f92a252ffaddeeca91bcf5d64
BLAKE2b-256 05d1617758aeca118c027b9fd3fb8c8a59e2e06ce22fb7271ea64c2ecc84090b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c19b00aa6aaafd580f1476a9c67a8a66e326428bf6338343f1bd1ad506515d2
MD5 a953b141b09d306d703621b65986c7f5
BLAKE2b-256 fad10a62b2e785b0b5dd3a205a2af1f5f4804eb40eca94ca3cc465d8987dd931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c243389a411ee707d98651ec094c67f350d78f002996f40340d2854259831f91
MD5 64a002f9a0eff58285d260f9e0b1dadc
BLAKE2b-256 edb570b9657f4cdb360f5e4fb711d8ff7de2a6b1077cddfdb1cb14da6e81b0c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40773b4835b982a3646c064cdc784d8f3e9171ab76eca24e8fb360afda7ba8db
MD5 ca243dc8dd65b8b91bf703c219c97e22
BLAKE2b-256 2d0de0d83d95260f5d0081e5382182aed3a5acabc14c19f495ab73901c732094

See more details on using hashes here.

File details

Details for the file fastrapi-0.2.9-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.2.9-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2a13cb9d6020a274eed3ff3389710cd0ae1760d1e3d1ab7b3e02342a93503d63
MD5 7adf47901a78066afad5b0ceb2b80996
BLAKE2b-256 a2e74d12ca1e0e383fdfa8614f29ced134bfd175213d7cf1388559d88d1eb4e6

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