Name | fastrapi JSON |
Version |
0.1.4
JSON |
| download |
home_page | None |
Summary | A high-performance Python API framework powered by Rust |
upload_time | 2025-10-07 13:40:04 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | None |
keywords |
fastapi
fastrapi
api
web
framework
fast
rust
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# FastrAPI โก
A blazing-fast web framework that brings Rust performance to Python developers. FastrAPI + Rust = **FastrAPI**.
## โจ Key Features
- ๐ **Blazing Performance**: Powered by Rust and Axum - up to **88x** faster than *FastAPI*
- ๐ **Python-First**: Write familiar Python code with zero Rust knowledge required
- ๐ก๏ธ **Rock-Solid Types**: Built-in type safety inherited from Rust's robust type system
- ๐ **Pydantic Integration**: Full support for Pydantic models for request/response validation
- โก **Async Native**: Tokio-powered async runtime for maximum concurrency
- ๐ชถ **Ultra Lightweight**: Minimal runtime overhead with maximum throughput
- ๐ฏ **Drop-in Replacement**: Compatible with FastAPI's beloved decorator syntax
## Installation
### uv
```bash
uv install fastrapi
```
### pip
```bash
pip install fastrapi
```
## Quick Start
```python
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:
```bash
curl http://127.0.0.1:8080/hello
```
For the `POST` endpoint:
```bash
curl --location 'http://127.0.0.1:8080/echo' \
--header 'Content-Type: application/json' \
--data '{"foo": 123, "bar": [1, 2, 3]}'
```
## Performance
Benchmarks using [k6](https://k6.io/) 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 | **Speed Metric** (req/sec รท avg ms) |
|------------------------------------|-----------------|-------------------|-------------|-----------------------------------|
| **FASTRAPI** | 2.19 | 2.16 | 8881 | **4051** |
| FastAPI + Uvicorn (workers: 1) | 21.08 | 19.67 | 937 | 44 |
| FastAPI + Uvicorn (workers: 16) | 4.84 | 4.17 | 3882 | 802 |
> **TLDR;** FASTRAPI handles thousands of requests per second with ultra-low latency โ making it **~91ร faster** than FastAPI + Guvicorn with 1 worker.
## Current Limitations
- Limited validation features compared to FastAPI's Pydantic integration
- Some advanced features are still in development
## 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](https://github.com/PyO3/pyo3/) and [Axum](https://github.com/tokio-rs/axum/)
Raw data
{
"_id": null,
"home_page": null,
"name": "fastrapi",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "fastapi, fastrapi, api, web, framework, fast, rust",
"author": null,
"author_email": "Preetham <ppmpreetham1@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/3e/c6/770b5962d7ea680e13bce35e4d597b3158eea45f4b64a7c03c15a2411768/fastrapi-0.1.4.tar.gz",
"platform": null,
"description": "# FastrAPI \u26a1\n\nA blazing-fast web framework that brings Rust performance to Python developers. FastrAPI + Rust = **FastrAPI**.\n\n## \u2728 Key Features\n\n- \ud83d\ude80 **Blazing Performance**: Powered by Rust and Axum - up to **88x** faster than *FastAPI*\n- \ud83d\udc0d **Python-First**: Write familiar Python code with zero Rust knowledge required\n- \ud83d\udee1\ufe0f **Rock-Solid Types**: Built-in type safety inherited from Rust's robust type system\n- \ud83d\udcdd **Pydantic Integration**: Full support for Pydantic models for request/response validation\n- \u26a1 **Async Native**: Tokio-powered async runtime for maximum concurrency\n- \ud83e\udeb6 **Ultra Lightweight**: Minimal runtime overhead with maximum throughput\n- \ud83c\udfaf **Drop-in Replacement**: Compatible with FastAPI's beloved decorator syntax\n\n## Installation\n\n### uv\n```bash\nuv install fastrapi\n```\n\n### pip\n```bash\npip install fastrapi\n```\n\n## Quick Start\n\n```python\nfrom fastrapi import FastrAPI\napp = FastrAPI()\n\n@app.get(\"/hello\")\ndef hello():\n return {\"Hello\": \"World\"}\n\n@app.post(\"/echo\")\ndef echo(data):\n return {\"received\": data}\n\nif __name__ == \"__main__\":\n app.serve(\"127.0.0.1\", 8080)\n```\n\n### Now, test it with:\n```bash\ncurl http://127.0.0.1:8080/hello\n```\n\nFor the `POST` endpoint:\n```bash\ncurl --location 'http://127.0.0.1:8080/echo' \\\n--header 'Content-Type: application/json' \\\n--data '{\"foo\": 123, \"bar\": [1, 2, 3]}'\n```\n\n## Performance\nBenchmarks using [k6](https://k6.io/) show it outperforms FastAPI + Guvicorn across multiple worker configurations.\n\n### \ud83d\udda5\ufe0f Test Environment\n- **Kernel:** 6.16.8-arch3-1 \n- **CPU:** AMD Ryzen 7 7735HS (16 cores, 4.83 GHz) \n- **Memory:** 15 GB \n- **Load Test:** 20 Virtual Users (VUs), 30s \n\n### \u26a1 Benchmark Results\n\n| Framework | Avg Latency (ms) | Median Latency (ms) | Requests/sec | **Speed Metric** (req/sec \u00f7 avg ms) |\n|------------------------------------|-----------------|-------------------|-------------|-----------------------------------|\n| **FASTRAPI** | 2.19 | 2.16 | 8881 | **4051** |\n| FastAPI + Uvicorn (workers: 1) | 21.08 | 19.67 | 937 | 44 |\n| FastAPI + Uvicorn (workers: 16) | 4.84 | 4.17 | 3882 | 802 |\n\n\n> **TLDR;** FASTRAPI handles thousands of requests per second with ultra-low latency \u2014 making it **~91\u00d7 faster** than FastAPI + Guvicorn with 1 worker.\n\n## Current Limitations\n- Limited validation features compared to FastAPI's Pydantic integration\n- Some advanced features are still in development\n\n## Contributing\nContributions are welcome! Please feel free to submit a Pull Request.\n\n- Fork the repository\n- Create your feature branch (git checkout -b feature/amazing-feature)\n- Commit your changes (git commit -m 'Add some amazing feature')\n- Push to the branch (git push origin feature/amazing-feature)\n- Open a Pull Request\n\n## License\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Acknowledgments\nInspired by FastAPI\nBuilt with [PyO3](https://github.com/PyO3/pyo3/) and [Axum](https://github.com/tokio-rs/axum/)\n\n",
"bugtrack_url": null,
"license": null,
"summary": "A high-performance Python API framework powered by Rust",
"version": "0.1.4",
"project_urls": {
"bug tracker": "https://github.com/ppmpreetham/fastrapi/issues",
"documentation": "https://github.com/ppmpreetham/fastrapi#readme",
"homepage": "https://github.com/ppmpreetham/fastrapi",
"repository": "https://github.com/ppmpreetham/fastrapi.git"
},
"split_keywords": [
"fastapi",
" fastrapi",
" api",
" web",
" framework",
" fast",
" rust"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "fda958a0c42a206c3696ba44bf2bb9e48dac06eab66bf4a2283f815527acc350",
"md5": "e4c0e6ae06a68bdbf443948e5ea2e3e9",
"sha256": "ea2ddc82338ad39324e641e84b476742295b29aa5993a084ff601119bfd6a140"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e4c0e6ae06a68bdbf443948e5ea2e3e9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1007228,
"upload_time": "2025-10-07T13:37:40",
"upload_time_iso_8601": "2025-10-07T13:37:40.894957Z",
"url": "https://files.pythonhosted.org/packages/fd/a9/58a0c42a206c3696ba44bf2bb9e48dac06eab66bf4a2283f815527acc350/fastrapi-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "500a27657ed8b36eb58b6c5394d199e8697caf2fdf20264f0570bb1fd84d8769",
"md5": "c70fb7a10f93a3c4df6c453401d361af",
"sha256": "314e9c910d6534258aa5e185d18b2942ddd9132bf12829126ca9e800d04548dc"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "c70fb7a10f93a3c4df6c453401d361af",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1009803,
"upload_time": "2025-10-07T13:37:55",
"upload_time_iso_8601": "2025-10-07T13:37:55.545716Z",
"url": "https://files.pythonhosted.org/packages/50/0a/27657ed8b36eb58b6c5394d199e8697caf2fdf20264f0570bb1fd84d8769/fastrapi-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c7745f18c235c3f15b17cbca576d1e810477e06315f3de1d5f2dc62de9a3157b",
"md5": "f60d3d269021c905c04bf4fed6e105c9",
"sha256": "fd84caf029c288672e1206ae3cb4b9a669e011c23d44ce1b8a00c2bff6e5edf1"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f60d3d269021c905c04bf4fed6e105c9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1095622,
"upload_time": "2025-10-07T13:38:36",
"upload_time_iso_8601": "2025-10-07T13:38:36.097033Z",
"url": "https://files.pythonhosted.org/packages/c7/74/5f18c235c3f15b17cbca576d1e810477e06315f3de1d5f2dc62de9a3157b/fastrapi-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "755122e16baaf7baf98ebf0d7cd6f1a9578d9cf6459ff17d468fe9b76f6e02f0",
"md5": "128bbc2b2c796c71fb1c3f0dc90df94a",
"sha256": "91cd395710ccaefcd6360ae30711c546433d04daa163fb3a3b09322ff671a649"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "128bbc2b2c796c71fb1c3f0dc90df94a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1222509,
"upload_time": "2025-10-07T13:38:08",
"upload_time_iso_8601": "2025-10-07T13:38:08.754083Z",
"url": "https://files.pythonhosted.org/packages/75/51/22e16baaf7baf98ebf0d7cd6f1a9578d9cf6459ff17d468fe9b76f6e02f0/fastrapi-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c02e4c8265839a6e091591ccd4334b7dd93e9c6acfdeb3aba9b3e600266f5c81",
"md5": "906d8fcbab1c0e7db3dc373ec98ba580",
"sha256": "616d44f8c55f5b1e54f97ed3a57744ef7d730416484e3a8e5cd567422a47a04f"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "906d8fcbab1c0e7db3dc373ec98ba580",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1061223,
"upload_time": "2025-10-07T13:38:22",
"upload_time_iso_8601": "2025-10-07T13:38:22.398219Z",
"url": "https://files.pythonhosted.org/packages/c0/2e/4c8265839a6e091591ccd4334b7dd93e9c6acfdeb3aba9b3e600266f5c81/fastrapi-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1328d333b68d6d08a957e6b80874e62d0e93eca2fbb676cb30ec94e395be3ddf",
"md5": "604ef6faeef366f22bee3f2937c1c559",
"sha256": "0d619bf9afbc710c5524cb955d8e18d36efd12d2df1b4f69afc6e51ffc8077b9"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "604ef6faeef366f22bee3f2937c1c559",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1015574,
"upload_time": "2025-10-07T13:38:47",
"upload_time_iso_8601": "2025-10-07T13:38:47.293739Z",
"url": "https://files.pythonhosted.org/packages/13/28/d333b68d6d08a957e6b80874e62d0e93eca2fbb676cb30ec94e395be3ddf/fastrapi-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "459c152d34d5f6d5ed7c8f9a097c08d807973f6755296dfdd82a3a6ea4dcc4da",
"md5": "7f4e7619f04bef442699a333334ec018",
"sha256": "e37201737c08c6252fda67e45e66c418490ba165ac7be273dd6122a5f696ef84"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7f4e7619f04bef442699a333334ec018",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1184517,
"upload_time": "2025-10-07T13:39:06",
"upload_time_iso_8601": "2025-10-07T13:39:06.346838Z",
"url": "https://files.pythonhosted.org/packages/45/9c/152d34d5f6d5ed7c8f9a097c08d807973f6755296dfdd82a3a6ea4dcc4da/fastrapi-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "483371d7b981cfab98ddb69ccea33877949aa1d1d8f7dd40f128a2b5d1b61888",
"md5": "fb88aaa1c5f1d26b68bb18c565affdff",
"sha256": "1ec55b83c63bc52737486a1a3ad457011295971cfcc917d7523bd688e13d1297"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "fb88aaa1c5f1d26b68bb18c565affdff",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1271411,
"upload_time": "2025-10-07T13:39:21",
"upload_time_iso_8601": "2025-10-07T13:39:21.009745Z",
"url": "https://files.pythonhosted.org/packages/48/33/71d7b981cfab98ddb69ccea33877949aa1d1d8f7dd40f128a2b5d1b61888/fastrapi-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "226b36bb832f9b195cc23a49623240f131a3fad7ac30d566510265894cb2cd53",
"md5": "dc649198e814842e86e1379da5f0e47f",
"sha256": "e8d1099884d5c2fb32dfdc7fc671cb6b666f147402075b7be803842de7d5a162"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "dc649198e814842e86e1379da5f0e47f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1232668,
"upload_time": "2025-10-07T13:39:36",
"upload_time_iso_8601": "2025-10-07T13:39:36.600666Z",
"url": "https://files.pythonhosted.org/packages/22/6b/36bb832f9b195cc23a49623240f131a3fad7ac30d566510265894cb2cd53/fastrapi-0.1.4-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "09e63378774a248d2fff9482b56703e76e0105da501be5930ab72f355631e43d",
"md5": "239375bd47ee3d4b32cff985cb2ca270",
"sha256": "7ede6165e6f8d04a5f9b82c28c087b4898000b58bb0b1e7a129c158df999f0db"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "239375bd47ee3d4b32cff985cb2ca270",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1184049,
"upload_time": "2025-10-07T13:39:50",
"upload_time_iso_8601": "2025-10-07T13:39:50.753576Z",
"url": "https://files.pythonhosted.org/packages/09/e6/3378774a248d2fff9482b56703e76e0105da501be5930ab72f355631e43d/fastrapi-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e62dd24138598b63ac20a97e1eb8481ed371b78aea7513dc584f32a5ffb72b64",
"md5": "d3d9184f1b7b34bcd2b240c53586f760",
"sha256": "6b6f19fb3f3aa69313cba193fb6e18b108caf88b227dbb6b90b5a60b963807e3"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "d3d9184f1b7b34bcd2b240c53586f760",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 713883,
"upload_time": "2025-10-07T13:40:05",
"upload_time_iso_8601": "2025-10-07T13:40:05.625672Z",
"url": "https://files.pythonhosted.org/packages/e6/2d/d24138598b63ac20a97e1eb8481ed371b78aea7513dc584f32a5ffb72b64/fastrapi-0.1.4-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "11c908b1099cda9d606ec72cb4909357716e534dc3f47c3e5f5149dfd3e7c6c0",
"md5": "0a46f961ad0a10d2b0e8df1580f22ea2",
"sha256": "708af4d6e15c47240039e5addadbbdb57e94d467e7ad5d4abd8eb9bc1212fa51"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "0a46f961ad0a10d2b0e8df1580f22ea2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 930576,
"upload_time": "2025-10-07T13:39:02",
"upload_time_iso_8601": "2025-10-07T13:39:02.293812Z",
"url": "https://files.pythonhosted.org/packages/11/c9/08b1099cda9d606ec72cb4909357716e534dc3f47c3e5f5149dfd3e7c6c0/fastrapi-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f43bb6df51946f4c25d387c87ab7763e8e8fcc855be2e1fe686de66ed2b609c5",
"md5": "336e3e4f979856885b0435c9562e23e3",
"sha256": "b5ff2be18a41754a1108e864ab619aed7dafc666673ad5a109fca138291f9ace"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "336e3e4f979856885b0435c9562e23e3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 897651,
"upload_time": "2025-10-07T13:38:57",
"upload_time_iso_8601": "2025-10-07T13:38:57.561557Z",
"url": "https://files.pythonhosted.org/packages/f4/3b/b6df51946f4c25d387c87ab7763e8e8fcc855be2e1fe686de66ed2b609c5/fastrapi-0.1.4-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a5e9d9a1df7f12b77e8afc1cb19065e94fae7b9ce6f4ebb94c150520d2d640fd",
"md5": "2f95073b1040322d88afba2e4a361154",
"sha256": "b46021269ebc4ee110b14a051ba2901c6fbd16a51248ae96318cbacc37e82bcb"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2f95073b1040322d88afba2e4a361154",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1005357,
"upload_time": "2025-10-07T13:37:42",
"upload_time_iso_8601": "2025-10-07T13:37:42.651615Z",
"url": "https://files.pythonhosted.org/packages/a5/e9/d9a1df7f12b77e8afc1cb19065e94fae7b9ce6f4ebb94c150520d2d640fd/fastrapi-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "089cb663ec1154db57aba006ef5120dbb81f88e8e30ff3a1dad2de2d19ed496b",
"md5": "4108c2db975dd78b8f939340b89cfbee",
"sha256": "2c590a5962606937107f93457b1bab29ea1ac9015cc497d81adf8b0777653130"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "4108c2db975dd78b8f939340b89cfbee",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1011961,
"upload_time": "2025-10-07T13:37:57",
"upload_time_iso_8601": "2025-10-07T13:37:57.137946Z",
"url": "https://files.pythonhosted.org/packages/08/9c/b663ec1154db57aba006ef5120dbb81f88e8e30ff3a1dad2de2d19ed496b/fastrapi-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "181a0997d9c558638bc8f11c20ba609a2081174cf4e92da68e413a023b31e715",
"md5": "f720c2959921d2fcf79e8f37dc6fe27b",
"sha256": "041ff79801c06c7be95044089743b43969e8cf6e37a914e4d51e0ae1e6d4f24c"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f720c2959921d2fcf79e8f37dc6fe27b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1094407,
"upload_time": "2025-10-07T13:38:37",
"upload_time_iso_8601": "2025-10-07T13:38:37.281021Z",
"url": "https://files.pythonhosted.org/packages/18/1a/0997d9c558638bc8f11c20ba609a2081174cf4e92da68e413a023b31e715/fastrapi-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "85aa0f617f03f7b96027a661bc9aa16e0d2d1dd29603706da53a4727924e3f04",
"md5": "ddd431d480c585f75d20a27aa5e51cc0",
"sha256": "428877848c89fcb5b6f117232343dda40b63a7ab358c802eff1891ba8834a387"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "ddd431d480c585f75d20a27aa5e51cc0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1221990,
"upload_time": "2025-10-07T13:38:10",
"upload_time_iso_8601": "2025-10-07T13:38:10.557000Z",
"url": "https://files.pythonhosted.org/packages/85/aa/0f617f03f7b96027a661bc9aa16e0d2d1dd29603706da53a4727924e3f04/fastrapi-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c9a301dd1ec19e2012efcc501a6f1b3c4fc51dec7820a231282d141c69c4607",
"md5": "46bab4bfdaceed56e49729445cddf6c9",
"sha256": "ca83915f8f0cee978f9f42cfcf7968632c601353e64d9efa876aed8130276650"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "46bab4bfdaceed56e49729445cddf6c9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1060457,
"upload_time": "2025-10-07T13:38:23",
"upload_time_iso_8601": "2025-10-07T13:38:23.926809Z",
"url": "https://files.pythonhosted.org/packages/7c/9a/301dd1ec19e2012efcc501a6f1b3c4fc51dec7820a231282d141c69c4607/fastrapi-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c67eea09f94bf4563076d142e3f31f7e5da9048120bfb515bfbdc4b1e141075f",
"md5": "0bc732e0d79edb851e339f28bc054f68",
"sha256": "5f9da86bd15ffa65da7f2b8390f99dae992d76480376102c2c77ef119a9b0f6f"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0bc732e0d79edb851e339f28bc054f68",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1018729,
"upload_time": "2025-10-07T13:38:48",
"upload_time_iso_8601": "2025-10-07T13:38:48.716140Z",
"url": "https://files.pythonhosted.org/packages/c6/7e/ea09f94bf4563076d142e3f31f7e5da9048120bfb515bfbdc4b1e141075f/fastrapi-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0d963ad14a1fe5114ad3598ea7ee2db5354891157a122c600d6ceeae43a50683",
"md5": "663adca0cbebcf478ec84ce952df91ba",
"sha256": "4a72471598f46d81b083fff63cba56fda398d909824c37a4313b05b2e0131923"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "663adca0cbebcf478ec84ce952df91ba",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1182579,
"upload_time": "2025-10-07T13:39:07",
"upload_time_iso_8601": "2025-10-07T13:39:07.758161Z",
"url": "https://files.pythonhosted.org/packages/0d/96/3ad14a1fe5114ad3598ea7ee2db5354891157a122c600d6ceeae43a50683/fastrapi-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f6631835fb82105931f5713cdb4ced000abd76870ee0b1d3ca509c629fdfa771",
"md5": "e4eb01552096278e77fcaa69e1d77dda",
"sha256": "423a89269201d057c7d14c4583df4c8839c07a5f4f1e10b502bca1639d5dd15b"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "e4eb01552096278e77fcaa69e1d77dda",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1273029,
"upload_time": "2025-10-07T13:39:22",
"upload_time_iso_8601": "2025-10-07T13:39:22.641328Z",
"url": "https://files.pythonhosted.org/packages/f6/63/1835fb82105931f5713cdb4ced000abd76870ee0b1d3ca509c629fdfa771/fastrapi-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "716f3f83972d7bbf964b13ff3ae3c2ec84b808e5255dbf68748436916dd3ee70",
"md5": "ff56b3a85214972915457774cf3aba4e",
"sha256": "13077e0adc9a6c4eea2c9853ef58bac0f448dbb1c1829e9da1d0fb9e5ea6830a"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "ff56b3a85214972915457774cf3aba4e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1232509,
"upload_time": "2025-10-07T13:39:38",
"upload_time_iso_8601": "2025-10-07T13:39:38.128898Z",
"url": "https://files.pythonhosted.org/packages/71/6f/3f83972d7bbf964b13ff3ae3c2ec84b808e5255dbf68748436916dd3ee70/fastrapi-0.1.4-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de2b19274be61c5cd36289f6db7ce1642775ee96eae81f3009219519319161db",
"md5": "e022117f361c39a5d8920c27c65b0f9d",
"sha256": "3e4a596bba29bd5e74e6c35a3d4d8d2d86b1f46f441129abf754e4b8d89f26ea"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e022117f361c39a5d8920c27c65b0f9d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1187070,
"upload_time": "2025-10-07T13:39:51",
"upload_time_iso_8601": "2025-10-07T13:39:51.925280Z",
"url": "https://files.pythonhosted.org/packages/de/2b/19274be61c5cd36289f6db7ce1642775ee96eae81f3009219519319161db/fastrapi-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64232d69b3a334294a3131e9c727b24fa1e000fcbd32b20f68c604cfa13c5a23",
"md5": "e73d7867a57dd283ee5ca6b610c6fdc7",
"sha256": "04a0b6ba87c09b4fe225f8a0d62310b35c19c9a0921268bcad82e1502eb702f8"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "e73d7867a57dd283ee5ca6b610c6fdc7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 712590,
"upload_time": "2025-10-07T13:40:06",
"upload_time_iso_8601": "2025-10-07T13:40:06.858337Z",
"url": "https://files.pythonhosted.org/packages/64/23/2d69b3a334294a3131e9c727b24fa1e000fcbd32b20f68c604cfa13c5a23/fastrapi-0.1.4-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3427c8391da6264fb2a915e75c30f1916ed01fa3fec2f02cb383584043bab5d2",
"md5": "37604113224d88b466868e05294c4265",
"sha256": "c4a64efeef5266500e557df73e2857a115b88c3b6591dc755b248878607d0e9c"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "37604113224d88b466868e05294c4265",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 927451,
"upload_time": "2025-10-07T13:39:03",
"upload_time_iso_8601": "2025-10-07T13:39:03.448699Z",
"url": "https://files.pythonhosted.org/packages/34/27/c8391da6264fb2a915e75c30f1916ed01fa3fec2f02cb383584043bab5d2/fastrapi-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cc8a8877f4c344c4115ce33317b3ded3eaaff02971b5a6200aa5e00826843045",
"md5": "0554b4f238edb05d2e279c7595253ce2",
"sha256": "b96d39add6edff11e430483c186a43ea0b61aaaa33c736a8205d5dbe7ee31cc1"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0554b4f238edb05d2e279c7595253ce2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 896917,
"upload_time": "2025-10-07T13:38:58",
"upload_time_iso_8601": "2025-10-07T13:38:58.770827Z",
"url": "https://files.pythonhosted.org/packages/cc/8a/8877f4c344c4115ce33317b3ded3eaaff02971b5a6200aa5e00826843045/fastrapi-0.1.4-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "986ac86aa19c854c61a14c18244cb96a70b9bfdc9724d1d741e4ac057ede34dd",
"md5": "01e1ffc4e77a3ab634a3c87e949a4c89",
"sha256": "26b8b174a77e394ed0355d6431db8ff27a528cf141825fe07ff63a600378f419"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "01e1ffc4e77a3ab634a3c87e949a4c89",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1010037,
"upload_time": "2025-10-07T13:37:44",
"upload_time_iso_8601": "2025-10-07T13:37:44.204147Z",
"url": "https://files.pythonhosted.org/packages/98/6a/c86aa19c854c61a14c18244cb96a70b9bfdc9724d1d741e4ac057ede34dd/fastrapi-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f392efa35b7a51f2d4fc86a9e53c0b7098d8893dfa228066a793ec3e3bce1fe",
"md5": "a8abecd059f7f731111a646aed10f056",
"sha256": "9ff0d13e36004ec6d7f6d10bb7cd300c118689b7336689c05175ef859bbe0270"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "a8abecd059f7f731111a646aed10f056",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1011097,
"upload_time": "2025-10-07T13:37:58",
"upload_time_iso_8601": "2025-10-07T13:37:58.670131Z",
"url": "https://files.pythonhosted.org/packages/0f/39/2efa35b7a51f2d4fc86a9e53c0b7098d8893dfa228066a793ec3e3bce1fe/fastrapi-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2481ca34378a7a333302fc6d03490c38311c2fa1382fe66630d704c93f8e6745",
"md5": "2107034a7cf914da2ad7e4bd630badd2",
"sha256": "92f42040fec3b7956481d78ff4a3d744b1872baeb64596e469391babc0d8c15a"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2107034a7cf914da2ad7e4bd630badd2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1094509,
"upload_time": "2025-10-07T13:38:38",
"upload_time_iso_8601": "2025-10-07T13:38:38.628549Z",
"url": "https://files.pythonhosted.org/packages/24/81/ca34378a7a333302fc6d03490c38311c2fa1382fe66630d704c93f8e6745/fastrapi-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0a2947099e8b5b3ff8eeae943ecd7b6b9537522dfd8ebd7c0f91a2611a9e928f",
"md5": "f4fc6660318d34f1a0aea6eb0899785e",
"sha256": "db68df6b65f4187afc1e4a3c03d53f3bb8093855670c23434e91b9ae21dbbf18"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f4fc6660318d34f1a0aea6eb0899785e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1226352,
"upload_time": "2025-10-07T13:38:12",
"upload_time_iso_8601": "2025-10-07T13:38:12.331204Z",
"url": "https://files.pythonhosted.org/packages/0a/29/47099e8b5b3ff8eeae943ecd7b6b9537522dfd8ebd7c0f91a2611a9e928f/fastrapi-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "92bbdfcc191adb5e3e393545984aa356760ef25b4cbea6c6cacb728e7132af08",
"md5": "dca307bbd3db1034567f42925957fb5a",
"sha256": "a1973bd4e27211c0c11925b9e2e7053d36fc4ed6a909fdc9956a644601b1df27"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "dca307bbd3db1034567f42925957fb5a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1061745,
"upload_time": "2025-10-07T13:38:25",
"upload_time_iso_8601": "2025-10-07T13:38:25.453415Z",
"url": "https://files.pythonhosted.org/packages/92/bb/dfcc191adb5e3e393545984aa356760ef25b4cbea6c6cacb728e7132af08/fastrapi-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6f954cce8015ef4e87bf69274cc42c493d1665a2a3a84daa7afc677398a8ffaf",
"md5": "6b81e5354bcc2e70110bf38623cb8c5b",
"sha256": "125e25cdbc07258c7e84a355d506c0ebf90fc90af85f169c8caad3ddb94e64c0"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6b81e5354bcc2e70110bf38623cb8c5b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1016841,
"upload_time": "2025-10-07T13:38:49",
"upload_time_iso_8601": "2025-10-07T13:38:49.910251Z",
"url": "https://files.pythonhosted.org/packages/6f/95/4cce8015ef4e87bf69274cc42c493d1665a2a3a84daa7afc677398a8ffaf/fastrapi-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8fb3c266c95159305d249ff5a1221d3cf7cb5f6c35029f0badd289d3d26ed8c0",
"md5": "66d34bcc12d7119d39f114727401faa2",
"sha256": "7eba80c52a98d0a7ac03ecd280b3a3c04b0f31fa207a2685dfa645b81b931c0c"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "66d34bcc12d7119d39f114727401faa2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1187257,
"upload_time": "2025-10-07T13:39:09",
"upload_time_iso_8601": "2025-10-07T13:39:09.473331Z",
"url": "https://files.pythonhosted.org/packages/8f/b3/c266c95159305d249ff5a1221d3cf7cb5f6c35029f0badd289d3d26ed8c0/fastrapi-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2bcf5ec1d20e6edf27eea817f863dceedfea809571cc199b0ec5c2f039e02903",
"md5": "0df52ca9713fe7decc0eb8a97885029b",
"sha256": "fc5189d9ef87680fed4b51b8449aeb51a8a72bb888d46fe4815bd8fc7e6c9595"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "0df52ca9713fe7decc0eb8a97885029b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1272386,
"upload_time": "2025-10-07T13:39:24",
"upload_time_iso_8601": "2025-10-07T13:39:24.709760Z",
"url": "https://files.pythonhosted.org/packages/2b/cf/5ec1d20e6edf27eea817f863dceedfea809571cc199b0ec5c2f039e02903/fastrapi-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fad8620f47fecb91a66da7d1cc847c672aee4aef5e253222a5734e9c35e74c17",
"md5": "aab2c915b297bfd07faacf4538fddbdd",
"sha256": "f9df507bce443002a65a5913f32b7878c1ef2d6c81067b5599c2ae5b2d82bee3"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "aab2c915b297bfd07faacf4538fddbdd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1231607,
"upload_time": "2025-10-07T13:39:39",
"upload_time_iso_8601": "2025-10-07T13:39:39.469825Z",
"url": "https://files.pythonhosted.org/packages/fa/d8/620f47fecb91a66da7d1cc847c672aee4aef5e253222a5734e9c35e74c17/fastrapi-0.1.4-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f5c9a0a72e6bd727edf20aa8f07794bd5d1cc3cd86858bfb0f40f9a097fa2e1d",
"md5": "7cd3775e9449d446bd4d3de7afc5a3e7",
"sha256": "91148a0bacf748d28f50f784f7eba348f1b8107e35e48ab04062fde43435610b"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "7cd3775e9449d446bd4d3de7afc5a3e7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1185266,
"upload_time": "2025-10-07T13:39:53",
"upload_time_iso_8601": "2025-10-07T13:39:53.317732Z",
"url": "https://files.pythonhosted.org/packages/f5/c9/a0a72e6bd727edf20aa8f07794bd5d1cc3cd86858bfb0f40f9a097fa2e1d/fastrapi-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b1bad265b4e922450791e4ae34f68a994f58543701e99f0ef10384ba7516aabc",
"md5": "062dbade348394530a620024dce0d870",
"sha256": "f67d64ac75a7b196b13724a1adaf276d978af6b3c325bd12d40f6da01b8df12f"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "062dbade348394530a620024dce0d870",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 711762,
"upload_time": "2025-10-07T13:40:08",
"upload_time_iso_8601": "2025-10-07T13:40:08.468289Z",
"url": "https://files.pythonhosted.org/packages/b1/ba/d265b4e922450791e4ae34f68a994f58543701e99f0ef10384ba7516aabc/fastrapi-0.1.4-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d5daa37da000c6746dd1922d0af30659293c356f9171291b2cee80dfac743e63",
"md5": "c78fa87c8866317a3b43aceca14a3421",
"sha256": "9b96830e952bab712016008dad2ee516177b26f6b6d78ccdd9939066e59b53bb"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "c78fa87c8866317a3b43aceca14a3421",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 927192,
"upload_time": "2025-10-07T13:39:04",
"upload_time_iso_8601": "2025-10-07T13:39:04.784452Z",
"url": "https://files.pythonhosted.org/packages/d5/da/a37da000c6746dd1922d0af30659293c356f9171291b2cee80dfac743e63/fastrapi-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "acc1e052d998e549df45375e5cb81ed9798703fc41066c09bc82cf3f9db59c60",
"md5": "73cf9ecc3cd47539897d97296a01c505",
"sha256": "ab651f830028237ca61b1cfb20f48b6726df26cb45dcfcbae6033037d6cb2ff4"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "73cf9ecc3cd47539897d97296a01c505",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 896614,
"upload_time": "2025-10-07T13:39:00",
"upload_time_iso_8601": "2025-10-07T13:39:00.346554Z",
"url": "https://files.pythonhosted.org/packages/ac/c1/e052d998e549df45375e5cb81ed9798703fc41066c09bc82cf3f9db59c60/fastrapi-0.1.4-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe2b768a4c9744bc59737bdd74ff6e2449d9aa72b8b9f60d74e16ca333c1c99a",
"md5": "da53aa7f04562c642f3e5a5fccd20a02",
"sha256": "2de36af08efef9b49dfe3102e8b2c3fc6800fedf27b7984d0aa1e0b1ae8ae31a"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "da53aa7f04562c642f3e5a5fccd20a02",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1009980,
"upload_time": "2025-10-07T13:37:45",
"upload_time_iso_8601": "2025-10-07T13:37:45.672328Z",
"url": "https://files.pythonhosted.org/packages/fe/2b/768a4c9744bc59737bdd74ff6e2449d9aa72b8b9f60d74e16ca333c1c99a/fastrapi-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c88f5b0c434b11a8996fa9a542bf60482fdbf4ef9848f591c13b453ed38d9125",
"md5": "1798213725c0386b244740b0447aa517",
"sha256": "8be279d700bcb69698e1ae718a28b3b68935184fa16d22177c6eb2fb5829e4e1"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "1798213725c0386b244740b0447aa517",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1011096,
"upload_time": "2025-10-07T13:37:59",
"upload_time_iso_8601": "2025-10-07T13:37:59.843224Z",
"url": "https://files.pythonhosted.org/packages/c8/8f/5b0c434b11a8996fa9a542bf60482fdbf4ef9848f591c13b453ed38d9125/fastrapi-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "73d7958368a41e295401431d907580eca00839fd8a106cbffe5c6c76764bfdba",
"md5": "a841ff19eed4e8cffc51d35536f504e9",
"sha256": "5554befa92fa9c8400938a82b625731e0d6315b2213ee4393bd5b7323c76e2dd"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a841ff19eed4e8cffc51d35536f504e9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1094616,
"upload_time": "2025-10-07T13:38:39",
"upload_time_iso_8601": "2025-10-07T13:38:39.799770Z",
"url": "https://files.pythonhosted.org/packages/73/d7/958368a41e295401431d907580eca00839fd8a106cbffe5c6c76764bfdba/fastrapi-0.1.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4f845868c1507644b8664eb48a1c5479134988bc7dd65e243ad0873451d95c01",
"md5": "19b6aa72ef0c619ff47bd3997c236388",
"sha256": "94b161a9ceafc82cc6de99e1e16c66379111a7224f2200d6749b27ac24b65c81"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "19b6aa72ef0c619ff47bd3997c236388",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1225131,
"upload_time": "2025-10-07T13:38:13",
"upload_time_iso_8601": "2025-10-07T13:38:13.509019Z",
"url": "https://files.pythonhosted.org/packages/4f/84/5868c1507644b8664eb48a1c5479134988bc7dd65e243ad0873451d95c01/fastrapi-0.1.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c4f3e5136d585dffca06f498c8ca8ee6d74f072c81c3913b33fe860d743c6eb0",
"md5": "1342662b8993883787931155061b4004",
"sha256": "a3d24fdcb4290e4c4af093d4a5b6fffbb55a1ca5ced6e3ebd3a48dd1c8cf8bd9"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1342662b8993883787931155061b4004",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1062234,
"upload_time": "2025-10-07T13:38:26",
"upload_time_iso_8601": "2025-10-07T13:38:26.619919Z",
"url": "https://files.pythonhosted.org/packages/c4/f3/e5136d585dffca06f498c8ca8ee6d74f072c81c3913b33fe860d743c6eb0/fastrapi-0.1.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c0a8300b8e24752e2603ae99b670580be9e9d21bcec8de04dc9c45188f2dff8f",
"md5": "71a3415f6989327c0cdcc75c62a10395",
"sha256": "5166c9e3ff97ab764051fa7fa4990bf19efe170bdf664610c4012c02ee3b9efd"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "71a3415f6989327c0cdcc75c62a10395",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1016163,
"upload_time": "2025-10-07T13:38:51",
"upload_time_iso_8601": "2025-10-07T13:38:51.086732Z",
"url": "https://files.pythonhosted.org/packages/c0/a8/300b8e24752e2603ae99b670580be9e9d21bcec8de04dc9c45188f2dff8f/fastrapi-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3532efbafb67c16116ad6adaa33e95ebc27c43f5a5522bd88c93d54136cd01e5",
"md5": "ced531005e0f5a911c051178c68041a4",
"sha256": "7e18114f25b56152381e7b0f53a6fec8f4d33fb5507983549b2b1d9d65c31205"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ced531005e0f5a911c051178c68041a4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1186788,
"upload_time": "2025-10-07T13:39:10",
"upload_time_iso_8601": "2025-10-07T13:39:10.781694Z",
"url": "https://files.pythonhosted.org/packages/35/32/efbafb67c16116ad6adaa33e95ebc27c43f5a5522bd88c93d54136cd01e5/fastrapi-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "17298ab82068a98a264845722bac9e1eab8f15084f32e4c997083a4e89f5a68e",
"md5": "6283910c36dd9ef4eaec9c2d8b93c50f",
"sha256": "2cffc1d06f25ea3885ab66055b46ccaa2847a75ffac268932afb4b2c074e2f2c"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "6283910c36dd9ef4eaec9c2d8b93c50f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1272444,
"upload_time": "2025-10-07T13:39:26",
"upload_time_iso_8601": "2025-10-07T13:39:26.399222Z",
"url": "https://files.pythonhosted.org/packages/17/29/8ab82068a98a264845722bac9e1eab8f15084f32e4c997083a4e89f5a68e/fastrapi-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0fe58550c579fcf5ada7e850efc4f786cb0bb9e1b9122505a56ea84212b2ad74",
"md5": "be3b19148fe494a2b7e82c52882a3e10",
"sha256": "23ef49b6a14c0fd434adbcb43f0797a1d0d5293b75b735f10e797039021f54c8"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "be3b19148fe494a2b7e82c52882a3e10",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1230921,
"upload_time": "2025-10-07T13:39:40",
"upload_time_iso_8601": "2025-10-07T13:39:40.718461Z",
"url": "https://files.pythonhosted.org/packages/0f/e5/8550c579fcf5ada7e850efc4f786cb0bb9e1b9122505a56ea84212b2ad74/fastrapi-0.1.4-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a1cfff9532c9ea3553057235714ec48cd80085f925788335085d43dc2e214c0",
"md5": "cedf00ea5908a2df655b6c59c4491595",
"sha256": "084afcb2abb1ef9cf350298d51be7c6e70569c20a4caf524504db4212215abf4"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "cedf00ea5908a2df655b6c59c4491595",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1184946,
"upload_time": "2025-10-07T13:39:54",
"upload_time_iso_8601": "2025-10-07T13:39:54.718857Z",
"url": "https://files.pythonhosted.org/packages/1a/1c/fff9532c9ea3553057235714ec48cd80085f925788335085d43dc2e214c0/fastrapi-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c6f0a8483d93dbe0056bde625367a13099325b3af926a1d7b2f57d900e9c52df",
"md5": "d3e1602a06846c656e791a3eb2ae5c9c",
"sha256": "7b92eb1d4e3e7c1ce5d002ccd8193821eea71fefc2ede8ace74331bfa3ef4c8d"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d3e1602a06846c656e791a3eb2ae5c9c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1008100,
"upload_time": "2025-10-07T13:37:47",
"upload_time_iso_8601": "2025-10-07T13:37:47.498174Z",
"url": "https://files.pythonhosted.org/packages/c6/f0/a8483d93dbe0056bde625367a13099325b3af926a1d7b2f57d900e9c52df/fastrapi-0.1.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4fdfd70a3dd2d79e42b7dbfed216123b4d7995d65c4e6f3e3f77481d5cfc8d2b",
"md5": "674535179706f7465571cc97a41878aa",
"sha256": "220d9edb0b37f85392a2669bed6678aee55624a0868c5a52c9acac1a3131387d"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "674535179706f7465571cc97a41878aa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1010489,
"upload_time": "2025-10-07T13:38:01",
"upload_time_iso_8601": "2025-10-07T13:38:01.162014Z",
"url": "https://files.pythonhosted.org/packages/4f/df/d70a3dd2d79e42b7dbfed216123b4d7995d65c4e6f3e3f77481d5cfc8d2b/fastrapi-0.1.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "72683d39172cc9fff5ae7ce3ab1ac900cc4a03f3272791eceff85a07d492c839",
"md5": "6415fc558c91d29c3abed75df36c8e11",
"sha256": "4dde9543e55ed0600f2cb747cb547c04a4f7db5f9c26fbaed60c26aa159d38fe"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "6415fc558c91d29c3abed75df36c8e11",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1223678,
"upload_time": "2025-10-07T13:38:14",
"upload_time_iso_8601": "2025-10-07T13:38:14.776203Z",
"url": "https://files.pythonhosted.org/packages/72/68/3d39172cc9fff5ae7ce3ab1ac900cc4a03f3272791eceff85a07d492c839/fastrapi-0.1.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8cef9beeecb8d92a5af4add6c62a5f73f02579fa17682770483ccec184b67d61",
"md5": "03dba50e0a1a8a3099d7f4f679ea8589",
"sha256": "232934538975a63100314a6e4f9b25266ef055ab054d09b28a677587bb2c6a6b"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "03dba50e0a1a8a3099d7f4f679ea8589",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1059815,
"upload_time": "2025-10-07T13:38:28",
"upload_time_iso_8601": "2025-10-07T13:38:28.190738Z",
"url": "https://files.pythonhosted.org/packages/8c/ef/9beeecb8d92a5af4add6c62a5f73f02579fa17682770483ccec184b67d61/fastrapi-0.1.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "49115f2b7f05aaac5b90281974dc3d66734ca1b9867e44554f6474293435666f",
"md5": "fda359113c9330c2a4ff549af65fb284",
"sha256": "1c066f6ea1d8a4e8532c4f9f3d69a3d92eb4da6ffa00d4726ba0d208cd3da39a"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "fda359113c9330c2a4ff549af65fb284",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1185318,
"upload_time": "2025-10-07T13:39:12",
"upload_time_iso_8601": "2025-10-07T13:39:12.320901Z",
"url": "https://files.pythonhosted.org/packages/49/11/5f2b7f05aaac5b90281974dc3d66734ca1b9867e44554f6474293435666f/fastrapi-0.1.4-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "172234dc4d5156ec52f3c95cba56c6399ce0774b8194cb0aa1f0f16509598197",
"md5": "1d62b7dbd3adc54b230a3ee2b5e7e9d3",
"sha256": "607508eb56392a7dbad2b41bc740ad3c75f97e5b0864e9f2c7e08c9920a0dbeb"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "1d62b7dbd3adc54b230a3ee2b5e7e9d3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1271426,
"upload_time": "2025-10-07T13:39:27",
"upload_time_iso_8601": "2025-10-07T13:39:27.975232Z",
"url": "https://files.pythonhosted.org/packages/17/22/34dc4d5156ec52f3c95cba56c6399ce0774b8194cb0aa1f0f16509598197/fastrapi-0.1.4-cp313-cp313t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "95fba250e10dbb808b0b7f0db83f58f135dbcf4ecf0a4ae7404f6f25a7d95be4",
"md5": "42954a6b8e081d5a7ca71e8c3f045cc4",
"sha256": "5a5eccd8d85d42381cb4cc23552114c5af80ba7b4351d60edbc8ac37e601cebe"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "42954a6b8e081d5a7ca71e8c3f045cc4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1230037,
"upload_time": "2025-10-07T13:39:42",
"upload_time_iso_8601": "2025-10-07T13:39:42.790214Z",
"url": "https://files.pythonhosted.org/packages/95/fb/a250e10dbb808b0b7f0db83f58f135dbcf4ecf0a4ae7404f6f25a7d95be4/fastrapi-0.1.4-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "20e0428018751fc2f93a7213ffddf1f7c244d147510deaf75116e7908c1a1a84",
"md5": "829aa42e14b0cc8bcafeb0dc07a40e83",
"sha256": "dedc28582238c95af08d067b462a96c31c443ee05c4d79c55aff393dbf3f07ea"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "829aa42e14b0cc8bcafeb0dc07a40e83",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1186221,
"upload_time": "2025-10-07T13:39:55",
"upload_time_iso_8601": "2025-10-07T13:39:55.980361Z",
"url": "https://files.pythonhosted.org/packages/20/e0/428018751fc2f93a7213ffddf1f7c244d147510deaf75116e7908c1a1a84/fastrapi-0.1.4-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "066b2851175e6f92e336314af303f9b905f99656138068dc35b2be5d9be5c4a0",
"md5": "e82b0d32dee14979cac8954b12be6471",
"sha256": "e0ca439253106e891cb5bbd565e30764272dbd8391ef21218c1baea5e5a62e4e"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "e82b0d32dee14979cac8954b12be6471",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 680438,
"upload_time": "2025-10-07T13:40:12",
"upload_time_iso_8601": "2025-10-07T13:40:12.693630Z",
"url": "https://files.pythonhosted.org/packages/06/6b/2851175e6f92e336314af303f9b905f99656138068dc35b2be5d9be5c4a0/fastrapi-0.1.4-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a9c4155e43f4c7022b9ce2ee12de2cdac22ea7a6087a8073f8fca58c2f195759",
"md5": "8a962de191a084476cbf8af3a3129fad",
"sha256": "5d6736a23b861fe3d401e1c79d01ae3ba863671dddd55582083323aa18441be4"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "8a962de191a084476cbf8af3a3129fad",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 711350,
"upload_time": "2025-10-07T13:40:09",
"upload_time_iso_8601": "2025-10-07T13:40:09.853940Z",
"url": "https://files.pythonhosted.org/packages/a9/c4/155e43f4c7022b9ce2ee12de2cdac22ea7a6087a8073f8fca58c2f195759/fastrapi-0.1.4-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "576ff992fa0ad4f364b787d36d5075f44bfb5fab3f23fca1d08d946641d39ea1",
"md5": "e16f623acc29c37cc9892fe3f43da864",
"sha256": "da9e2f5ac26b59364a29f7f79fe5bdd988be7c9c0e4463b2c5ed2f7e1696d8ef"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e16f623acc29c37cc9892fe3f43da864",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 1094771,
"upload_time": "2025-10-07T13:38:41",
"upload_time_iso_8601": "2025-10-07T13:38:41.165399Z",
"url": "https://files.pythonhosted.org/packages/57/6f/f992fa0ad4f364b787d36d5075f44bfb5fab3f23fca1d08d946641d39ea1/fastrapi-0.1.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff82af47dcb3b4a0698aef469886a1326cb177f82aceac3254b2f8b1daf18dbf",
"md5": "cc080211a03ce876d3c1bca670d07483",
"sha256": "4f52d813453ee7fb99970e638f4f7bb7db1e89a387dada6a622c09e1819f8994"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "cc080211a03ce876d3c1bca670d07483",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 1018118,
"upload_time": "2025-10-07T13:38:52",
"upload_time_iso_8601": "2025-10-07T13:38:52.290436Z",
"url": "https://files.pythonhosted.org/packages/ff/82/af47dcb3b4a0698aef469886a1326cb177f82aceac3254b2f8b1daf18dbf/fastrapi-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "818eb67681518495ba179a5a19a6ce9d027129a213383147620e9d72bde86c71",
"md5": "3a0b820d945083da26bb118d92e3e8a5",
"sha256": "c39e6eb21162eca1a293c01a65aeb26fc1cb58db32c17ab2f4c62f0d68e6ee68"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3a0b820d945083da26bb118d92e3e8a5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1008762,
"upload_time": "2025-10-07T13:37:48",
"upload_time_iso_8601": "2025-10-07T13:37:48.706982Z",
"url": "https://files.pythonhosted.org/packages/81/8e/b67681518495ba179a5a19a6ce9d027129a213383147620e9d72bde86c71/fastrapi-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "37fdb1494b77d2af87b77859cdcce43b1edb45a3cff07406c952c3c2598a370c",
"md5": "92e5af5524d932e7f0e593708f303500",
"sha256": "094843a23bbcfe09b9f0bc682867608547642f26495d85f5777a993fe9236e83"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "92e5af5524d932e7f0e593708f303500",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1011268,
"upload_time": "2025-10-07T13:38:02",
"upload_time_iso_8601": "2025-10-07T13:38:02.384834Z",
"url": "https://files.pythonhosted.org/packages/37/fd/b1494b77d2af87b77859cdcce43b1edb45a3cff07406c952c3c2598a370c/fastrapi-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6f5d355eccd233c6e5825173ef8c865683ce1e7084358c0a3c7306aebf126f42",
"md5": "f946914a9973cbbd1b57948cf136b0d0",
"sha256": "21037d71f1e0140b81418a7f4d56b5f4902bc7323f9b7a826812dbcb79d87510"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f946914a9973cbbd1b57948cf136b0d0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1097248,
"upload_time": "2025-10-07T13:38:42",
"upload_time_iso_8601": "2025-10-07T13:38:42.374703Z",
"url": "https://files.pythonhosted.org/packages/6f/5d/355eccd233c6e5825173ef8c865683ce1e7084358c0a3c7306aebf126f42/fastrapi-0.1.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "47fa01bdf663c1235e12d6e7351a54c01b28f43ece8ac2bfd196c04e2f67d5ce",
"md5": "fb284e21cb1ed9cd379ec707ab9ef97f",
"sha256": "a6e8c549fbdcd079816751b27896b323ca3df09bfd69c75ab15ebc6670aa87e2"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "fb284e21cb1ed9cd379ec707ab9ef97f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1225648,
"upload_time": "2025-10-07T13:38:16",
"upload_time_iso_8601": "2025-10-07T13:38:16.298911Z",
"url": "https://files.pythonhosted.org/packages/47/fa/01bdf663c1235e12d6e7351a54c01b28f43ece8ac2bfd196c04e2f67d5ce/fastrapi-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f5f8161812b3b8cd4c6598ffe93fc99fdd1068e2ebc9c71ec7ded33a46e592a5",
"md5": "72bd1bdca8f4342ac81f445fd971459c",
"sha256": "8360eda7a8a9f4a3744f0a16c0bb14092157d5f01885f13ec46aa9701f20df20"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "72bd1bdca8f4342ac81f445fd971459c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1062949,
"upload_time": "2025-10-07T13:38:29",
"upload_time_iso_8601": "2025-10-07T13:38:29.786012Z",
"url": "https://files.pythonhosted.org/packages/f5/f8/161812b3b8cd4c6598ffe93fc99fdd1068e2ebc9c71ec7ded33a46e592a5/fastrapi-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9ebc65c538b81b8b172cfaf4ba1cf4ebf74a63f77dd5925e3ff26bcc236e3298",
"md5": "2b5af1bf7c7c777f28a3c2c83d0e9a19",
"sha256": "75188c20812a65954da4eedfb6cb17085d25bac773ce728270aecaec5713def9"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2b5af1bf7c7c777f28a3c2c83d0e9a19",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1018778,
"upload_time": "2025-10-07T13:38:53",
"upload_time_iso_8601": "2025-10-07T13:38:53.864410Z",
"url": "https://files.pythonhosted.org/packages/9e/bc/65c538b81b8b172cfaf4ba1cf4ebf74a63f77dd5925e3ff26bcc236e3298/fastrapi-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6472c24af87b0af1d22342109c0e78b1f28ca6646db9ad5ff1433eb10cafecd7",
"md5": "a96c8321b75a6629282c2087082146d1",
"sha256": "dd1aa1fdda3a62569fbf5923a5aac06c0cb7be8048b64454cf7f7bccb1de9ef2"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "a96c8321b75a6629282c2087082146d1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1186289,
"upload_time": "2025-10-07T13:39:13",
"upload_time_iso_8601": "2025-10-07T13:39:13.920420Z",
"url": "https://files.pythonhosted.org/packages/64/72/c24af87b0af1d22342109c0e78b1f28ca6646db9ad5ff1433eb10cafecd7/fastrapi-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "77bd02a5d5155bf4c9c2d19e899797685a70d3e4f75a438b3d96823e6ce0a0a4",
"md5": "91aa3ee8d4a0b590e9c8fe48e01a1500",
"sha256": "2347e1e4037e804cc93e9dbb558637a619fdffce70acb956a130813fc1b6cf90"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "91aa3ee8d4a0b590e9c8fe48e01a1500",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1271881,
"upload_time": "2025-10-07T13:39:29",
"upload_time_iso_8601": "2025-10-07T13:39:29.890872Z",
"url": "https://files.pythonhosted.org/packages/77/bd/02a5d5155bf4c9c2d19e899797685a70d3e4f75a438b3d96823e6ce0a0a4/fastrapi-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "48741a57546f03c0218e6ce2c5b3979f816e4292e9c47a27a815f473b866039e",
"md5": "073eba43569566b9c36cf8e88c894729",
"sha256": "3838d5f843a352b2f0169120361a762e3f3a59b3583902aefd1e6cdfa47228c6"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "073eba43569566b9c36cf8e88c894729",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1234437,
"upload_time": "2025-10-07T13:39:44",
"upload_time_iso_8601": "2025-10-07T13:39:44.107440Z",
"url": "https://files.pythonhosted.org/packages/48/74/1a57546f03c0218e6ce2c5b3979f816e4292e9c47a27a815f473b866039e/fastrapi-0.1.4-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ad6b825be35d2a809025b7b4ea8ec2c0b59082507525755797efcbf4261cb55b",
"md5": "1ee946a94ab87fa485f3018036243b7c",
"sha256": "505d41a5c91fa1bc509b855356ac4eabf9b043194e922b58467aa00c0d9d6dbf"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1ee946a94ab87fa485f3018036243b7c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1187537,
"upload_time": "2025-10-07T13:39:57",
"upload_time_iso_8601": "2025-10-07T13:39:57.366865Z",
"url": "https://files.pythonhosted.org/packages/ad/6b/825be35d2a809025b7b4ea8ec2c0b59082507525755797efcbf4261cb55b/fastrapi-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "13fbddca26907476f3313bd03d0c1dbd66b4e6028a8c1c93e5ed00d17e13fe3f",
"md5": "36b4cd84ebd8e515bd3de374ec6d3552",
"sha256": "80a05ec32652bbe4c22b94e28e93989db99c04780563375bfc12828e4a1f20b5"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "36b4cd84ebd8e515bd3de374ec6d3552",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1009311,
"upload_time": "2025-10-07T13:37:49",
"upload_time_iso_8601": "2025-10-07T13:37:49.998778Z",
"url": "https://files.pythonhosted.org/packages/13/fb/ddca26907476f3313bd03d0c1dbd66b4e6028a8c1c93e5ed00d17e13fe3f/fastrapi-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "375ee42243ea19322999638c2f5c83f8cd1d95777ca69b9677652aa4c6c5dd58",
"md5": "8f49b55026e7ce6aae2ff46406791977",
"sha256": "47e3c3ff1e2640c415e2f38671026aaf70642721c00a1b37fec69a5afdd0d7cf"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "8f49b55026e7ce6aae2ff46406791977",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1012118,
"upload_time": "2025-10-07T13:38:03",
"upload_time_iso_8601": "2025-10-07T13:38:03.655739Z",
"url": "https://files.pythonhosted.org/packages/37/5e/e42243ea19322999638c2f5c83f8cd1d95777ca69b9677652aa4c6c5dd58/fastrapi-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a6acfc721055e57fa0e6578df71c95880a111a88405ce450715522e7e3ba0ce2",
"md5": "c52ad79acc25b8158a7b671838bc8765",
"sha256": "1899b2b3b910a9e2fb6ed60e8767064a471e8fbf2fe82699c6da495bb5dc495d"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c52ad79acc25b8158a7b671838bc8765",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1097612,
"upload_time": "2025-10-07T13:38:44",
"upload_time_iso_8601": "2025-10-07T13:38:44.095679Z",
"url": "https://files.pythonhosted.org/packages/a6/ac/fc721055e57fa0e6578df71c95880a111a88405ce450715522e7e3ba0ce2/fastrapi-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e6d0ce17b1ff7e99d99d9af6c863bf5225c2c0bf4c48a055946e0da7480820ba",
"md5": "9dbdaa0828bfbb38041b88fa47dfba50",
"sha256": "2e55d6f5c19e606db0f0959070447bbfbe7f8cdab967cac7471dbc974eae8d0a"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9dbdaa0828bfbb38041b88fa47dfba50",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1225617,
"upload_time": "2025-10-07T13:38:17",
"upload_time_iso_8601": "2025-10-07T13:38:17.669919Z",
"url": "https://files.pythonhosted.org/packages/e6/d0/ce17b1ff7e99d99d9af6c863bf5225c2c0bf4c48a055946e0da7480820ba/fastrapi-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f34265b579e31199cd0a8dc7565cfba461054521e2e5a5f617ec58b18967ee6",
"md5": "a1cc9ef39a5bd463b70af5b479d37f74",
"sha256": "5aa787adcafe21f9c082f65f31a51ce471ceb2a88ec2f3b6c3c6b1c6e85c252a"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a1cc9ef39a5bd463b70af5b479d37f74",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1063287,
"upload_time": "2025-10-07T13:38:31",
"upload_time_iso_8601": "2025-10-07T13:38:31.099949Z",
"url": "https://files.pythonhosted.org/packages/1f/34/265b579e31199cd0a8dc7565cfba461054521e2e5a5f617ec58b18967ee6/fastrapi-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a8eeebc2cb05140ee8b7a0aae2faffd2bde886123f0ed58ac9f1caeda5336bdd",
"md5": "011e6d6be1628bec78594fce427b4df0",
"sha256": "57e9e2f6183237d798447fd9d0a607a1ae76c94279bd4b90aa1e4f6a4c64f6cb"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "011e6d6be1628bec78594fce427b4df0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1017678,
"upload_time": "2025-10-07T13:38:55",
"upload_time_iso_8601": "2025-10-07T13:38:55.130178Z",
"url": "https://files.pythonhosted.org/packages/a8/ee/ebc2cb05140ee8b7a0aae2faffd2bde886123f0ed58ac9f1caeda5336bdd/fastrapi-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "40cad88d01e729943b1d0d3122c2b06abc9974ded3f0d965317797aa55e9bf11",
"md5": "51d8df34603ba53dce393b44f876ceec",
"sha256": "ba06a7aa483b7bc0c0608c35bdebe763eccd38b2b948dcf7950943ac59e9ef19"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "51d8df34603ba53dce393b44f876ceec",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1186669,
"upload_time": "2025-10-07T13:39:15",
"upload_time_iso_8601": "2025-10-07T13:39:15.058831Z",
"url": "https://files.pythonhosted.org/packages/40/ca/d88d01e729943b1d0d3122c2b06abc9974ded3f0d965317797aa55e9bf11/fastrapi-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b3c3a03f07beba1213c9a4cb8c0c01b73a3016ec35440ed7f281f2a37b0d8ebd",
"md5": "44193bcfbfbbdcfd5ea5d7ff0538df5b",
"sha256": "c46c1354b65848635005f337253253ae0c349f8c5ee83b2b9254f9886abc75f7"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "44193bcfbfbbdcfd5ea5d7ff0538df5b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1273050,
"upload_time": "2025-10-07T13:39:31",
"upload_time_iso_8601": "2025-10-07T13:39:31.126543Z",
"url": "https://files.pythonhosted.org/packages/b3/c3/a03f07beba1213c9a4cb8c0c01b73a3016ec35440ed7f281f2a37b0d8ebd/fastrapi-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9785df85a3210a948a26cce1e1c1cd9ad32e810a29c90b8d42e90d72a1ef2f51",
"md5": "3da05f884f4c84afdbff2b659343aea3",
"sha256": "df5b8f169a3d422ac8d94e642818722355912ee07c435d1160b03d53844920d3"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "3da05f884f4c84afdbff2b659343aea3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1234847,
"upload_time": "2025-10-07T13:39:45",
"upload_time_iso_8601": "2025-10-07T13:39:45.270607Z",
"url": "https://files.pythonhosted.org/packages/97/85/df85a3210a948a26cce1e1c1cd9ad32e810a29c90b8d42e90d72a1ef2f51/fastrapi-0.1.4-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f83f0025b76c61160a518816f50a2ba730c5a4d4270e2a2872230edf8bd457a5",
"md5": "d307c438a8e1ed0b2c427e689ab9f3db",
"sha256": "19b5e254060f44ed2f17071410f16d1801d1152ea6f82d11661d21189adea150"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d307c438a8e1ed0b2c427e689ab9f3db",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1185713,
"upload_time": "2025-10-07T13:39:58",
"upload_time_iso_8601": "2025-10-07T13:39:58.695643Z",
"url": "https://files.pythonhosted.org/packages/f8/3f/0025b76c61160a518816f50a2ba730c5a4d4270e2a2872230edf8bd457a5/fastrapi-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c1a2c6bcb7a3008676869abf12373437be19eaa36b81eb090c75b9381ce16d8f",
"md5": "b2862e340bd9fdbba9a2bc54e27ee031",
"sha256": "0e3913cf1a46773092fbefe61c7979232bed0516454526191fa515015998941c"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "b2862e340bd9fdbba9a2bc54e27ee031",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 715324,
"upload_time": "2025-10-07T13:40:11",
"upload_time_iso_8601": "2025-10-07T13:40:11.022080Z",
"url": "https://files.pythonhosted.org/packages/c1/a2/c6bcb7a3008676869abf12373437be19eaa36b81eb090c75b9381ce16d8f/fastrapi-0.1.4-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "127ae93e5d1b34cc5dc8379038f72c130cbe4daf7f7733de9caf572640bb52b8",
"md5": "bf6b3e0b153af7d6e38c6bc2b2090240",
"sha256": "e97b4e7e5292361defdff6188aa3b7e32eb947b4beb8be6fba49f7e804a2bd3a"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bf6b3e0b153af7d6e38c6bc2b2090240",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1012269,
"upload_time": "2025-10-07T13:37:51",
"upload_time_iso_8601": "2025-10-07T13:37:51.176229Z",
"url": "https://files.pythonhosted.org/packages/12/7a/e93e5d1b34cc5dc8379038f72c130cbe4daf7f7733de9caf572640bb52b8/fastrapi-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c964783649af3cd33bd91ae03d3866684052ac610057855a5f7151ed8f60e22b",
"md5": "b875a30c57b53a23c86d6ab982418a50",
"sha256": "2ec5454f406c3a394110327c7045e6c5372dabf08f25a5cbbe9ada414d46e4c7"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "b875a30c57b53a23c86d6ab982418a50",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1012394,
"upload_time": "2025-10-07T13:38:04",
"upload_time_iso_8601": "2025-10-07T13:38:04.846910Z",
"url": "https://files.pythonhosted.org/packages/c9/64/783649af3cd33bd91ae03d3866684052ac610057855a5f7151ed8f60e22b/fastrapi-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c585a164af4d17e83bb5c298c37a4d1715c29a6c0f7193fe9f4a48f9c7590350",
"md5": "3a54556e3c4ed6a519b244cec9a6200c",
"sha256": "44d987d54ceb93d5ec61e681fc387a5d170571555dc07ad34e1099a09a7aa7f9"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3a54556e3c4ed6a519b244cec9a6200c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1227006,
"upload_time": "2025-10-07T13:38:18",
"upload_time_iso_8601": "2025-10-07T13:38:18.841677Z",
"url": "https://files.pythonhosted.org/packages/c5/85/a164af4d17e83bb5c298c37a4d1715c29a6c0f7193fe9f4a48f9c7590350/fastrapi-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3d1529dfb7c6ba8440557213e0505c9608815440dc15cf8d1dd36212e2c8a846",
"md5": "da2215f76931702b60c7a7d25e16d0fe",
"sha256": "a37a70a142710b1949af75603ca7ac741dd401efaf29ea8c078b2d0eb80067cb"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "da2215f76931702b60c7a7d25e16d0fe",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1063457,
"upload_time": "2025-10-07T13:38:32",
"upload_time_iso_8601": "2025-10-07T13:38:32.249237Z",
"url": "https://files.pythonhosted.org/packages/3d/15/29dfb7c6ba8440557213e0505c9608815440dc15cf8d1dd36212e2c8a846/fastrapi-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ff343945e98bb52aacb462b7d62e6c66e9b16bd88d4e09ff91ec79718856dcd",
"md5": "96b1199c3e000ed292dbc1673dd8384a",
"sha256": "7770937005cea3b6d556a48c7ee7fc848388500402a4f5e6b6f5a03013257a0b"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "96b1199c3e000ed292dbc1673dd8384a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1188984,
"upload_time": "2025-10-07T13:39:16",
"upload_time_iso_8601": "2025-10-07T13:39:16.332619Z",
"url": "https://files.pythonhosted.org/packages/6f/f3/43945e98bb52aacb462b7d62e6c66e9b16bd88d4e09ff91ec79718856dcd/fastrapi-0.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9a2f067efdd50bb94ba220e22979d0fde2ceda772376ccea7d2a9e4542f1d85b",
"md5": "259d73efcca7d05bc181cdeac91ccc66",
"sha256": "b45f6c6a19ea686e33a3ca63caa7bb715b44d82525441e6c6a2db2bf1c58c667"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "259d73efcca7d05bc181cdeac91ccc66",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1273561,
"upload_time": "2025-10-07T13:39:32",
"upload_time_iso_8601": "2025-10-07T13:39:32.641132Z",
"url": "https://files.pythonhosted.org/packages/9a/2f/067efdd50bb94ba220e22979d0fde2ceda772376ccea7d2a9e4542f1d85b/fastrapi-0.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a3c5dca418ec6fb02dec536922e5e75b9b311cc906a27294eb0ebd8b62ca9b1e",
"md5": "ccdb4724134f9a08381b33594b6063f4",
"sha256": "5ddf3faac4acbe68c54d392a648dc84f73b46c21c34270f8983de5528f4ad921"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "ccdb4724134f9a08381b33594b6063f4",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1235285,
"upload_time": "2025-10-07T13:39:46",
"upload_time_iso_8601": "2025-10-07T13:39:46.630337Z",
"url": "https://files.pythonhosted.org/packages/a3/c5/dca418ec6fb02dec536922e5e75b9b311cc906a27294eb0ebd8b62ca9b1e/fastrapi-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "11074d7fb4df357a21f2db30d21c8764cddf8681e47b8e11fae5edf7a5644bbb",
"md5": "359afd087dad6cdb3fec05854ec4b7a0",
"sha256": "6ee9802ac8169554d42c61ca6714a5b5220029709366d4fdfc2f0be08fccf6ed"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "359afd087dad6cdb3fec05854ec4b7a0",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1190173,
"upload_time": "2025-10-07T13:40:00",
"upload_time_iso_8601": "2025-10-07T13:40:00.241664Z",
"url": "https://files.pythonhosted.org/packages/11/07/4d7fb4df357a21f2db30d21c8764cddf8681e47b8e11fae5edf7a5644bbb/fastrapi-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af225316169000dbccd402c308398a48e390d4fc0b46debf374a3c66840d9e48",
"md5": "5fbace2fd281f5e85f3f053b81472d29",
"sha256": "2e22e4f42b229e6e1ef8d44a077c00aa19d39c36bd4e5e4fe9fd6697be9c1505"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5fbace2fd281f5e85f3f053b81472d29",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 1010791,
"upload_time": "2025-10-07T13:37:52",
"upload_time_iso_8601": "2025-10-07T13:37:52.708305Z",
"url": "https://files.pythonhosted.org/packages/af/22/5316169000dbccd402c308398a48e390d4fc0b46debf374a3c66840d9e48/fastrapi-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "07847fc281c78be9958daf65324d2575baaa6f520d1538805ac658136c1d4965",
"md5": "4fa32c8594aea31a886589558f3e1af1",
"sha256": "da30e900650285704e3ca669599c6c3845b67c5b8c642495142e4a64921aecba"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "4fa32c8594aea31a886589558f3e1af1",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 1011025,
"upload_time": "2025-10-07T13:38:06",
"upload_time_iso_8601": "2025-10-07T13:38:06.295625Z",
"url": "https://files.pythonhosted.org/packages/07/84/7fc281c78be9958daf65324d2575baaa6f520d1538805ac658136c1d4965/fastrapi-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b3c2d1c1ce3b4c571d293c4b255726556df72873446a4de4eb7d1ce72838a515",
"md5": "90a894425e90041d62d77688e0b02f2c",
"sha256": "c54dd6c4127b3d33cae805e6c62872e59aa7d62680b95e31f3bbca7cad6e0359"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "90a894425e90041d62d77688e0b02f2c",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 1097580,
"upload_time": "2025-10-07T13:38:45",
"upload_time_iso_8601": "2025-10-07T13:38:45.821818Z",
"url": "https://files.pythonhosted.org/packages/b3/c2/d1c1ce3b4c571d293c4b255726556df72873446a4de4eb7d1ce72838a515/fastrapi-0.1.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "916dac89e841004714ee946b93a0e27ed56a824fe7823199f1f4e7c1002a3557",
"md5": "a4f0761339d7c987e3b09c6c38c275b1",
"sha256": "d2554d8eef743cbe611199dc6cffa06233f1de18335d432e0a9481b5fe70863a"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a4f0761339d7c987e3b09c6c38c275b1",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 1226557,
"upload_time": "2025-10-07T13:38:20",
"upload_time_iso_8601": "2025-10-07T13:38:20.002500Z",
"url": "https://files.pythonhosted.org/packages/91/6d/ac89e841004714ee946b93a0e27ed56a824fe7823199f1f4e7c1002a3557/fastrapi-0.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0016087ff5412ad05522dbdb4c29743dfa1e32e2c27fc74d9f01a575dec7a1b2",
"md5": "63437e9fdec8d43175de2f31519e1c11",
"sha256": "7f8227937411c77ef0bd3da818ce5e9b7b8be6704ecd88158caf173bcf33635f"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "63437e9fdec8d43175de2f31519e1c11",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 1063470,
"upload_time": "2025-10-07T13:38:33",
"upload_time_iso_8601": "2025-10-07T13:38:33.465994Z",
"url": "https://files.pythonhosted.org/packages/00/16/087ff5412ad05522dbdb4c29743dfa1e32e2c27fc74d9f01a575dec7a1b2/fastrapi-0.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0339384b492f0ee7ee7c70b6d1b976d987529913fdc61305fa62b5058ed38f6b",
"md5": "222a7f2ae2cb141e2fdb341e61826536",
"sha256": "14e0e691022303a83a5ecea805e99695336096889ae20c1690c5e46425a98dbd"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "222a7f2ae2cb141e2fdb341e61826536",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 1018887,
"upload_time": "2025-10-07T13:38:56",
"upload_time_iso_8601": "2025-10-07T13:38:56.309052Z",
"url": "https://files.pythonhosted.org/packages/03/39/384b492f0ee7ee7c70b6d1b976d987529913fdc61305fa62b5058ed38f6b/fastrapi-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "77868d626c55821d98d9fb966e914186a427c8595865640915347bd65f3194b8",
"md5": "3b2eaeefb11e15c50d18932d2d77a329",
"sha256": "8b3c506e5ec61fecb9e6dcb20514ea119af039a64c6943d6c17335d2cfd704af"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "3b2eaeefb11e15c50d18932d2d77a329",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 1187754,
"upload_time": "2025-10-07T13:39:17",
"upload_time_iso_8601": "2025-10-07T13:39:17.667092Z",
"url": "https://files.pythonhosted.org/packages/77/86/8d626c55821d98d9fb966e914186a427c8595865640915347bd65f3194b8/fastrapi-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b6ee8ffbab3ca57e507567afb42e9764fde50b63588423d0ae13023db98ac755",
"md5": "3112f9fdc261bc40b18195e60946fff8",
"sha256": "c0f20b4c0af7611ecd1b3114c4df8604994dbbd4b2aa8553d2e726513898e003"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "3112f9fdc261bc40b18195e60946fff8",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 1272285,
"upload_time": "2025-10-07T13:39:33",
"upload_time_iso_8601": "2025-10-07T13:39:33.899224Z",
"url": "https://files.pythonhosted.org/packages/b6/ee/8ffbab3ca57e507567afb42e9764fde50b63588423d0ae13023db98ac755/fastrapi-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8b24f40cb6cba290b5b6d393749533405bd422538ad7089291ed5ccfa4b2d6c",
"md5": "8c344ffb85f60fa547d912371f5aac09",
"sha256": "ff48cd6c43850f9894952fe8233b8540344f72498f814a3363b6ec60dbcc27b9"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "8c344ffb85f60fa547d912371f5aac09",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 1234130,
"upload_time": "2025-10-07T13:39:47",
"upload_time_iso_8601": "2025-10-07T13:39:47.909792Z",
"url": "https://files.pythonhosted.org/packages/f8/b2/4f40cb6cba290b5b6d393749533405bd422538ad7089291ed5ccfa4b2d6c/fastrapi-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c8a7ac95978e8a891d4cfbbfabb41b819cd1d92c9c11c178388c9b3adb8c0780",
"md5": "85d0b9bed1de06453ce584331509ef98",
"sha256": "148a03d7cf2b56001d3fc6d86846f67ac91f6ccd66c74a3c060c7f4be207c5d7"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "85d0b9bed1de06453ce584331509ef98",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 1188609,
"upload_time": "2025-10-07T13:40:01",
"upload_time_iso_8601": "2025-10-07T13:40:01.784631Z",
"url": "https://files.pythonhosted.org/packages/c8/a7/ac95978e8a891d4cfbbfabb41b819cd1d92c9c11c178388c9b3adb8c0780/fastrapi-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c1ad8cf14edc7c2bcc13b1d5e0dac2965510f5de91eb47f3187c7af275a16a4e",
"md5": "25bb8bcd9e4d8c73df414c4d0c7315a2",
"sha256": "53a492afe1d52c74d360dfff0fc3da6ebd8102506b8499c1729e5c77ba463d1a"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "25bb8bcd9e4d8c73df414c4d0c7315a2",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1012628,
"upload_time": "2025-10-07T13:37:54",
"upload_time_iso_8601": "2025-10-07T13:37:54.027000Z",
"url": "https://files.pythonhosted.org/packages/c1/ad/8cf14edc7c2bcc13b1d5e0dac2965510f5de91eb47f3187c7af275a16a4e/fastrapi-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ed113c4baca45f4d76ba237ddb5baf06c1da6b9bc23897279dc575bb8b36db0f",
"md5": "e7542c1a1e050de9370f352a86566692",
"sha256": "367f8c907ac107e02a0358385b87c8b290f62c48b572f69480741fea505dd545"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e7542c1a1e050de9370f352a86566692",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1012886,
"upload_time": "2025-10-07T13:38:07",
"upload_time_iso_8601": "2025-10-07T13:38:07.589586Z",
"url": "https://files.pythonhosted.org/packages/ed/11/3c4baca45f4d76ba237ddb5baf06c1da6b9bc23897279dc575bb8b36db0f/fastrapi-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a7418a454cf2e1f63cd2b9178c4743c59cf0183daa4d2ee887cda9990335376",
"md5": "d34ac6c7561be23d3ea3e2ccaee2161e",
"sha256": "b35526a900cf87f9fe97a7a8c117d394231fcfeeed5a75e1f0cc14077292404c"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "d34ac6c7561be23d3ea3e2ccaee2161e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1226594,
"upload_time": "2025-10-07T13:38:21",
"upload_time_iso_8601": "2025-10-07T13:38:21.213399Z",
"url": "https://files.pythonhosted.org/packages/1a/74/18a454cf2e1f63cd2b9178c4743c59cf0183daa4d2ee887cda9990335376/fastrapi-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2db03ea79ae7691e4c036d00a09fda9c3587e6bd97079ffadc8a94450b633fcf",
"md5": "5fcd170545695f51a8211590727edd1b",
"sha256": "4c69c035ac32327beff72e51af6be6c963b90c18fa0d6bc6cc7368859d29c963"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "5fcd170545695f51a8211590727edd1b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1064577,
"upload_time": "2025-10-07T13:38:34",
"upload_time_iso_8601": "2025-10-07T13:38:34.919032Z",
"url": "https://files.pythonhosted.org/packages/2d/b0/3ea79ae7691e4c036d00a09fda9c3587e6bd97079ffadc8a94450b633fcf/fastrapi-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "459de8f33b48b36182f2a125207acd9593a5c84c3efaa896d60c337858c6cc5f",
"md5": "0eb3250b5b8c7583149678917635c0a8",
"sha256": "fabd06fde3ca8fd4d7980e6e53d0a3d3660fcb526f384eb55793f4170d4bce1f"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "0eb3250b5b8c7583149678917635c0a8",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1189973,
"upload_time": "2025-10-07T13:39:19",
"upload_time_iso_8601": "2025-10-07T13:39:19.096862Z",
"url": "https://files.pythonhosted.org/packages/45/9d/e8f33b48b36182f2a125207acd9593a5c84c3efaa896d60c337858c6cc5f/fastrapi-0.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c8b8610eb809da974bbf78f4a7e4a85805124ff0c902bfba56d0f623f962d741",
"md5": "264501caf04257414507c981df6da60d",
"sha256": "c496369784f906547ff205585e89215c27248c6bfaafbf6fd469aacbf3d34274"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "264501caf04257414507c981df6da60d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1273904,
"upload_time": "2025-10-07T13:39:35",
"upload_time_iso_8601": "2025-10-07T13:39:35.256200Z",
"url": "https://files.pythonhosted.org/packages/c8/b8/610eb809da974bbf78f4a7e4a85805124ff0c902bfba56d0f623f962d741/fastrapi-0.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fa9bd9f4f2af45fd4050c2faeb6b7de9d27055cbdbfa3ab16e07198da8416a4e",
"md5": "4cf429c82b7570082f21aefaa62fb32f",
"sha256": "1b8cb142139cda736b44f328fa6ae2ff478ad4bb04d68ce5f7a26bcc5c399efd"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4cf429c82b7570082f21aefaa62fb32f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1235357,
"upload_time": "2025-10-07T13:39:49",
"upload_time_iso_8601": "2025-10-07T13:39:49.484310Z",
"url": "https://files.pythonhosted.org/packages/fa/9b/d9f4f2af45fd4050c2faeb6b7de9d27055cbdbfa3ab16e07198da8416a4e/fastrapi-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a6d95e320e2e49a779f9588b531ece0cd6effc24ed4e8734ad1dbda0ced0245b",
"md5": "9fed6144b8fb36eff1fac7652ea2b019",
"sha256": "4cc0728e4f29653917b34b94d481c43c631261a6f62ab67c3ab1d0dce5e65d4a"
},
"downloads": -1,
"filename": "fastrapi-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9fed6144b8fb36eff1fac7652ea2b019",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1190112,
"upload_time": "2025-10-07T13:40:03",
"upload_time_iso_8601": "2025-10-07T13:40:03.447562Z",
"url": "https://files.pythonhosted.org/packages/a6/d9/5e320e2e49a779f9588b531ece0cd6effc24ed4e8734ad1dbda0ced0245b/fastrapi-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3ec6770b5962d7ea680e13bce35e4d597b3158eea45f4b64a7c03c15a2411768",
"md5": "a84055a6fb19f6c55b81480c059675ae",
"sha256": "32a2760b6b20b8144e7605919ab73f7d9cbabb8d3cb37f0fe003c04215a57f15"
},
"downloads": -1,
"filename": "fastrapi-0.1.4.tar.gz",
"has_sig": false,
"md5_digest": "a84055a6fb19f6c55b81480c059675ae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 40656,
"upload_time": "2025-10-07T13:40:04",
"upload_time_iso_8601": "2025-10-07T13:40:04.808130Z",
"url": "https://files.pythonhosted.org/packages/3e/c6/770b5962d7ea680e13bce35e4d597b3158eea45f4b64a7c03c15a2411768/fastrapi-0.1.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-07 13:40:04",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ppmpreetham",
"github_project": "fastrapi",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "fastrapi"
}