A high-performance Python API framework powered by Rust
Project description
FastrAPI (Fast + Rust + API)
Key Features
- Lightning Speed: Powered by Rust and Axum, FastrAPI delivers up to 32x 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 32x 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.60 | 0.00 | 30858 | 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 ~32× faster than FastAPI + Guvicorn with 1 worker.
Current Limitations
Some advanced features are still in development like:
- Logging/metrics
- Middleware
- Websockets
- Dependency injection
- Static file serving
- Rate limiter (even FastAPI doesn't have it)
- Better error handling (currently shows Rust errors)
- Background tasks
- Testing support
- 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
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastrapi-0.1.8.tar.gz.
File metadata
- Download URL: fastrapi-0.1.8.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49f055a8a9be3f2cb023e934e801c5ac41716cdb21acdb52b9b3558757570eec
|
|
| MD5 |
4144868647d681768bd3559597299711
|
|
| BLAKE2b-256 |
de4a77e9c062c2a524343fbae967c8904a521653c03fdf81639c31bb9e34cd75
|
File details
Details for the file fastrapi-0.1.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8baa0c59278257dc8f6b96643871bca86e9025d020539c1df8a8151a9cffa23b
|
|
| MD5 |
ba3c44c02262647a7d2d7c0c9a6691fc
|
|
| BLAKE2b-256 |
093d4c0abb75aab2471f0e08865e5f8e7b7adcbc316c2d2d3bfb6b016161f2c4
|
File details
Details for the file fastrapi-0.1.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6eabcc194c64396a8c8b73efd433d1f0c5dae8a832f3ca8dc9f541040373d842
|
|
| MD5 |
95e72f6154c3ca18b20fb10700d9471a
|
|
| BLAKE2b-256 |
79afc3d1610b88d3dc5017c08dec79e96740a139ae09af3d48e0d5feb6d4b649
|
File details
Details for the file fastrapi-0.1.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccebfc1bc2114e9488185d897870576e3de4b311f27035f4a6064041c5991b9a
|
|
| MD5 |
8634442664adbcfe54e2439bc6323c4c
|
|
| BLAKE2b-256 |
a6d3a6a9928db20982ba32e45a4e13a20bdf9011df21e9e6c30a0d6c046a381d
|
File details
Details for the file fastrapi-0.1.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b1108f2791f719bbfffaf9eaebd1fc233600dc8c06a4a860ed8e3b6a4e5f273
|
|
| MD5 |
45f0856bd5590c5c8169c1e7f0e2616a
|
|
| BLAKE2b-256 |
65ec756979596f7ef2cc6ebba92a2b2fc7d5b14f63b909e8c75d11bee0634c34
|
File details
Details for the file fastrapi-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
248af35107f37b6817a7a193df43cccd5a50697888120db1c1a3120a5ccf4ca3
|
|
| MD5 |
42c84f7d7ff92e82b5bcae081a683919
|
|
| BLAKE2b-256 |
f81a349c4107032a89e75ac4248e9b1b6958f95624566f457c871d11d61f211f
|
File details
Details for the file fastrapi-0.1.8-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fastrapi-0.1.8-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75c9c053b61c8c48607af2c20a9efd1fd06e7bcc9d0492c0ccb4dd71ca040766
|
|
| MD5 |
3e6c4adb4f396e84c8754f5a4a107388
|
|
| BLAKE2b-256 |
9bac6ddd6ce415911c822091241a8ec10c17ab4add0c07841789a07d83896075
|
File details
Details for the file fastrapi-0.1.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fastrapi-0.1.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69b22833ca005dfbff84cab61203e8bd530b9699b82ac4638a530e84a8c10768
|
|
| MD5 |
e8a139d39f6a146f15065d0c72918bc6
|
|
| BLAKE2b-256 |
faa4c63ad88b599fc92d362b7b05d8e19a65bba59cec4b0c1452778e217624ca
|
File details
Details for the file fastrapi-0.1.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b8dd2baa6c0f7a5ad864fa730ded64086dee9df9fa910033a17e439d7729cef
|
|
| MD5 |
56b8591bea607c223ac99be313b79601
|
|
| BLAKE2b-256 |
b54205f90c4522db06eaa1bdea9ced241d1de0a13ad6ec38f8f4133df1b7efa6
|
File details
Details for the file fastrapi-0.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
591d38530a86bc016540773351bd305d5f9ff6212f0041575e409af56ca6de33
|
|
| MD5 |
527b3a385c22d7588e62bbdeff771d3c
|
|
| BLAKE2b-256 |
f1c27b582577ad53f7e5d477511915485a3138ccf5f64a470b08a9b4b4e5533a
|
File details
Details for the file fastrapi-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd1a4f148ce869eedee8be9151b1f8060bb24f06c08e039285965170da6ef6ff
|
|
| MD5 |
105de6fd7b1ecb02bcaadb4a4a45f69d
|
|
| BLAKE2b-256 |
a3917aff9712b7ae9654b3051e55e8afd0910b83451ef48f303e1926af2e1a29
|
File details
Details for the file fastrapi-0.1.8-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 769.1 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a9ebe6539dbe252ca4bb37cc92ff8f930462fae515cce601757e8e7523c8b6b
|
|
| MD5 |
0c1ac16b885db3e111af6165f5cf82c2
|
|
| BLAKE2b-256 |
e06d1a09e448d33e54a6807fe5e93751d82a4f876631d97b90c1b6c922d2d580
|
File details
Details for the file fastrapi-0.1.8-cp314-cp314-win32.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp314-cp314-win32.whl
- Upload date:
- Size: 728.6 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be7ba0c425f3d4d2d236aa1fd68d2dbcd9c7446152052cae64ff54d4b781569d
|
|
| MD5 |
299384510e021aedf1b3bf33444e58e3
|
|
| BLAKE2b-256 |
53ddfd981a888ccbff10b944b75ec86578d74a16a964f95d0c3474a4eac700cd
|
File details
Details for the file fastrapi-0.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0a9109620e0cbeadd885b09697ef7d5b05494aac06e9d16a0acc9a013be8de2
|
|
| MD5 |
73cbc4dc245ff05f7ffd3902a9dc6b20
|
|
| BLAKE2b-256 |
31eb05a2f780866a3129c7ef00b4bdace6cb980f237692f0e4df1f2c02607583
|
File details
Details for the file fastrapi-0.1.8-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4c3fabe6471d294f2194308d50cced2c93eabf3d4e2b0fcee299a3f422895c5
|
|
| MD5 |
9c12a5aaddbf2d10ccf8e8e6826235e4
|
|
| BLAKE2b-256 |
58a3f501092b9e5fe494fed81936960e6ce6c3f13d564b58cca9f3fc4bdea7e5
|
File details
Details for the file fastrapi-0.1.8-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 962.4 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc463e7f9ac8330102b7b67aeeb105fe27057ff32c35603868735ed58c58c1c3
|
|
| MD5 |
de96a5e8ce9e2ee24d7d7bf10335df55
|
|
| BLAKE2b-256 |
391c3f2afe5c497e6551e01eb07feb99ceeb8ea78bc2c92c66198accfd0876fc
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
931cae717e4af2f306c590b715193a32a26b2a298b49f254e39af1222e99d03b
|
|
| MD5 |
982e6cc6897d74086413e334346cac6f
|
|
| BLAKE2b-256 |
323ad5b5f6a95b93a3a5e9d5e903b86c26a4bbe3a9d18b861d88696cc1f696e1
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c1017308b72455577c13830f479df2e748ea67e47568d898eb01eb2c9f5d3ac
|
|
| MD5 |
7566acaebd3d25f989a02be55f6dddf0
|
|
| BLAKE2b-256 |
deb30d57a46288f6ff472c554c055ba6d3dff656c1c5571f3fe3d4aa4184e371
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3697ae38019b2f929cd417266e5c9ab021cf06eb7c5057a72025fb95d59aadd1
|
|
| MD5 |
fb1f221a283371cdf7d5dfa3ae94fadc
|
|
| BLAKE2b-256 |
5664f15df7be82346d08b74e541561304e42025fd71555e96f6b13881ae5ffbc
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3591668c3343101fe94669034a4e534131c45b3e7cdd3562bbd86d6330d6dab1
|
|
| MD5 |
60e7a7aad7136b9e65b02ec08979f830
|
|
| BLAKE2b-256 |
d0c6e74bb9c4500b56ec9cae37ae6b27859b677d21f6ad1b90d6aeed6a92ae43
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66fe83a146a5acd77eb17cb9a713bcac6d68d4ca421a95e8b7ccd217db86b251
|
|
| MD5 |
628638a9c869d850ce04d3bebff480a4
|
|
| BLAKE2b-256 |
cf556e7afa65adddaf52dbb2b71a88473b68a9f985d467b80220d27e591c818a
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ddc042a7a4491ff3614b605383811af46514324c8e3fef1fc57225125b7e607
|
|
| MD5 |
f3cac40f28ebd39dacfb829a71925582
|
|
| BLAKE2b-256 |
7b4c76cb2980c596c447bf0ebe1226352ea014dcae1369901694506e9b74e689
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ac612d0dc810c2395947a780bef7631e2e04bf47075f2ce6a7704339b8cee57
|
|
| MD5 |
8a23fa841120b0b626ea75fcb189f548
|
|
| BLAKE2b-256 |
0542ca6dfec9dc8bb27b3f2f4a4a61461b5552063bd2c7e004a10de7e4017f23
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce778802475bd78ba6f5e0506876338f71ee578feeffe5d5e41c9d03b2d14621
|
|
| MD5 |
c6dbabd2f8e6f4942d02a3c17500652d
|
|
| BLAKE2b-256 |
3863f5ba5e079f65b709a9a1efd592e8b136e045c1f3020e14daaa94cfda8576
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 767.3 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
893cde74393f78a8b22a8bee31137c67f6525956991bc0cff01fec62a32dc684
|
|
| MD5 |
9687e3dabd74d7dc0ecde29df6f78dc7
|
|
| BLAKE2b-256 |
c1bdde912a91570aa8bb9b8b40b9eeb87cb07aaa326bffd8b30d4d6c1ec36989
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d34d4bb7b91fff6666dba79cca989859c9b4c3d55c528544ed2768ad9acbd45f
|
|
| MD5 |
6f417291c445acf5ecc6b5f5fda06380
|
|
| BLAKE2b-256 |
df55eb3ef998deba79a45ec139be989b587d7f5d4758293bebc06e167db59626
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0617373802c69c645f03f20de865d61b31d80c140e4dbba4c26c109150332b13
|
|
| MD5 |
48a7ca8135db2c8ce42ea94027fd50b8
|
|
| BLAKE2b-256 |
9ad057a97e2a227b5ae5a951cd365e271cabb2cafa67a8fb4ec79a50c98726a8
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe5655bfe9f61d68a1acec9f712db6404cc17c3e26331a789ba1d60b3cd2deb4
|
|
| MD5 |
34f8baa448039a618c9d50fb61284315
|
|
| BLAKE2b-256 |
cd399b0c4ae48fa8ed927ad87fc35a0ebfed874e17751c99a71e418acf4bcf44
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b4c2b1ee7a5a7dcd0442e34c30915b18d904157f32fa02ff1299d68df197693
|
|
| MD5 |
a4f0bddf310a96a019faf6ec4f408b52
|
|
| BLAKE2b-256 |
ed12ef8b86c735a82adcdcfb7c70bb0d7b708258e7e179bee81881c12a231453
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91e28e1bdf85a37b22d41ca9d88fea33dd587ecce462d6ad6995fcebb89ba079
|
|
| MD5 |
a5f412e3dbab9d40aeb6062d99eda8f9
|
|
| BLAKE2b-256 |
c9529a56f792472746cd083c3b87a8fb9014b88d4330ecbc6187376aff294e33
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
679c11b2bafbae6afb7b1fc5d074f05f4f1f2ecb68e300b397ae2d9f2e9cbd65
|
|
| MD5 |
3bc131049daa4c1fb5c493bd4e6d659f
|
|
| BLAKE2b-256 |
61570b5426b9f9c9eb0ca6108b8e7aa13ceb10c66c25016dd59c0e1b678de18f
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
859f48061f7187984626bb80dd663ecfd53403ac2d04d8f019bd3c2c9f9036b1
|
|
| MD5 |
de5a01c0361a04b9dfc6e4b6c8426863
|
|
| BLAKE2b-256 |
09555c377b59578edb0655a20f01d1c24bf446b4c56c40cf89195ac9b484975d
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f8ac2c9895f470dea42e9a430896030af1286d7571700c3e14d2d62f98e4e5b
|
|
| MD5 |
779ad8d54e6f01e0dd4109fe47f181c8
|
|
| BLAKE2b-256 |
a554b7ef3d0672c16732eec1b9c46b7aec325964de22df9c8dd387afa1db4542
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbd489306cd9a65eb68babda718ef78e48b8860a6d8c866e416bd8d840ce6674
|
|
| MD5 |
703f7b210da4e1bd03e91ed72c12c879
|
|
| BLAKE2b-256 |
9575552b397443c3c62b523e99c2c8482643a6e06a5d8b8826c510e9e19634d8
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20aada96f00678638b00a0d2f1880686063d4789191e382c363b555cb2a4d800
|
|
| MD5 |
be7c24555a256b3c2a1e8196f3a051f2
|
|
| BLAKE2b-256 |
d80389b7a9405b1557d5e4d0466270a06985426e0a63110d48578ab054b72919
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 960.6 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfb1d6ad17c5c00fd3cc9abd8b73bf38f4452bc4dd5679e22d62ae1e3c392b06
|
|
| MD5 |
5403bcfa05615ea2eb00ad10df00e3be
|
|
| BLAKE2b-256 |
eecc00e1fc1897f97063c67ef2b15eb38d8d1384fb85aef123e8fba2588bcfd6
|
File details
Details for the file fastrapi-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff2253f6885ed736190bdc0b520b2ecff32b26a531aea5e785edb50ada10f3d5
|
|
| MD5 |
0072a3aecf60a86a10059edf73ea5cec
|
|
| BLAKE2b-256 |
ac6d5c658c4b8f6386568a49dccfa6625a1f7a78446e6daeb0944f3de1e7ff40
|
File details
Details for the file fastrapi-0.1.8-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 767.7 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25008b169ba078dde2adf6ea0b992b19b8d324ae666cf727a884aae51ca5e309
|
|
| MD5 |
21dac4f95f554314e50fe3e052bc172b
|
|
| BLAKE2b-256 |
12902cf6bfe0f1961f95c06dd4f3c3d07c5f18cae1b312f00427590c5aec76a6
|
File details
Details for the file fastrapi-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6cc2b8a2233610c7358caf82c05fce57d11f8d33f9b4f601dabd932e1392b07
|
|
| MD5 |
d4522cac90b3756b644bd3fb040883cd
|
|
| BLAKE2b-256 |
4c7a5fea98eacfb17b54da79a5c9b191d24a151e236ef420c15b1c3e0868d0d0
|
File details
Details for the file fastrapi-0.1.8-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae648ceb208ba0f2a52f7191a4a6912a15fdf8a6ecc6ef3de3c989758d3031fa
|
|
| MD5 |
afd092ec58a0662399b434ed5b0625d4
|
|
| BLAKE2b-256 |
00b601848b884e381bda4c59cb522c10b4af2d1781b933141c7998fcc0ebc622
|
File details
Details for the file fastrapi-0.1.8-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3abeda01730ce668808bf028ed54c30b1b75aa54ff380584538069bb847be131
|
|
| MD5 |
94a25e5971bfd1b1e4e3e0c858fa1d73
|
|
| BLAKE2b-256 |
880fcb4f5df25b76540c22b973211412a75b89c205d1570fc21c974038a940e2
|
File details
Details for the file fastrapi-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
daee5957094be883e030b4c4ad9b39f4939e7f2f503373329359568112f69b07
|
|
| MD5 |
7582eb1bb7e45f53e8553385f1eaea31
|
|
| BLAKE2b-256 |
7224e82f22bb454933098959cb14f05be6b7576f7f7d78981c065e6c8702d01a
|
File details
Details for the file fastrapi-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd4f6513bea6ce078930f96095825e4c828fbe2321921903c1646f9395ebb2d4
|
|
| MD5 |
a61ec77c717147a8806129de5c98ea18
|
|
| BLAKE2b-256 |
569909b99815baf428bd3eb4a9a9c75871c9a8588ed05768aa754a5f6355be78
|
File details
Details for the file fastrapi-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90213f6b423571a57e4b8414dfa5e735d4fac0945ac8f5df171abf293a6042bf
|
|
| MD5 |
33efbda209599f70f649d65b977e8532
|
|
| BLAKE2b-256 |
bb851265f077f85101baa8f90bbe8e544b1340b0c7f4382f387b68813cc4d5ce
|
File details
Details for the file fastrapi-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3938efc3cf59d8de82cfade4d904a89e737aae8ab3e46faf10286314d5e5b200
|
|
| MD5 |
1f6bb678f9390d5605163bc1504e4acf
|
|
| BLAKE2b-256 |
46cd23cf0077e63c2e0f3016e79cfec0abab33538cb8fda51f56723787049038
|
File details
Details for the file fastrapi-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da11f8c661300c666f7fd4087f01844223e9442349c29913766de9d65686223a
|
|
| MD5 |
bec07ef3efedf64ca89aa401da1b7bdf
|
|
| BLAKE2b-256 |
ea3dde6c394e01327b2d97d0809301e87725a39e23ce1ff2331eb04e6328ea9f
|
File details
Details for the file fastrapi-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c19649c229f4997fafeb4aa860bb3a5f12d06aad1644cc76f52e65c56a18d78b
|
|
| MD5 |
fa016921a552c2d689a865360f584c6b
|
|
| BLAKE2b-256 |
ca25f5226d9b63c1a0ec6c06ea18a8246ebb95d3793cd27aaf2f126e76be176f
|
File details
Details for the file fastrapi-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
007764cd6a64029692b6d6a82232743f2cb9b57733d797458461f546381e1a7a
|
|
| MD5 |
dc78577d383eb40e4645afe97fbb4a01
|
|
| BLAKE2b-256 |
91c9aeaee591839c01d90dd0a8e6bb828d863d7beab3e3c9d48823e4f0cd2733
|
File details
Details for the file fastrapi-0.1.8-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 960.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1de112120c25ee3e15cc71a30dd9d66204f1c7301acf6ad476adb06248b3929f
|
|
| MD5 |
09f0b5ebf470eb238cf3dceda9be4b0e
|
|
| BLAKE2b-256 |
d0597bda1acf96c24889d47f5112ad542e0d413c1819f754c22419254f907c4d
|
File details
Details for the file fastrapi-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c96436874c98820e686b495695494b0df6770ab549618353d039e9052974d45
|
|
| MD5 |
843c383791316e093c560019fb4cb58c
|
|
| BLAKE2b-256 |
321cd22b39836ea702c5be1277d915c2a452b13b1612fa143e700475f171ae0a
|
File details
Details for the file fastrapi-0.1.8-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 769.8 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7ead126c3058c024bf2c2e08ce0f9e479b4d517fd323caca785ceab81ecc8be
|
|
| MD5 |
37eecaf6cb7365a866bf180199be128e
|
|
| BLAKE2b-256 |
f89dcbff1088704094e11a87400f6988af52265081fa1c8028b4f4bba2055291
|
File details
Details for the file fastrapi-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca88835ca8f79a033322e59d354a8f8aaaf796aadf0e8dcca0cddf874483395c
|
|
| MD5 |
6926d87a9a94cc6a54526625ca9da34a
|
|
| BLAKE2b-256 |
20e37bbba47abcfa1d6c19977d6ed4ed7e9d3f6c3e4ee956a87e46a9a374a89b
|
File details
Details for the file fastrapi-0.1.8-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b8a28555cffb7fa5e57bb6d6289d4b8bac0ec5a5f1178af9b7215d6e964c945
|
|
| MD5 |
5675de23daf340b1f17e3127b057cc76
|
|
| BLAKE2b-256 |
73c696ed5c2ba64eec401a812518b66a9448d0ddaadb0b228ba2584cac49b175
|
File details
Details for the file fastrapi-0.1.8-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5153f605468ceea4505e9c3744fa7f3cf721916f3f17a34baee029f4db5d54b4
|
|
| MD5 |
c6b2ea102fe9be1d90c2fba2739a0a69
|
|
| BLAKE2b-256 |
3b1ac94b5cb5d22f3292cd27e767c384dc44ef66318f807ba6c763b0a8af8130
|
File details
Details for the file fastrapi-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d36745c14f6467c1c4df9188d7f80380c1ea2a6604c8e1eb55ee86b6eb17077
|
|
| MD5 |
9ed40e0244b1c621b9297318687acbd5
|
|
| BLAKE2b-256 |
bc3008f21388bde07aaac5daa41b1f09fd6497d93952843edf6b008d5a9c6f33
|
File details
Details for the file fastrapi-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31289445875e95b2196624cbd85c68262627df6d7b9aec2cc43cd048f133125c
|
|
| MD5 |
c43311b95985a8ef792d8513dcd09955
|
|
| BLAKE2b-256 |
04ca64ffbb4a91a44336e3e1abf97eda1d4778f4b3d91e555cbf307cd9c83c65
|
File details
Details for the file fastrapi-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c57d9d045c2f502e4ba2f8cbed3de43f9b62a38bdf4b6e6d0a874a3f01df12e
|
|
| MD5 |
c84f14a0c330e2d314dd829c5057d6e6
|
|
| BLAKE2b-256 |
0db7a3bbdf7f11029098f6a3aed97eb7846d8bd27295406c0150bcf1f46b9908
|
File details
Details for the file fastrapi-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d58dcb85ed614b07622ba0c5f2b43742b4d761176d661b388253567ad83370e
|
|
| MD5 |
5d9572a09c2144a5911338fe1ed9a817
|
|
| BLAKE2b-256 |
354ee3d1f1f37f570473c736a3eb1aae01b0e9db53f63152fb5e0e9926025267
|
File details
Details for the file fastrapi-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21e10df0536c8053e750bd29a2f1f648ae931c7035b10e7733151077e855bc2c
|
|
| MD5 |
9155d6f3a25c859d86dd31d2ac6e30f5
|
|
| BLAKE2b-256 |
f30bab35a66edfc4c38b926a3348eff41a96380ee4189239402963048df6fd19
|
File details
Details for the file fastrapi-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6657b02a5e62c20499b25262fea12ad0a5bb1ff3872f010e2abf98905a34e09
|
|
| MD5 |
00e8710787704481193efd450eced315
|
|
| BLAKE2b-256 |
b389b9f41b452cad4d7e1b41bf98a2964a6f7b9b865f743f635fe8b1e9b5f7f8
|
File details
Details for the file fastrapi-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c50940990de4c5c1f1b5875ee6c78915b07ac6d111532c0f6576bc7e5a4088aa
|
|
| MD5 |
34e4a6be191ae9b0eecd7d790c2b7c8f
|
|
| BLAKE2b-256 |
bedf4a77ea96228a2b1a9f47e6949a09c29833a2c8b06c77d7e3f9ef03932eda
|
File details
Details for the file fastrapi-0.1.8-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 965.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f152b980d03451a7023d740fd8fd99d191d50cb046811ed8e78fbbf8507703b
|
|
| MD5 |
d6843cd99d0a4f41dd1d5c79fcf92a42
|
|
| BLAKE2b-256 |
07f11aeb32fab4fe3d60f09c1c05cc3b39bb7c1863e57419bde2e8c5f18440b3
|
File details
Details for the file fastrapi-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68bb89900b33cdbbfddf154faff3bfc0dcdc738298138474c56f77c307cdb8e7
|
|
| MD5 |
e1280aff799b97183a5e8c44ccc614a4
|
|
| BLAKE2b-256 |
b4575c6d0d4f31c40e05bacfcbd6182515a01e30a8297a9996b2bfda3afe659b
|
File details
Details for the file fastrapi-0.1.8-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 769.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ddeded30a7522219104fb00a21a1d2576538cfcaf58f2b515c92390cd4603c3
|
|
| MD5 |
8c8e7c886b722a9eba8a65d6a9dbaadf
|
|
| BLAKE2b-256 |
9f32863aea905644b9fa85ef33751e7742c91f408fedd91a24df99547c97aaa9
|
File details
Details for the file fastrapi-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
924ea50f007f792356fa77d5ac07f7464d1a675650b0e34de3b0cf728542a0b4
|
|
| MD5 |
74a073750253d552f7184a61cf95abbd
|
|
| BLAKE2b-256 |
4d9fe83ed572f81a210a2c2478b40652309b122f940772901c6b9083e7c50a00
|
File details
Details for the file fastrapi-0.1.8-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c39a4f8c3236ba2bf7ac7c9b0936502424771cb481c38ad72f23d666e32ced4b
|
|
| MD5 |
d84ada2f4c684469d3ebeb9268ff59a2
|
|
| BLAKE2b-256 |
a61f1ea551daa32d52c617b9ad57fcef4ec2a4c926ad2e495b451bb226207922
|
File details
Details for the file fastrapi-0.1.8-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0607d269e25a20e29d5d4601840a5856fee3eb688aaa7d5bb8f11c7327b55da4
|
|
| MD5 |
6b565b251bf4d099396a4d6a3ac5cbe9
|
|
| BLAKE2b-256 |
19dc03899c406ec5fd8caaff0b8ad0308150437d04a5b055b10d39f064cd2df6
|
File details
Details for the file fastrapi-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d26ec44305b2575b6bfaea0ba13ea40b84949dc6f8e4ac785f17c17bbc5d56e
|
|
| MD5 |
bb1b08bab17b5b3c195e8d244ac8b7ad
|
|
| BLAKE2b-256 |
6f72d69f61c26ee3729039e6c9d9a2b4d95ae32fa284e6568b6369fc82fc2ff5
|
File details
Details for the file fastrapi-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25aae5b03abd23ef8ee78682e7e4808b361634280003aba63110a710c8f7690d
|
|
| MD5 |
ee24fca25cbed902a114714e80383253
|
|
| BLAKE2b-256 |
d2d19f71641e1f49caf9890e9f5a2a493845fc378dfe8dd8669ac8c640a9f18f
|
File details
Details for the file fastrapi-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb01795f42aa16e68ef456d4b4da041c349d12c5246373435ad3742544103885
|
|
| MD5 |
16d8d93a91aff7f8fc64695c3508a6d1
|
|
| BLAKE2b-256 |
f5079d5e6b3936de71e535ba462869026e882bb49d23a5c2f33ef6eeafcbe80f
|
File details
Details for the file fastrapi-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24bdaabe355f83a1a039538c660e5f8e0163990b2dd456c1c5b65d251dabe7ef
|
|
| MD5 |
218f6ef2a926d61186ce656cafdc124c
|
|
| BLAKE2b-256 |
5c70b69c9ef2d539c309cb6bdf6b549aaa5cb999f9900f18eb409ea87085ec03
|
File details
Details for the file fastrapi-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fa1544067cf2b447e3a88166b4c345a59ab19858715d683a1667fa3c99458d0
|
|
| MD5 |
f19be6c35f680b84b4f5d0e714a0321b
|
|
| BLAKE2b-256 |
aebc5ab3c041241fcbcf306eab54f4835f45d26a190e07baf7dc8e51680b70f4
|
File details
Details for the file fastrapi-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
043f4b56338629de631704df99c48ff53abade63526611fae42e2493b3278859
|
|
| MD5 |
22451563ca70e68b40dafbd01a1c8ec6
|
|
| BLAKE2b-256 |
027c5449ee2a4c0f9ccdb273980d012824e00e71bade6061c2b652b9de27c6e5
|
File details
Details for the file fastrapi-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9433084c30f00902b0353d6db86cc8a7aac9c454e8def2782f45dc8e42ba465c
|
|
| MD5 |
584226864ff29857d3d4ff0fd8cbd538
|
|
| BLAKE2b-256 |
c72c2e0ef682e6db8c75814ded4bfae4308450bda70066a276c7d6631158f8b8
|
File details
Details for the file fastrapi-0.1.8-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 771.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b0e264bec431c30b4dce877d5dac67813a849c2bf77289305c1c08e1072afa5
|
|
| MD5 |
942ee8da5ba7283013b9ed1176d17609
|
|
| BLAKE2b-256 |
3ea79301e61db4cd5105d01f92a7d20c39bffd0e99edbc1a3041af0a6d027ac1
|
File details
Details for the file fastrapi-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6713fe90a0c8090c5c56d1fa43f6f9e89191f7f0d1f26e43005be7d24782a9ad
|
|
| MD5 |
d5ecd4fe0e43c8e6a5fee478cb3ded25
|
|
| BLAKE2b-256 |
adcdcbeb863d27133af276f894c3c86468eda9d989644c9ee358c770558cbf4d
|
File details
Details for the file fastrapi-0.1.8-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6089bf473c9d67732179eb9ca9e6c7006a3d30d7be293291d263cfa6380f078
|
|
| MD5 |
18591897a3c63b2bb60e0892d6dfe022
|
|
| BLAKE2b-256 |
5e268cf6df719860b1e399535c62b7738a9a74827c4e5d3492a46abfd2281ff0
|
File details
Details for the file fastrapi-0.1.8-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85af6dfee8d0386d5db2881cd2b003e3fe0c6e2f70ed91bbe8138aea7228d580
|
|
| MD5 |
5b3780f20058ac614cf5e6d8c3fd6efa
|
|
| BLAKE2b-256 |
2aed64d44532c03d8aa0e440671dff1b9324f5f9fef2b0bbcf6caaae119a77f9
|
File details
Details for the file fastrapi-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e237567c6623d4cd12fc1ade245ff8299e746dbdb5e817f4527a22181f80817
|
|
| MD5 |
ea05aa83c2f1245ad474e07310023fae
|
|
| BLAKE2b-256 |
a1d914de7f759bcc26bc985aa0cd33e365baa2e83cf5dccdde4cb704bbc7e9ed
|
File details
Details for the file fastrapi-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df9ac956df30a90ba18b4d4b209c36b324255c872ec4ea71c93cd5e8e9408688
|
|
| MD5 |
13cc30df8d86663dedac60bb68ea21a1
|
|
| BLAKE2b-256 |
695858581f67b798e84d857a0fd06243d846a14ec0ab5834c37a160aaa9aa54f
|
File details
Details for the file fastrapi-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a5bfb83b85fbd35339d2ac21c638202e1666532dfc1698bd93dcc1ab6adc3bc
|
|
| MD5 |
de488f341094120da8888ccf44e92a04
|
|
| BLAKE2b-256 |
2f0cd94dc94b2019b07ba75ac33f66e3496ee375623e0f73f9a3eac92d3f4f74
|
File details
Details for the file fastrapi-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
368895f0abc08d7dbd6bacd3c89334338d3d82b5bb4f15fdfd95bd5bd85db8ec
|
|
| MD5 |
67c88eabf92335d01d76d6c421060783
|
|
| BLAKE2b-256 |
e25f0f4675a01076a4706dd9ea007d60e6ea1eca38a25a02148ac965d57159ba
|
File details
Details for the file fastrapi-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e23290aa469891b29fedef84f3a30866f4e3a41ec9f8fd070d3c4dc1dedf096
|
|
| MD5 |
10a4ff59934da71808947ad1a3d89ebd
|
|
| BLAKE2b-256 |
eb4f1ea0015d7fcaaeeada6d549cffce22e42d1a5e846beb196827cb0b30e646
|
File details
Details for the file fastrapi-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
777481550ebcbe734527b2e57bce17970902e90e464f94688f33a0c3091ed28f
|
|
| MD5 |
e188c2caf20666f546420720a344f3b0
|
|
| BLAKE2b-256 |
c9afcfbf7aa86c1ae16b8ce112d44e77e9e6ea34089018bfc08497de899eaf97
|
File details
Details for the file fastrapi-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eeac2b991cad1b8c3b35eaf253d00fd9aa47d1311110c4ccbb415a166e4493c1
|
|
| MD5 |
1fd50aab0afc8cb7a50014e4facc6ad5
|
|
| BLAKE2b-256 |
0ce05376f60a661df482acd604ea337b1d5ba0ffff0c0ade7178e2823592a943
|
File details
Details for the file fastrapi-0.1.8-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7455026dbbfe94dd6ceeedd196b8e08aa05347f0db1b6e49da8fc7569b6b11fd
|
|
| MD5 |
7b24e279ddbb000516b108166dcc1525
|
|
| BLAKE2b-256 |
838c51f5437229979e060c95c011f364c334f2e666f81625ff131589d553adea
|
File details
Details for the file fastrapi-0.1.8-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56a1c820a3ff0a6c155785e31e24672e6b59fe3a592ec9a56176887d8aca0299
|
|
| MD5 |
3943c70fe47612b99c566afad8737831
|
|
| BLAKE2b-256 |
1b339a36da1cc2f294b7667300022e82aa3f69e66837196baf5758ccabfc0229
|
File details
Details for the file fastrapi-0.1.8-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43ebd997ce3031a8b8fd972e12e44b147c50b9f69355b190ee3573cf0f9174ae
|
|
| MD5 |
6d9eaffff06b3ead57096efec3d44fed
|
|
| BLAKE2b-256 |
c12accbc5743ddb0ba5ed60a9315d8ea22ba8b915b08a3eb7f09f469827c10fe
|
File details
Details for the file fastrapi-0.1.8-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b860c22a4b57d78ecc802753a409544c75e7f766a062ed1d61d2c15d9d405a9
|
|
| MD5 |
f8e976d89619db4f4e90f926ffa5c434
|
|
| BLAKE2b-256 |
191071c26ac5702056f638655d9ff3f17203698939b5480077c4c194b4a72bd8
|
File details
Details for the file fastrapi-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb0547145009dde46d6cff5478fd9cc8293d333be95f8400f64bafab7523355e
|
|
| MD5 |
b13875035aa72a12e129c1e5eabc246f
|
|
| BLAKE2b-256 |
000682d6e6d7fb356215679944754d92ec052460d74d9194d88697dfda4f7c92
|
File details
Details for the file fastrapi-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7d168740965778fc332902a1cb451b84a90e45be20c2ffe1ef5b4440b8aa510
|
|
| MD5 |
2f90e5dd1ec5a3f0be19578c8a5b5505
|
|
| BLAKE2b-256 |
2ad7db226ad670837dc3fcf38ebc47b9cd28bff2dc932b14f0c5b5084cc5e38b
|
File details
Details for the file fastrapi-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56966e9f8e5cb8d55a1dcd85f8218f7849e28f166f75f08744b4940027191f63
|
|
| MD5 |
8c75a091fcee5367d980569729576261
|
|
| BLAKE2b-256 |
e0e5194d5be844194f7607b5c989275af5c117c090c5d986cc1ae085f6a123e2
|
File details
Details for the file fastrapi-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
176518c1411c0957dd9ceadb0a9ab045f6192df83a217c3d74955099b45c6d4e
|
|
| MD5 |
b6d4f2477e53a6a34ba6bd1c639fba4a
|
|
| BLAKE2b-256 |
76e41f180ab26726bca5beb9aee9d52c3b8b76866705900d83e0d62e89abfe4d
|
File details
Details for the file fastrapi-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c48369085bdb5de88df7a0e3b607a433510ba5ed5aa30edef28d608c04eeece0
|
|
| MD5 |
0c34e8d5d4f5613440737c86db1d6d5f
|
|
| BLAKE2b-256 |
d98a81c9a6a536ec75e8d391e2102bf357f4658b894cf39f7896c9a8351a5b8d
|
File details
Details for the file fastrapi-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastrapi-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a124d7515051ef1795f30986199372ebeeb563f3316a02a8c123c0868a3fef7b
|
|
| MD5 |
c6c08f7e04aa20598d805503b8b13ac0
|
|
| BLAKE2b-256 |
af7a990a6eaba04b6661aef8a13e7a39b8eed56fe1a80fa50708371f6c12c488
|