Skip to main content

A high-performance Python API framework powered by Rust

Project description

FastrAPI (Fast + Rust + API)

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

Key Features

  • Lightning Speed: Powered by Rust and Axum, FastrAPI delivers up to 31x 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 31x in real-world benchmarks, with no compromises on usability. Check it out here

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

Quick Start

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)

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.63 0.00 29273 2.38 12.22
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 ~31× faster than FastAPI + Guvicorn with 1 worker.

Current Limitations

Some advanced features are still in development like:

  • Middleware
  • OpenAPI docs generation
  • Websockets
  • Dependency injection
  • Better error handling (currently shows Rust errors)
  • Background tasks
  • Static file serving
  • Testing support
  • Logging/metrics (maybe next)
  • Rate limiter (even FastAPI doesn't have it)
  • GraphQL support
  • A nice logging tool

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

License

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

Acknowledgments

Inspired by FastAPI Built with PyO3 and Axum

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.1.6.tar.gz (1.2 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.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fastrapi-0.1.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl (4.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fastrapi-0.1.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fastrapi-0.1.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fastrapi-0.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fastrapi-0.1.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fastrapi-0.1.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fastrapi-0.1.6-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

fastrapi-0.1.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fastrapi-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fastrapi-0.1.6-cp314-cp314-win32.whl (3.9 MB view details)

Uploaded CPython 3.14Windows x86

fastrapi-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fastrapi-0.1.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

fastrapi-0.1.6-cp314-cp314-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastrapi-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

fastrapi-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl (4.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

fastrapi-0.1.6-cp313-cp313t-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

fastrapi-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

fastrapi-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

fastrapi-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

fastrapi-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

fastrapi-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fastrapi-0.1.6-cp313-cp313-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.13Windows x86-64

fastrapi-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastrapi-0.1.6-cp313-cp313-musllinux_1_2_i686.whl (4.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fastrapi-0.1.6-cp313-cp313-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

fastrapi-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastrapi-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastrapi-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

fastrapi-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

fastrapi-0.1.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

fastrapi-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

fastrapi-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fastrapi-0.1.6-cp313-cp313-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastrapi-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fastrapi-0.1.6-cp312-cp312-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.12Windows x86-64

fastrapi-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastrapi-0.1.6-cp312-cp312-musllinux_1_2_i686.whl (4.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fastrapi-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

fastrapi-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastrapi-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastrapi-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

fastrapi-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

fastrapi-0.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

fastrapi-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

fastrapi-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastrapi-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastrapi-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fastrapi-0.1.6-cp311-cp311-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.11Windows x86-64

fastrapi-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastrapi-0.1.6-cp311-cp311-musllinux_1_2_i686.whl (4.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fastrapi-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

fastrapi-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastrapi-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastrapi-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

fastrapi-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fastrapi-0.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

fastrapi-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

fastrapi-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastrapi-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastrapi-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fastrapi-0.1.6-cp310-cp310-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.10Windows x86-64

fastrapi-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastrapi-0.1.6-cp310-cp310-musllinux_1_2_i686.whl (4.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fastrapi-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

fastrapi-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastrapi-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastrapi-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

fastrapi-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fastrapi-0.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

fastrapi-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

fastrapi-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastrapi-0.1.6-cp39-cp39-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.9Windows x86-64

fastrapi-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fastrapi-0.1.6-cp39-cp39-musllinux_1_2_i686.whl (4.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fastrapi-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

fastrapi-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fastrapi-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fastrapi-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

fastrapi-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fastrapi-0.1.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

fastrapi-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

fastrapi-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fastrapi-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fastrapi-0.1.6-cp38-cp38-musllinux_1_2_i686.whl (4.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

fastrapi-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

fastrapi-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

fastrapi-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fastrapi-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

fastrapi-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

fastrapi-0.1.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

fastrapi-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

fastrapi-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for fastrapi-0.1.6.tar.gz
Algorithm Hash digest
SHA256 25ca45d2e44f4023d55472ff111fb9d1c582be5f5e6e0547c79628cf7f9a1307
MD5 446694a2a5c26d2d69e4912efdd10f48
BLAKE2b-256 9243ce067bcf9c9602b3a40623b621a1644964f8cbe4448f960b09419f716c0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90ed5d255689e758f3b9cc577027ebc98969a4855dcb5bd74c9211cffc5b11cc
MD5 d4fca47ec11777ce4316c352639d9726
BLAKE2b-256 ad648a37122a1155b0c681b49cb0c09e3f3199f03ebc07fa0e0e895ccd81a959

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fdcd38fc25d63d4d8fb09bf48ff433050d3b7488b4370b1ab7c9bdec6962494b
MD5 1e6c656cf6c7bd3fbf1ffced053b37c2
BLAKE2b-256 e1aa0ddd290364265f0049df683422b4722e770dd8a66740da6b35a024a5c643

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1ff3c241f4620bfec94cab5522d456b440a0636d5630d47e557b89d5cdd8332
MD5 12b84495cffd63d67f8a066da604047d
BLAKE2b-256 32880e1dded84f1384fef7c22c4dc378091c3e3d6b80535a59d4cc18f7e8d77e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84bc1d986cb3c927334cfef00e3316c24eb21755de90cf5884f9960a4bc8ce32
MD5 1c9b8bd35055a9f399117b313855b889
BLAKE2b-256 10efa2865d95ff0c966da9e780982f2496e3586a39775b80f802a1b92ac9918e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf394edb9e429c9e17f2c56c30ade6c13e2135f93c47798f204abc28c3f12a50
MD5 ba72a02cd8aa36b7c7268f82c9d9bdcb
BLAKE2b-256 0d395696cf5098c166083e24077354d0216813d2f2bec6c29fe9a9b4178e35f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04d514634ebabe5c4184125c79794da93a60c2623dc9efb75a0816cb2be5582d
MD5 b463bbd9b0918c3068c7229e80611ad0
BLAKE2b-256 23504474c37ac7cd69eba9656e41f6ae90a12e3da3a2758a004d82b94fbe62aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4cd14ab035362188ebb3c6964efec321d53e6fb74c40d38dbeed49e6dbc50f4a
MD5 62107f1058b8341b4cc114524a3fb0c8
BLAKE2b-256 f16aa25c9a573072aab72deee8b7a4b0f97ee106e95438d868be37b45142d9a6

See more details on using hashes here.

File details

Details for the file fastrapi-0.1.6-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.1.6-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bbcaead7a9d84ccddfe40f4a48d7b51b8c4b929393b8a3d0dc6617c92dc83428
MD5 b7b206d1736b92113d84d1b5fd868e64
BLAKE2b-256 18621d2f1e518a20bf256ba0d4f6a8da48f50884e810eee3e639700945f05723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2226f02cf72450abf4298e975bbe6b3d806fc48abe651b2d86a9ae9e14eda424
MD5 bb342472152129030029607eaa4bc605
BLAKE2b-256 a08b2313104aaa367dc1437ba8a881f7cbed4bb097862bdee0cbf81e2ed95291

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a24c9c8834cd0399592475eef800aae8497fbceab36fcf26eb3ae2ae4bcf7892
MD5 d9abb05be03f8353484614197e20cdf7
BLAKE2b-256 85981d78c3e012d45229b33a9c8792d33288a681c78523da648a78394105a42b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fastrapi-0.1.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7fadd8952549ea78fb42f0096631f9cfda13d46c5f7da598b5ac0fd00286c3a6
MD5 4edb87b80a4cd0586953106f4b386b89
BLAKE2b-256 6de18aff28cb73d6c499e80f874070667bd43efc244c35f2c65d814142d64992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36df1a6457ec850ee0f7751e5be14f465ebd622a581f7ae8405066c9f4e6e629
MD5 60f0e18f8895e6965e6af03da627948e
BLAKE2b-256 2d5fa451e7d35fe4aaa546a2c9e25b7c3445f1212a4369dfd3125b5019b47e61

See more details on using hashes here.

File details

Details for the file fastrapi-0.1.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a6848510188d4a1855b6aae00637f43d5bf1b6db8adbef3941946beda6165172
MD5 6f88a4601ad273cad6087da51c61047a
BLAKE2b-256 5974b1525fee071bae1e09271b66fc840eee3498c4447841e7b57d4c0ebb1ddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3da0b68c097130a7e181fdef52d4a8ceda24253a11bc436d061ff596bd18bc44
MD5 6aa91994814cafe7b2f248fb29251ed5
BLAKE2b-256 3a791d4d050456e1b6246c6e8703f365ea8b7baa03940e9660c696e2c8905514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd4b986e5c49007b085f11939e6ed29914dc461f4684c458666a75d8b74e7cc8
MD5 ca18ee1f642ec6e0c2911aae6e99c4b8
BLAKE2b-256 f5a083a3ea6f8add1bc49987496b2b83e6970746e0da87f03e9599ad3e76cae2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 72c8c1da631b802e88dd3ec3579d8d71489b055ea01f86fefe7b68e91211ad9c
MD5 a345fcb6873ab4d3e284b7a4810b851f
BLAKE2b-256 088398c36ad6f8ee351a3d62fa594e654b400467b9863711c3194ef7244bc9a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f124788d3286ed1109d9e024b4bdbba38debeb92fcd34e92179f797a710b0c45
MD5 4be3b63b96aeb88e1c18a48de2f9a64d
BLAKE2b-256 d96bc07b9e5c1a796ed7a6db4fdacb96450bb646d4c38044963a210a4d5de35c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 171c1aa17a9e0f01a9b94dc23692920b312d13388f344ccc77d6f5be4feebcc8
MD5 ace816ca8949eae83aaa065790eaab86
BLAKE2b-256 e5c40cc23e66ed4fb6c288e47531abceada7f8f1ea3acb8aabba3b6dd35b5c2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f05b08b69a7cf414d0cff11d47222623337661e124886bbf9694eab1e672b28
MD5 1518081051e63bc2c7c26cd64d9ad497
BLAKE2b-256 44e7aa58ce8fbc718ae2393ffc2ff3236671c41c821f5dcf3723496ebb8357b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4cf4e2538ed1482a02eee7297968ca962599c495d42fca47f216e2bcaa2dfb77
MD5 1a7a824fcec1474410265d770a0f4dfa
BLAKE2b-256 7e43f5afdd9137c0bc7bd7e32c0a08270282f8b20cd6fa43f842e80ad6d6d35e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 960484690d7dfc772b71ec64d9b9a0a1c713d9edd2100d29ba1eed44ec18bf3d
MD5 715b48de482cfc65220b030e7423957d
BLAKE2b-256 34aedcd043fc5136f1de0f9f41316d85f3ef073d567805a5b9d2e25308af8818

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39a07992f50cf78a758bcba96eaf8c7bdcf408ebbfc6dd4c1592c81267d860d7
MD5 ca3489a299f9c7d3cfc6206179ec7242
BLAKE2b-256 f9b2c4cca79572e1d08f9401e4d9cd34c774fd96b6475f23ea03fce3c6583d43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 557d6b011395718fd465450b556240eba7728cd6eb007d8991d2298f83500868
MD5 b94548aecfc3c7c820f13fd6d0bcf20c
BLAKE2b-256 ea9391758ceeb829da30b5c01e04f5af60b5b68ab57de05e9788cc67d67fb758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ce759c139322a472d47409374513f8ebdc675336bb0cc9eb0efff9da3ab5d51
MD5 a35ce96956ad97d599f02b2f46962c0b
BLAKE2b-256 0e886a6528f54d27d884fa7bf5277556492a70691d47de264ddd59625df325b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f2f46dae6846a8fbc45180f171466611a287c1ee37cbbc4795de59b41a98237
MD5 0fb41d3f6a18c4abb75caf20349a3b0e
BLAKE2b-256 9c1d11932b256ce85d4f7c167457baeb44fef4f4f7ed6e92fb3652f8d8842cbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48f203ccb2d7cb529e2849e0593ed592286a17e76b6a7f93c363fd36e5bf80b6
MD5 fa3461af937627e33407d5558a3403fb
BLAKE2b-256 0c1690f4dea986ba8e785d94706cbf8801cb7ec9ca1c6fc9cf3acdeb55ec582c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30d9e2f9d5c6006a27cf6365b4aa554206106cc0ff50f22096fa24b952ff7f25
MD5 d42c2f0339292d4144f88587254af26b
BLAKE2b-256 d4ffd632106531f3536160ebce6aecbf495cd9802731993a0b106760e7ee37c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be8e7642d23174fe0e9185ba07e24bcc54dbde4cb56d1bc2707039f1aa48394f
MD5 bc651131c908800a8ac107181a70ab61
BLAKE2b-256 358e83d8ba755d90e97337f95bb810250dabc09a89f931798aa86ccdc3088df7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf81294791eedef075c45cd4fbeb8a4d5f37beac9c44e1e95ed13c2d3095e726
MD5 b0983fc7bb8a67d4ded39a66a5702460
BLAKE2b-256 eee0d2aec12d5a9310ba2a861c1d02a2bfeed7c4e82187fe86dbfff15e8dd466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c47dfda0045edb7d72e38e5c8d82c0b6238eee5f0ac33aa9a5aaa005f56ce19a
MD5 3ee87e8ef7ebea393901358cb2da3a47
BLAKE2b-256 5935b5b3eb04ab8de2e46f4b9cb1d40b4de58c799e6993ccafda5c49583c09ae

See more details on using hashes here.

File details

Details for the file fastrapi-0.1.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8da1f8d80a4669216f0e0f2608f9ce0f074c5978c85fbfc3f0ccb4786aba8248
MD5 19bc6f757826d59cc1025ac82fb8f797
BLAKE2b-256 1149fc1a59cabbcaff9ffb32e88195ec2407a392211a2d1376e1ea231fb73652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cfd07e4c9f479176a4ee9c5bc144ecd8875790751b554d9ac99605578084b6b8
MD5 6134750a37ea7e8247ffe2b46530feb0
BLAKE2b-256 9860a281be5ec2157f62846ae56041e4efa318fc1d6b1d4e99880b67d85d1ba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 939c5d71a3238d5d880f3e1aea628669b60b6d5177a53e732707bf3ebff0c7a8
MD5 7f6a5a53bcfaf38af222d46fe6cd02fe
BLAKE2b-256 c1f3ce6b5d6bac286fb405e870db7f02f0b6a77b0bcd106db2482c88b969ee35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9475c0fa50ff6a23bcb5b3186954d30dbb0f9033236011b844c6dc7641d3126b
MD5 5f969749ccad58a5a786e5d422e9c8ef
BLAKE2b-256 51db2e1c3e8c6f8ed8abdf487a73b9bb3c4f809ac31290bb38961ceabe90e483

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b591ddfe10e424661e264bf0ef89cacd4223448cffb33a11cf18a84214def085
MD5 2a6cf833cc75bd4b2e26942480d0db88
BLAKE2b-256 14865bfa888f4d5bcecaa41f14ddb1a4066969a6512fc1f7243684f21b1ec092

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f1cc8c6cf68baed9838e4193f2ff45183838ff3237a89d6a8c93ab8971b3ab05
MD5 5140884b21393ac9d98420e81179cb2d
BLAKE2b-256 4ce4909801e18c059fa7749d11ed4c6cb6a6c5e76a286f4e5e74e9ef6eb5531c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ed5fdd2a9b8eb299e8e479e212bee686d76681425785acd2dc9180b6d154972
MD5 2ce5aa0eeefa4793fe32486ebe23dc7e
BLAKE2b-256 8babce17160d0059221f15fc665f29af456152d2eca99675125506e6fc473454

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 445efe4c9be569c4965da07ee32327cdecf395e678eee70805f5b0bebb078b6a
MD5 4943dddea45eeec29f6f33ecbf3035f8
BLAKE2b-256 cb4c010b01566a1c040da4bf47ba320664b46e9dcd967e90d46ce0d165aab15d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2123f5e3cac27b5af2dd9526727fad04218c5c43cb35a8ee1615b828ada4d48d
MD5 4aef230d0c026c3135bbb32fae29e362
BLAKE2b-256 3127f12dae2222fdafb1941ab02f6c589b619b52f53d455881577eacf27b8874

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 deecbaea6c59f9ccddb8ac82adaf2eecdf1556630b3dd16ec71215df31db03d7
MD5 c2f0657533aa58174efcc271ae04cf3d
BLAKE2b-256 fd65409fa89fbe21cba73d8fe8f0e08dbb848c0c3b8a6ec2bdab0699de07088e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db62f28793c41a01b8a40406a55c5fc1e821519e41546249e24316b4e7875aad
MD5 526f9a0ac2b5e6c2bc3cef558fd5f4a7
BLAKE2b-256 cbcb0295c83891c258333ab10dd6adc4d4dcf303ce0e1f53662931c3492b2312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84564fe24005693be9e69e25fdbbce9ff306f9412737d85b63a77596c2b5e1dc
MD5 91407a36c926c45f6f77a2950bf4d1dc
BLAKE2b-256 0e8fbe33f773dcff1f5bd04f0db385d1b43253735a3b8e0f8df47e4a6134aefd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42f69e75b66fe7b472e08114a278a3fd784a57dd4970379c16f0bafd2beeaf15
MD5 035a7533a1d0aecf33b12b4ede5a6688
BLAKE2b-256 d25acdadccc3e481efc8e029a19f3663f8381975262f11ff56da20d182bd5605

See more details on using hashes here.

File details

Details for the file fastrapi-0.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 26ca730b1d6366dad2c648ef0ce59a81425b7ec0ab7ed090a5172e3d1412f544
MD5 194b46664a653ca4360b9399895d968a
BLAKE2b-256 e34aa66aee147900e7adc6047d1054da4c5430fe5a54ff8435c32b58a0197594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6de7c0a4643d113122ab06cd534d60ba27865966ead18acde3f656617840f15e
MD5 4281a4a5ce3d41509f8fc19afe32ccdd
BLAKE2b-256 a58072794fc9e068e9f465dc40788b187943d7efb16fe21ec0aab66f71bc5472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 066a0a430254f52ffbb4ea0e02729ab03684596421f60000e7978090ab4cd50c
MD5 677124619d99334d297d4a456447437b
BLAKE2b-256 4736e66cd00b58cb97059ceacedf50e818896bcc013debb93f90f54a9891a86c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2bf6764ee771a180819d3dbec75617c8d96c2bded19ba950b4d252d854ad55a
MD5 879660bf396f6c92ebc3afa526c70e15
BLAKE2b-256 dfc61220ee18b7693ac85e094210190f5821e0c71b3d0950d08a0de9dcb7088f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b64feee890bec194d2d8b14366c8d7923c88c7e03b999c6b69fb90ff7c11bc19
MD5 e398e877fba6adccb044cafa9f6791cb
BLAKE2b-256 c7e35eb4a8976218228c41135da25e943b038f808f75b1724860f38bef935b5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bf5e4bf11f3f9a1f06207bf79480e71f0cd36ad66fed7536a664c47c9eaba053
MD5 ce35a586d8af927913b4fc3c9d01a1ac
BLAKE2b-256 2a4005059c21376f3f38fe892c3265743c05b25c90410b4d71826f39be168166

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bdedaa154050fc267bd7185ed19e18edde24d8184b3851b53a8f1e5596dfd610
MD5 c70ea3c22ce823c2575518990f1a47c2
BLAKE2b-256 6365c9679ca1371f5592b69cb040bb4b298ccccc7dafe173b0a485da7a226def

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fcc38f8731d0b0bdf0b35976c4e8da89b98ff0933b0a332326be225c8438f1e3
MD5 df7a06d2175bdeb5bcae83876189f119
BLAKE2b-256 eb230a717ed2e33527cd80e7d22a91f97eaf59846f2525da591fdabc37ccc75b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f8769773496227a94d60beaad8abee78cae937cedea07188232182b0d9ad2a62
MD5 f1ff627e1a20e42340023765c08bf90e
BLAKE2b-256 d25b5e213ee8e6d76d6d5143781271a9b824b0d5b3dd4a54441d4f479ab24e8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8f5a811d915293def017847be5bc85ab3c3fb21c0d7b82131fd8548aba61a04
MD5 87d190706b38e30f6b05bfec683f9ea6
BLAKE2b-256 c3fbece6b6ca7c9f01d55ecc4ae759e92db935f9d140eafac2359fd2c2f8b79f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf746dc9e6c20540bf4b23bbcab03743d1307ea7fb28b681b05dd5950bd1fb59
MD5 3088448dc9bab75d507a20e3f5216089
BLAKE2b-256 cd770cb1c51480f6187588f3aa11aea1ba5c94a269ec50fdc6f5fd3e6ebf5d97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d4473d344bdb53c73d09a385fa6fa6d9f2a2f981914650c7aaeaaa1d769b4b8
MD5 4a6d6ff6bf0cd3ab3ed3c1c940d09948
BLAKE2b-256 12e2dd29cccec7b596424bb4694e7beff8ede365e50fdcaced464f7262109217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a30de7a73798041859b1e7ac7b6939f62279c8e278968c51c9c44dba4d79882
MD5 4a35cbb3e57ac4ae9443638042d44615
BLAKE2b-256 6b0516132f0bc4ab44b8ca804637937bf1737743fa8704c4de585971d81d1244

See more details on using hashes here.

File details

Details for the file fastrapi-0.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d6cd153fce40eeca3d3b6d62f1514ea56c0ba5f268d134749da13568b9e22979
MD5 b67900d0222995804515b6e52623c115
BLAKE2b-256 f819af4f60b7ac0e22a419b63e90ea02c22614480731bb67f510217b26223948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03880ad69efb2fe45d7113fd222bf7edb11105e9f50814eee07be30883318947
MD5 0d9f52fa5ccfcb27c34960d2cb908a99
BLAKE2b-256 2f7ffe35ac1e54f1a97a278983104c345443daef8eab669116e376ff62123b99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9920d068d4d51ad350f666957fd85e9c73f0c2c9fa01f73b0f951d7539ce0dc
MD5 ff4a9eebcb9ac0fa383a2d461789b38f
BLAKE2b-256 1c84fa6246199dc9ff9c9ef856388e5a70061ad0a6dc79e13a65c71d8fb71d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c66cbfd41d03b11922bc949624d8c98c4b09225af63b7772c2aa86edb1d5a21
MD5 09f3524d7c65d221af9d31751d13b443
BLAKE2b-256 e7df0152c048303da9fceb24eeb84ce6f676b88ccea8ae39de768144047a419f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 418ef5b39a246eb12af13108c6930b3606bbbc01c2c988754492b39688e90c1b
MD5 458843377c2fe1d21a3600b1da7f11a9
BLAKE2b-256 08d82c5c340fe154d4d87c209d21c0209e9d5f26e2153d91738457d4599b1465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e4dfd7b80a7741f765f9072c07ceda35ac02d04f40d964af695038df7df00c1c
MD5 215101131932a2186648bdda3fcacbe7
BLAKE2b-256 563fe66c9dfbf9dbdddd2ab5624ba6d57aab03552b3bde8677bf968145898854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf0bc755453339976c616c26ce66912a2db54a132244e0da35e2bf0823b1ade3
MD5 606be3bdbd4d72e9e32b7627a987bec5
BLAKE2b-256 7eccafe18dc3a5450d444b38b4790266f6bbd4a68c60409ef4178aca41505db7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db9a876a6174043c70c6f0fbf3cc4f86b725bfcb46018cc9c8339a5620bc2578
MD5 08b4a1798f47576560b3bf04ea97c776
BLAKE2b-256 85afd0c812887c5c76bcc5fb042e7035b8e03a7a5de4e1a2770e884f5130b2a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 67b1a0eac2091d8dbfb1bf35171e6113302ebfb964c6e9703b3cb16464aa1d87
MD5 a5fb627e04b3684cf2550b95d12c34f8
BLAKE2b-256 8667e266055d69256afa1521e6b0d236ccdca8da2eb31c73314c474227c351c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 321cd03d9e110c273801ed9122432e86b0dab1f7bbcd04b7339b0390f3b8275e
MD5 9a3c8dfb31a36e7974a8592efcdd6de0
BLAKE2b-256 8c499f1d93a402e703d217c916ff30ccb2cbf3af938ec8140fcf1b56899d4b43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bead07c4cfdeb99807b4d7b2cc10484e7b9c8fb21cc6e3b48a55dd63af46241
MD5 893fd3b800ac1b94ee53a22291b2977e
BLAKE2b-256 a15950b27f771ccda0cf47c27c2100a8c5f86eb4bda483b2693c251af24d5603

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46236ba67e7f016cf300f76aafbb4dd67dbad15cd3be4dc1a72027001d6a6c87
MD5 22df183c1575df205cecef711a87002b
BLAKE2b-256 eec5bd65a2b645dd16c0be84a840d6bb76870a861c303e87923e15efc95aa045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7cae9f500b47c7151a3bdd3fbe765af4edd3c8019f2f15bfae26c9d5f85c5f1e
MD5 07b5363eaf6f94f8f446e9d9db3c2a69
BLAKE2b-256 b79a2e4b68cfe53427ab0761811d40339a34e3d88daecbc2d2346929c68ffa87

See more details on using hashes here.

File details

Details for the file fastrapi-0.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56e7ca816c03d84dbd3d345b5dfb04c9e9d1c3c193904e70a979348d019b37d8
MD5 054b544bf875e237e3eab67afd981b8c
BLAKE2b-256 ae936af2c051973dada533fca7be3d0a4ea30e7a46ece1d17741573483a19454

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3143b3590ab072832a91b76c18ca0d58d32b2923d4dd0718cc76e9ed33ee1d19
MD5 562d990a2bf8831736b3ca41d064f5ac
BLAKE2b-256 85b6381ffe7e59d04cc0d89fea1c766e40e0fe4020ff56d7becdc072f4533e1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 540cc8bcbbf949aab1363dd2146e83435b54fe13340c29508aad79a276615f7d
MD5 563767de2daaedd7c228d47ef2ac56a0
BLAKE2b-256 c8cf4b5bdf2a9c3716420e702365dea28d77ac7d3393899a7d0cba1dd1affa91

See more details on using hashes here.

File details

Details for the file fastrapi-0.1.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fastrapi-0.1.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for fastrapi-0.1.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8263801ac171117216bfcff1a1e66aed016a51e22e8b5a072e585e92c27dce54
MD5 8bd7899aad3e58f3dfa1cd8b5c4bf1bf
BLAKE2b-256 4603c85e3b140aea0a397c443669f8103a3735dff868f700fbdbe7c40d22ebc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f296164ce9f1ba708996b8de79d5b2fbd204897335b0df0831189dba9cd211c
MD5 546cf3a4ffef7aa42111db11d2db9270
BLAKE2b-256 9a2efe8bca71f3ace0f7e2bef2d48fa33df21a6498f2b8dbe01eda7ae97e2552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b49f43dde798bacaa557537c5a11c3a71912f529996dd4ab6801e7c4b94a9261
MD5 907452571e67c0090f0d432257680cbc
BLAKE2b-256 4e9b9a90a8c84b904d49199fa5737bb1fb2c5608285ac82148cb55cc7b45c631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3aeb89939926ecbcd09ba434c080cdf85eca345f88b028ffe804888a00a15b3f
MD5 43af7cf5c713a1f880e3a95ddd7d348f
BLAKE2b-256 819a214f76c6f86e07191189c2d8379e7d32a70dbaf1d554824d1c9cd8ebf49e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33345980cea023dbfb8284965131c1c86e341c47864e0fb4b50ce149379bb8ca
MD5 3faa8ed09d9054db8911ddbbb629cc7d
BLAKE2b-256 4aefebb0c4f8dd4dbbe3b12bdfed672923c854ff1fb12b097ec69cb2055ca3ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c0e3d6c3efd520a8776b6e3c0cf599adb1dc280d1ea0090f10a8c009e13c2ad
MD5 c8f6f73159abbf05e83d3b0a9b205a18
BLAKE2b-256 be800a1105ac383a7c0a2b9deb1365030b800c989ef2fcf67a9a61c6584dad6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cb1aa0408eb31bc04669c738ebaeaf223538de3ea0a636e2bf6a898acd125bdd
MD5 87ed99fa92cef7b0d3aeb2f0e52f6370
BLAKE2b-256 ddb11788d21d4caad3ceafe51e55c2662e8a5a647242ba4bac33d330007adec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 818b070faa8956e18e391fcec845f8390eefc9ce3bcc2db2d76c9d2b2d425139
MD5 503995e40abdc2d4ccaf5f92a3e2ec68
BLAKE2b-256 7840fb69cb76a9b4b48371359552290ceef4496f7bae72024418bd87e62a0f62

See more details on using hashes here.

File details

Details for the file fastrapi-0.1.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c41ea888394b20ed1cd1b5b6bfac8f0c3efced94224fdc65da535ffd314bc8a
MD5 049beb747d971acd70243224aec73f11
BLAKE2b-256 76ae3833a2fd22d1854ba64b55c968b07d3bf8d0043458c24326c4be9f1ed4b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0a6eb09487cfa8e2d5073eccc757d5579b52995e8bf35fd2aecc701754c4b31a
MD5 4cd4af38f1239f352f796345f478d022
BLAKE2b-256 e4173cf84315816fffd87e5a10ec5282429ed3a06ce4f75f5de798a78c352e98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd3a12240721f2d93315a88606a895500742d2e88ae2b52d5c6d9363f3116c98
MD5 e91536dc063c12a71d9a8e82b09dd85e
BLAKE2b-256 f36b6d22e17adf34e94f6b86e667e14908f51e0f2e14a75434aa1b0b7618bd47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84a4b9899323602d8ee2c3b2949013980fed86ddbeac1feee6bed6c01976e90a
MD5 dcbedd9872021d8dacdec11a57e5ec30
BLAKE2b-256 18c5ef89df42e120136514329744046b5a73054a32c3a6c56d4c63f5082f2762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f0cc4f25c271d45cccaaf63c6c27628d32b50514ce133f2a637c071c9409dda
MD5 cbd5dfd5350f13c766820c53db4b4004
BLAKE2b-256 636894db8e1370cd1e7f7dc507318b5ab0467116edf902bb04c0cd0d07616551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6fb12d6a319cd199f5f6b1f7635b9450e7068c91f61845944fb906a5657cf8a
MD5 9340bb1315f410d1f892199c7ff4b3d1
BLAKE2b-256 4f4c924e24aa4120dd936d38d888a3a5ae6986218728a4f16dded41235f7ace4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b8b2d02daa0f431d9ccf8652fe8bf9a5f35f4ee7208bbc16f7fc36aa0e5b912
MD5 02866135d4ac11f469f675dd3d034055
BLAKE2b-256 d1b398703d0d00b69c02d3f781518133f185674955bc471e74a5fd12632c23b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13ca9ab66fb2b9649849bfac7ea198a8f7fb0fcf157cf6aa72536df007af728b
MD5 2aa94b69b39985109b871d5d1ef7cfb2
BLAKE2b-256 c594f7e523e9388ff0b7b7704bcfbf1495d9ef2d822b857b622d84b21ad55055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4c047a293a24eb79562a4f81335064595caa1099c95007b97665aa6fe00045d
MD5 40b6100bd1c20c4f7234bdb2beb703ff
BLAKE2b-256 8c6dd1e925e604b036ca6a19906eae68160e770bca56c5ab0f7f9138e85fd9bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad1c01463ccb65c8ea34fd17da29386dff5e6d72ebeaf0484da4b5c57a214676
MD5 c318d8d3d3ada2e36f4b51fa213a006f
BLAKE2b-256 8f5287d5b2f0845f8b7653fb3cc8de2690f402e272c4d57c5af749e664ee7839

See more details on using hashes here.

File details

Details for the file fastrapi-0.1.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f62f45fe9a7b084f3d89de5055cb9446aa43d66ef7728285f554824ac3413632
MD5 ba1608931dcd563767fc0c8c2356f4cc
BLAKE2b-256 a0c8380b953af72046939b6c930d4967f9b06597ebbe44e9ba0632144a42f093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1507796418d054c1a32620bbb91a7f0eda6329ec47bcd7f0a8bba5ada4fdb833
MD5 b8e6dfebfa911e5df31f816685856c7b
BLAKE2b-256 e30d7530525c7c525cd555edc2482173f42238f14a79be79ed8f74314d2754d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastrapi-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 263b89e99a93847a5b1f078656f514ee9f4be75bc481795ed26b6282ef0ec9e8
MD5 8a3947d2f2f85691fb4109858559ab09
BLAKE2b-256 05880d99eac29ca81e888f14d9236a07d0dfb311940950e2172ae2dff12320d4

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