An ultra fast WSGI/ASGI server for Python
Project description
FastPySGI
FastPySGI is an ultra fast WSGI/ASGI server for Python 3.
Its written in C and uses libuv and llhttp under the hood for blazing fast performance.
Supported Platforms
| Platform | Linux | MacOs | Windows |
|---|---|---|---|
| Support | :white_check_mark: | :white_check_mark: | :white_check_mark: |
Performance
FastPySGI is one of the fastest general use WSGI servers out there!
For a comparison against other popular WSGI servers, see PERFORMANCE.md
Installation
Install using the pip package manager.
pip install fastpysgi
Quick start
Create a new file example.py with the following:
import fastpysgi
def app(environ, start_response):
headers = [('Content-Type', 'text/plain')]
start_response('200 OK', headers)
return [b'Hello, World!']
if __name__ == '__main__':
fastpysgi.run(wsgi_app=app, host='0.0.0.0', port=5000)
Run the server using:
python3 example.py
Or, by using the fastpysgi command:
fastpysgi example:app
Example usage with Flask
import fastpysgi
from flask import Flask
app = Flask(__name__)
@app.get('/')
def hello_world():
return 'Hello, World!', 200
if __name__ == '__main__':
fastpysgi.run(wsgi_app=app, host='127.0.0.1', port=5000)
Testing
To run the test suite using pytest, run the following command:
python3 -m pytest
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastpysgi-0.1.tar.gz.
File metadata
- Download URL: fastpysgi-0.1.tar.gz
- Upload date:
- Size: 655.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64d36da225c19af667853bacd3cd494b4f2ff1821ed56f900fe38c96243433d9
|
|
| MD5 |
693217eed4c0f158b64f47ca6e8cf90d
|
|
| BLAKE2b-256 |
272144e9c713c4596f943b5b93a68e516ed533ccdd2af96974453f05cea9da42
|
File details
Details for the file fastpysgi-0.1-pp311-pypy311_pp73-win_amd64.whl.
File metadata
- Download URL: fastpysgi-0.1-pp311-pypy311_pp73-win_amd64.whl
- Upload date:
- Size: 90.5 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3712c9b345a974ca46a3a60c91c0cb89a2b189437f87cb5d05512cad660d65f3
|
|
| MD5 |
13a86cd89d90b774397addecbdd7f5be
|
|
| BLAKE2b-256 |
e7565225b9e2c2580b42b9f8a75f31a0c4621d5f60c1a7f76216e72af2dfe4b3
|
File details
Details for the file fastpysgi-0.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 137.6 kB
- Tags: PyPy, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1307a9115736cc8ffcad02c93986fe8ddab53e998a8d4d860796c2d3c5236db
|
|
| MD5 |
b8c6b8a18b3c4d233ee294efb46560d0
|
|
| BLAKE2b-256 |
52a674f8f29aecd8d2357d30787524cd64527c8e8226f8c39cd803288d67c090
|
File details
Details for the file fastpysgi-0.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl
- Upload date:
- Size: 152.8 kB
- Tags: PyPy, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc02d133a8fa32096f6d7a56268775c59d231b6f52c2c86d1de156195bd5c1c7
|
|
| MD5 |
6577d54021399d7b845e0b17c4fd7410
|
|
| BLAKE2b-256 |
94b0287245cf99dd3e538f7d75b6b6604a4ea8b1b8c7aedad75b5e4b03bed5db
|
File details
Details for the file fastpysgi-0.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 134.4 kB
- Tags: PyPy, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a0529950e0f80f037339f223d44b5b60504ef8b13feb3469200b7edb3e6c6bb
|
|
| MD5 |
babbea64737bea5760ccc6ef957bc176
|
|
| BLAKE2b-256 |
cdc61ddc902b5899fa364f7097d1f30df5160d74d951ad3edae12bc1b57d6c78
|
File details
Details for the file fastpysgi-0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 133.6 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b102bc769ba3b3becea3275daa4c5e6dfc24e3c1e62da14c8c8dcfdf317a761a
|
|
| MD5 |
1fbe1fbff05dc455e6dfce741beda2b6
|
|
| BLAKE2b-256 |
736469caee5538bf2eba8ff005b4be2ea555aadbd448be29d4c55f990aea2d85
|
File details
Details for the file fastpysgi-0.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 139.1 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0583304c7eeab32f16174866b4707c77b23b8b58f366ca0c8e64d2f2032124b0
|
|
| MD5 |
de9e8bf240dedab0ee77e694880abe0a
|
|
| BLAKE2b-256 |
74098e24d8dbaeb72ec830782542e29b9e0aea5d73830691e5b21b8a29de2084
|
File details
Details for the file fastpysgi-0.1-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 83.5 kB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ef7369194969c93e3e87e80513b4bd5f65dd3a0768c38d711a700ad36e6e9a8
|
|
| MD5 |
018ed07b49e9c30a2fa191e67062cc6e
|
|
| BLAKE2b-256 |
a502b8e2f3e59532cccd26e71909a1bd853026a70e70be8c6ddb65c245893ab7
|
File details
Details for the file fastpysgi-0.1-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 96.0 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80939f679eafcf81aab4b7dc5e0272770e7d449b9c966e93a6d323d4ce809b0a
|
|
| MD5 |
61a067c9a3d9c392688a56c18db59f6e
|
|
| BLAKE2b-256 |
85dcb449722374d38f4002391fcae60dbd54233815f74102679bec217b455a10
|
File details
Details for the file fastpysgi-0.1-cp314-cp314t-win32.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314t-win32.whl
- Upload date:
- Size: 87.0 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5b81a236836a5054adfc4610d2660e9f038c88d39c8ef2c630cf1264dca6cb2
|
|
| MD5 |
fbd21a566d596b88afa4f9490a6ed394
|
|
| BLAKE2b-256 |
75590346b92ea1db322f6e044364f95023887bfdfb64b7eacedf6b9361782a69
|
File details
Details for the file fastpysgi-0.1-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 144.7 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39f15a9f2660dd94e8e3be01266873056ad36b1a86a181c87e0768b5d5bb8416
|
|
| MD5 |
cdc0ab52c3f8a934b7a2bbaecae73813
|
|
| BLAKE2b-256 |
80321228998c46010d51495a62921d1cfc916377250178f12150674e48c42f21
|
File details
Details for the file fastpysgi-0.1-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 159.1 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69c2fb986d39c44d4c036b840fb8c2b0c537705cdc74b796d604a343e9f57b2b
|
|
| MD5 |
d8ffa495346ed6a3c97ef6967e72fdd4
|
|
| BLAKE2b-256 |
c6009b8712372a3ad758ecbc5c8c1b94ada9ccda5b50ffdaf9200586288fd1ba
|
File details
Details for the file fastpysgi-0.1-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 140.6 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05ed522b7d71886d716008e1c38e15b300486260f43014cb70e3e9259fad7a0c
|
|
| MD5 |
aa378250c77937c894cb55406522c0cf
|
|
| BLAKE2b-256 |
1a1a8c06f2cee5d7f6465664ca8ef03810aec2c961ad33bc95f77c92ef2203c6
|
File details
Details for the file fastpysgi-0.1-cp314-cp314t-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314t-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 144.0 kB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c13a3258f3bbcee2febf4f3ecd9ec9a398bda5768ad90da50d58f873fa2e2ae0
|
|
| MD5 |
fe2294c4a297113287f096352d3ba1c5
|
|
| BLAKE2b-256 |
b09dc07e796c38d8e0baf32db9243b9a18513c8a20d1c15115806b63b62d2c49
|
File details
Details for the file fastpysgi-0.1-cp314-cp314t-manylinux_2_28_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314t-manylinux_2_28_i686.whl
- Upload date:
- Size: 158.4 kB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0783aff7da027a5512363360d4fc66d3a932c298e4ba704ed0775022deaec9a0
|
|
| MD5 |
d3f7733205a26b93b1ca7738fc9827ae
|
|
| BLAKE2b-256 |
32e739eef1bd82b091af4b915013071ad4a197ef08a0cda10a3e584ef9eefe14
|
File details
Details for the file fastpysgi-0.1-cp314-cp314t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 138.6 kB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ddd374691b1f5fca5ad30fe0c47d81ad53dfe6cf04da24884a4633619e64a1d
|
|
| MD5 |
65e5757d50049458d5899d4add79dc0a
|
|
| BLAKE2b-256 |
3efd44777dec0689941f841d1dac8eedc3a17b1b4c1087ac1641585909fd371e
|
File details
Details for the file fastpysgi-0.1-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 134.9 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
016b23abcd7fe5d581a8071af56e357506dfe0c55506e4228d690da941c4ea26
|
|
| MD5 |
9b000220d00a9ee7585fb14a65029123
|
|
| BLAKE2b-256 |
783183a99633c82ce00c9f5b750154c10e044badae269ffcdd05182e4ae8b911
|
File details
Details for the file fastpysgi-0.1-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 140.4 kB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d53295c5da15752d37b5eca26f83c099c58acc3dde82804d9e6596699d164136
|
|
| MD5 |
188e851674392044d8089888c96c208f
|
|
| BLAKE2b-256 |
926445e4de2c088cf7c83553d49edf02b4e1cfbc47e5633ab4c86545cd829d80
|
File details
Details for the file fastpysgi-0.1-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 82.5 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de3f25b1f9f331391c765bb18c7f520512264125650d49d25138aefcbafc38ee
|
|
| MD5 |
83f5df55cdcd13b0698f05b10c668aeb
|
|
| BLAKE2b-256 |
09d2618f7a04f25bac50273a50e7146067faae0361465bc1875ff5d214b93a52
|
File details
Details for the file fastpysgi-0.1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 93.8 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91789b86109ec85b068375adf41d27de373309a568d8025bb3b72e105f31e1cf
|
|
| MD5 |
520850c6674aab5f97e1dc942b23b8e2
|
|
| BLAKE2b-256 |
075a603bc71070c491bd76c6cd00bd3f0ce51ed07abdb8ef9750067688e73179
|
File details
Details for the file fastpysgi-0.1-cp314-cp314-win32.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314-win32.whl
- Upload date:
- Size: 85.1 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d17633189915f049023a6842e7ae543389606016d13f0885dcf92a562f12592
|
|
| MD5 |
0aed2f745334e140d1f0bfb9567d2050
|
|
| BLAKE2b-256 |
5c52862b9b84772f4e53cc870a83848c9c60f7677d50621421d1bf6da33ae187
|
File details
Details for the file fastpysgi-0.1-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 143.2 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9eb38af1982bf99d37a671576cbaa8c2f53eed29a99bf3d9dc47523a5468eec1
|
|
| MD5 |
d1a14360700cd7a3ed9aae4aade1e725
|
|
| BLAKE2b-256 |
9fa9b1a5c795a6c7e5a1236ca8a93a41244dec36845db70a4065a6c7cb7ed34d
|
File details
Details for the file fastpysgi-0.1-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 157.5 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79bb6d21cff36e6fb11cfb6c58847628015bac5c7130ee33a600b35250957ed1
|
|
| MD5 |
3d060872fc6c0bda34075d3183796cbd
|
|
| BLAKE2b-256 |
b7e7937117a66e81a1da2f8542c4c96ece70bbc66007187fade492e34a61ab58
|
File details
Details for the file fastpysgi-0.1-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 139.1 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
342d528fb241284407fd7477dcc342e111933ba73d6984cc8703449e5ea7b016
|
|
| MD5 |
b6dae93f7f2b77e78f77181d11ac5178
|
|
| BLAKE2b-256 |
f5999a7d7e411d191ed9a96810449cca90738e11bd1a05af327198b6c683ee0f
|
File details
Details for the file fastpysgi-0.1-cp314-cp314-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 142.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9faad2a26860eb943b61f8729adcad97de3f692db8657a5b292777d0f00a5a3
|
|
| MD5 |
fb2288c7a31e359a0c105e3ccb496ee9
|
|
| BLAKE2b-256 |
2396f8b2ccf6fe3ec234847254d415f8f48a27bb6d18f4bd1c8fddb8e0c1b7a6
|
File details
Details for the file fastpysgi-0.1-cp314-cp314-manylinux_2_28_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314-manylinux_2_28_i686.whl
- Upload date:
- Size: 156.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c27c2b5c0aeffa7ae532418a19cb3143a5d286bce703f142244f4200b701da26
|
|
| MD5 |
9afc70c749ad63bde6432b5461eb0499
|
|
| BLAKE2b-256 |
a39e44679ef9c58c2a43995202951ad909948cc5db96eaf1d1b87e2bc12d70f7
|
File details
Details for the file fastpysgi-0.1-cp314-cp314-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 137.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
642e8cb9e80ff793a6da0576e0957f719be0cf67da392829a7e3763561bcc946
|
|
| MD5 |
39bae9075b61bc6fbc239ef0ac1fd586
|
|
| BLAKE2b-256 |
b1a86e5866df7beb462887b14b645405d5e59ff5a20bac89f8a12004a0ab6db3
|
File details
Details for the file fastpysgi-0.1-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 133.6 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
105ac35d428a609a397da99cb9e3a596ef747845f540c729fdb519e0b6967718
|
|
| MD5 |
87e93ea0fd0b44e3f93c4fa184cf2adc
|
|
| BLAKE2b-256 |
4b237254c6475087d0e25e18ef7fb099d04d2913b4f31a932f5603dc82ed9b4a
|
File details
Details for the file fastpysgi-0.1-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 139.1 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdd0ff9918e590ef3358be15e981bf1a59bf561ef70d09350e5f0ec766d59a57
|
|
| MD5 |
fe40fe569ba5370d83282a22fb610724
|
|
| BLAKE2b-256 |
8f7f09fd3f4f717fb461ee2198bfe3fff01102297c95ee57d4da30ca4c4dc2e5
|
File details
Details for the file fastpysgi-0.1-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 80.0 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f40270a22d8e62e2636e8ec8fa50131d8e48eaff2a6b17ceb8e507da5f5ee28
|
|
| MD5 |
5c2bd7da5f759d35e3bc6e81f833ab3f
|
|
| BLAKE2b-256 |
4c3bc77c81e984b2d750e2023990de08ff1dde9f6cceecf259c6610457732e4e
|
File details
Details for the file fastpysgi-0.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 90.6 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ae886a099bb46a2e1d8db182356dcc8ee1652ba98dc485b2b1c06bb4a4c1d44
|
|
| MD5 |
d0f32773e289c3b776468f26af222560
|
|
| BLAKE2b-256 |
e6f7939ad8c8f5980a672625afc8866520bc63cd8c163e6f467b98e1af927f05
|
File details
Details for the file fastpysgi-0.1-cp313-cp313-win32.whl.
File metadata
- Download URL: fastpysgi-0.1-cp313-cp313-win32.whl
- Upload date:
- Size: 81.7 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d862db75bbdf2bb95e2dcfc8e394b174cdbb748ec9ef125f055c9308c3548e44
|
|
| MD5 |
aa2e8f98ebb5885a77f2cb28cbd590ed
|
|
| BLAKE2b-256 |
732a9c8a0234e74230a9fc827e158a507a484df4b209a0193b2622d5197980c7
|
File details
Details for the file fastpysgi-0.1-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 143.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f5ca5574a107e4f36f55398f756274b2e746443369f1b6f51dbaf94b76f621a
|
|
| MD5 |
70af90fb22a43e3b1ad94be4fcb1dd20
|
|
| BLAKE2b-256 |
0f974dc342bfbc390c6a651e005ef03f8beb0198b3bdc58277d8ec2e95d613ad
|
File details
Details for the file fastpysgi-0.1-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 157.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
806fe4269faf7ab2c008f6b6911600e600e7b11cf59416f5d8162d5ab0a4dac4
|
|
| MD5 |
b2e376fada6100e445b77f4b05a28132
|
|
| BLAKE2b-256 |
3a1195e4a7192a82bf8fac46996626306cf3ef276e1b190156d11183696345fc
|
File details
Details for the file fastpysgi-0.1-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 139.0 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2596cbdf8ebe44a7ab8d355192d3ea8ff98b9df886a54d8770d51823bc572be7
|
|
| MD5 |
05825ece361c3ef558449082c4414b34
|
|
| BLAKE2b-256 |
ba2ccf0949882379fa6dabbce9b419c91f320885919165364c6d25f3e1ebc4dc
|
File details
Details for the file fastpysgi-0.1-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 142.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ecfb092fe707d2f74e71f93e55495df5dd379486736cf7998cd7002ef3e4b179
|
|
| MD5 |
dd7d46eefa2f143178cbbd0923fccdde
|
|
| BLAKE2b-256 |
214bd444c6768601d3f379bc0334539b2d1eb21731ff4801fb8d3784a5b8183e
|
File details
Details for the file fastpysgi-0.1-cp313-cp313-manylinux_2_28_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp313-cp313-manylinux_2_28_i686.whl
- Upload date:
- Size: 156.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d20d3599664b6a347557893b0ba41eb5922291228c0a60b65acb5872e462b9cb
|
|
| MD5 |
467e8eafc56f76b01b740462d6e43029
|
|
| BLAKE2b-256 |
0b368f900fbd1f77fe3a2428d12d9287a8500800aacdef6a8591ecc803b68166
|
File details
Details for the file fastpysgi-0.1-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 137.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02fec1608530db6bb9f6ab00ad4259a379c752847e705cfe4238f18ec8639ead
|
|
| MD5 |
ef24d6c2d2c4735dfc3c6cf6c3b89655
|
|
| BLAKE2b-256 |
efea89d4494efbe7344dbce0b0d486602ef486748ed58aa7b1c1fc0d94bd1aa0
|
File details
Details for the file fastpysgi-0.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 133.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a020813f68ac3ac12ebd6faab58c9eb61584b6ea8f73445db885ed462a40ac1
|
|
| MD5 |
28ae8a780037a69f2e1fd647da10a6b8
|
|
| BLAKE2b-256 |
8b3987a1234525cd16c591377c3ec63a6f905a41f0a124ece719e70ed03512b9
|
File details
Details for the file fastpysgi-0.1-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 139.0 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7254c5463a2f6f3e7623d173af18314e16021c8628df0619049bcf19ba9ffe6
|
|
| MD5 |
630d9c893bde4ccf7a0b32759db09bff
|
|
| BLAKE2b-256 |
ccc7332fb5cf2c935f02f08ee4178e5852576467ba6e2fd4e299d543415cb94c
|
File details
Details for the file fastpysgi-0.1-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 80.0 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0dac3a601e11625eeccdaf46df523dfa5336cc1a424bb696ee5b6084383d2d0
|
|
| MD5 |
5a021a080f98900d674690e3ff1f3732
|
|
| BLAKE2b-256 |
a2f807e23230473d937eb1d7030543a9466a341280098674d4f0b9e86879fb3f
|
File details
Details for the file fastpysgi-0.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 90.6 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a45437b44393d908d3d5c8b018f9d1f8e5b007bbad73b457c3e92d5ef004c30
|
|
| MD5 |
6724c6873088a2a8044ca9edd36df04e
|
|
| BLAKE2b-256 |
a654b084167d1c56e63099e8524690c34f460c5d12889846058d60348981b5cf
|
File details
Details for the file fastpysgi-0.1-cp312-cp312-win32.whl.
File metadata
- Download URL: fastpysgi-0.1-cp312-cp312-win32.whl
- Upload date:
- Size: 81.7 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
727e9f16a591e6ebdf442c53a037df39560913e2721dfe2784ac9db1064f9af0
|
|
| MD5 |
72a365d50122ccee090feb45e038b956
|
|
| BLAKE2b-256 |
a8566e3abef340189048e23890d60486936b4d38614457673fd64f0ec67d343e
|
File details
Details for the file fastpysgi-0.1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 143.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5181cc7b76786024d9a80cbd19fb5c47aa44b60338ba435f34cb6a7134ff6421
|
|
| MD5 |
2f265c918fb4ce57e3923c2050fa50f9
|
|
| BLAKE2b-256 |
5d47019bc31d00d5ebff255dddd0292e060cd514a9b77cde9310f3201480d4cb
|
File details
Details for the file fastpysgi-0.1-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 157.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4741658b8428b08dec3e3cbe71cd651eb1e78bb16d2c8e162cbc695274e6199e
|
|
| MD5 |
3a92fa5dc914db1e3e935b60cbe07abd
|
|
| BLAKE2b-256 |
39140da9f9e730641316483139007f4373b33018b7fe016a266f92be73bb0625
|
File details
Details for the file fastpysgi-0.1-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 139.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5151c930f57a016c8e5c9f5a12bc8b26f2216fedb7567470185973a207560b87
|
|
| MD5 |
6beae1c8445ce7a7e37e0ae3dc385c3a
|
|
| BLAKE2b-256 |
96bb1af107606e48bb7755c51bedb48d74b9880e464927cd3199180656c58d27
|
File details
Details for the file fastpysgi-0.1-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 142.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
158ed1d65fa0eb664b6b5103efe66ad7ab8e1251a155c57dbb3dba222d086947
|
|
| MD5 |
a17b795db6e9c7c7b7e98c39ccff63da
|
|
| BLAKE2b-256 |
6d7e5e3b8905ccb1a3eafed13ea8f29fd6f96c07d675a3737ad9f21466f7f5b1
|
File details
Details for the file fastpysgi-0.1-cp312-cp312-manylinux_2_28_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp312-cp312-manylinux_2_28_i686.whl
- Upload date:
- Size: 156.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c39dc4ec371b758dcab4342e70ed199a38b0fa4d72c36e4cd652c01f1ea9d3ea
|
|
| MD5 |
84c2ea1f59130b8af36f759f18375a48
|
|
| BLAKE2b-256 |
0849e4694734e7395ecd55e627ed4d5410925caa82700eac2a3a91fa4276db85
|
File details
Details for the file fastpysgi-0.1-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 137.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5e3ca5174a2db74a60386ea9ccd0627c36ca29f546e0406a3fa57029ce2d7db
|
|
| MD5 |
8c7cbab8375379ce41c1f397de2fb86b
|
|
| BLAKE2b-256 |
91e0017249a714e2014ae1d931534505b82c9d9c188aa98a3f39b8caaccc1e7f
|
File details
Details for the file fastpysgi-0.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 133.5 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95f80a7615dff2cb8484f4a9651edc0e0b1414cd92c94602c0b7a67e7b3d10c5
|
|
| MD5 |
63f0c4f0532c9760467734c3ab74a5e8
|
|
| BLAKE2b-256 |
3b228be42c3d5ad0cbebe175638c2130352aba0f8d7e136bb234f8aa23b4dd4e
|
File details
Details for the file fastpysgi-0.1-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 139.0 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f751f15dcd67926bfc5760a6cfcc73a54fa29bc1ee302a561b5a3997cc8e780c
|
|
| MD5 |
30a26effdc63e7f8c6e1a32ffb6d58c6
|
|
| BLAKE2b-256 |
7966a895dd1d7d6573b3017a46001216f3c4159ad616017bd8d6e2fc542b363e
|
File details
Details for the file fastpysgi-0.1-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 80.0 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ffbe740e3b3377b7b8ff2671bc9732dfcf902cdc7e8f7b60f8659a4357006b43
|
|
| MD5 |
8dd6257630acefb17d6fb8e4b0824cf6
|
|
| BLAKE2b-256 |
053b3d89f90953b00ee3d26b768a8836ac4c0695cb22d65a3c046fcc2c246180
|
File details
Details for the file fastpysgi-0.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 90.4 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29047e18c5c7bb73dd26dcd854bcd7e0bf173de09e0c8eac31ccba23fb896e03
|
|
| MD5 |
cad496945ec521a2de9e6ef4e2342031
|
|
| BLAKE2b-256 |
f2c3a6835e35fa3a0e146cbe742e28ae76f0c01bb61130efc9dbcd91d6f442c4
|
File details
Details for the file fastpysgi-0.1-cp311-cp311-win32.whl.
File metadata
- Download URL: fastpysgi-0.1-cp311-cp311-win32.whl
- Upload date:
- Size: 81.4 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27de51e19ce64e5e20508893f396e57f4fe5fe9069605ca07e987c5de5d75abe
|
|
| MD5 |
064889e3f86c7dbc5be7d9a7d39e84af
|
|
| BLAKE2b-256 |
a335a6b906a795770fe7ec349298f2a046caa10e6e90b5bd714148205301b340
|
File details
Details for the file fastpysgi-0.1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 142.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49ae0f4460b0a5e463e8fe56ed6de067d844d28162ee748a8d1e3f0da3fbad70
|
|
| MD5 |
1b0e0d943f8050a92a8be9813bdef4c8
|
|
| BLAKE2b-256 |
8abf31bf48ff6426fb31540e98bccfd0360eeb5aec10d26cc9b8e73eaf4cfe04
|
File details
Details for the file fastpysgi-0.1-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 157.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1ef5eedd76a77f1999491cf1c433d5415f13f66f9c48a7b5d740c4fdfec5224
|
|
| MD5 |
fe04bf63ca7037b269c843195e9f15c6
|
|
| BLAKE2b-256 |
484c0b1f5a7ca9ed5b16793dcdc60f2a8c7f85603cd0c274520d331def062216
|
File details
Details for the file fastpysgi-0.1-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 139.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5a6b907e00c304e4cf05a3e6d362687137739adb50b674cf94809ffdca134a4
|
|
| MD5 |
b666e1784ae6112efcd1e9c604ea2875
|
|
| BLAKE2b-256 |
d636e6301aa3a8d71ef58c0ada0f6fe9aef72a2b8515d8477a120ef50b02bdba
|
File details
Details for the file fastpysgi-0.1-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 142.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a2581b08f766a4fb9403539865e0f8da57fb239c1b803e9b490b0d5c95182cd
|
|
| MD5 |
0529383133b0fe3749adcca4dae0b53f
|
|
| BLAKE2b-256 |
a858482463e942b38542ae52b63d4e3de78aeb8e647879a11d0b5fcd0eedf4f1
|
File details
Details for the file fastpysgi-0.1-cp311-cp311-manylinux_2_28_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp311-cp311-manylinux_2_28_i686.whl
- Upload date:
- Size: 156.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e2d71b2e905b40ce2da12fa3c6855d3acacc7c353d1c762448bedc5425f6964
|
|
| MD5 |
c1e6316dcfeedfc8a96deae6149454e5
|
|
| BLAKE2b-256 |
e9f26bdd74cadcb2257e215b3bf8ff20e2d041d68c31b3dd64475b085eea8d36
|
File details
Details for the file fastpysgi-0.1-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 137.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cb033d38c7efce975d97f907f02ed779ac8c87696a7db7f0bd1e2145e688b74
|
|
| MD5 |
196c4ffc60e1d2f6f3fdff4f73b74d7a
|
|
| BLAKE2b-256 |
61d67a0989be764e63ca5ed831bc8a2360f0146eeccff4f69c1ea1214fb45a1c
|
File details
Details for the file fastpysgi-0.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 133.3 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f8a0bc088edb849ea3acce56431d751cc3c026bbaa28eb659c8ea8708c7cf78
|
|
| MD5 |
c5ebe2c088214819831e2fba056f5f43
|
|
| BLAKE2b-256 |
dc798658563c2d8f6bf2164ba735058a272f7bf1e59a154526516f917f6ed2c9
|
File details
Details for the file fastpysgi-0.1-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 138.8 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
579f800aea2c91639e29689a1f23cd013441aa739388487bf0d96272a28112ca
|
|
| MD5 |
0c7645e96f97d49dc82f2ea1ca5804b8
|
|
| BLAKE2b-256 |
ad4fdbd94fc2d82a6ab0ba00668120e81c752230f41626eb8b6b68158f725dc4
|
File details
Details for the file fastpysgi-0.1-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 80.1 kB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71597305938c740b9c74209e546a71b13c8230696fbb5f89d2efa14ff3c23748
|
|
| MD5 |
bee0ebadd42b66f79f2997c3517973d4
|
|
| BLAKE2b-256 |
ef9a04480b37081ef3be508ace28a6886e1aefb1c763508e53e00cc5003976c4
|
File details
Details for the file fastpysgi-0.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 90.3 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17edc6601484392aaeb5f59ef2fb5bd29da1829110bd0a43251510612158aa31
|
|
| MD5 |
5f7168a2956a9de052b769693a83fce8
|
|
| BLAKE2b-256 |
7c0cf6ddf3e4de129666c16ac49cb5eda12ea0f452fb0ed51dfcf2b428422330
|
File details
Details for the file fastpysgi-0.1-cp310-cp310-win32.whl.
File metadata
- Download URL: fastpysgi-0.1-cp310-cp310-win32.whl
- Upload date:
- Size: 81.5 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c9b979e328098a8dd0d706901def2f194bb364bdba0c6aab66eb0a31bdb9fa1
|
|
| MD5 |
97ca37c697e5a2649a2ee420560259d3
|
|
| BLAKE2b-256 |
69f67b0cee34c165c5b65188834712334c109218ed6da7e6bbd0b36460cc30ba
|
File details
Details for the file fastpysgi-0.1-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 142.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c18b2d21b16b339d5dfa2a90335953d96c244b9ca98c7a644ee4eee8d7797b93
|
|
| MD5 |
a316cf81da9b902b79ff43a6834a625d
|
|
| BLAKE2b-256 |
eece18209e4dca7fa50a9b66ab2ee78700e53a10ffca4d589dc3cacb13d3515a
|
File details
Details for the file fastpysgi-0.1-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 157.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e1410953c2085000844d981d1be0de1ec520ad0bae55be4bd164643453994cb
|
|
| MD5 |
3dc58ab1dc4d01bfc0f9b2f626b03b55
|
|
| BLAKE2b-256 |
c3bf1faa9e7d81bf9da48fa1c35908ff3df2d5066b2588ec094522f1f9c6af22
|
File details
Details for the file fastpysgi-0.1-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 139.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0be59f9598dc01ca754cf21499fe7188562cd8ba245d06f73c46ff9b25727e5
|
|
| MD5 |
65d407ce0ae0d762cbeaf16d6f8807c7
|
|
| BLAKE2b-256 |
f05a26f1672818d72bae1358e294c10795653bed49d640af308125086ca83f40
|
File details
Details for the file fastpysgi-0.1-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 142.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae77244153a0a46fc11e2701170c3491c1dfdd3a4eefb414fb4db3303398ac42
|
|
| MD5 |
00a835f1f81facc163900d9ff826fd78
|
|
| BLAKE2b-256 |
0137da0a9dd7f7542bdbc81807e3a2b434ba028c0aed8049c3103ff102790be9
|
File details
Details for the file fastpysgi-0.1-cp310-cp310-manylinux_2_28_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp310-cp310-manylinux_2_28_i686.whl
- Upload date:
- Size: 156.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71619dc7093193957daf8a78b470fc63349cc03fcd229499d3895a53807c42c8
|
|
| MD5 |
90d20d3e0c5092c41fbab60a26b88fe8
|
|
| BLAKE2b-256 |
d7f1d3d3b880c8f2c8609c8e506bda8b6cacc26b7b50ac99d6e2ad590373869f
|
File details
Details for the file fastpysgi-0.1-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp310-cp310-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 137.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b92dacf3a1dae21f200a215858c8c389642d20fc74c19504923e21358f081d8
|
|
| MD5 |
52daceccfd3b155865bc831747e0db22
|
|
| BLAKE2b-256 |
61975cd9ceda1cb208734c151e61c166361276576931c0e24ebd25c978ce8aab
|
File details
Details for the file fastpysgi-0.1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 133.4 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d8762a7dab9a30b162c39033a222bc41db30a556b9f38c9140010dab6b6740f
|
|
| MD5 |
af1f080460c0814359043d5bca163220
|
|
| BLAKE2b-256 |
4727b538fcc36da9aa09d0be0135d2cc3141c51927ac9389f92bcfacb5b848e8
|
File details
Details for the file fastpysgi-0.1-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 138.8 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
679ed9ee7e6a27255b3fafa006a468087d5367ac6d3bba89477f9b6b33f0c71a
|
|
| MD5 |
2cc64ba850d916ef4bd4d08d1cf1f127
|
|
| BLAKE2b-256 |
97e88f59d2c9fea2bbdf5655f04f1fa276acf1e17502c1db1e3d2c6d86c3e016
|
File details
Details for the file fastpysgi-0.1-cp39-cp39-win_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp39-cp39-win_arm64.whl
- Upload date:
- Size: 80.1 kB
- Tags: CPython 3.9, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
367ed908ec87787aa4b8f0f3aa9f47a8c8fc885f8eceb81d4c281ba0bfaca507
|
|
| MD5 |
c199e56339d4cf176fbb9949b118ac0f
|
|
| BLAKE2b-256 |
0ae297681ef29fe550ca34e3fbc7e1052ba0b3118fb84e27aadc0c9199bfcb7e
|
File details
Details for the file fastpysgi-0.1-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 90.4 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7182d4312a7440e34cfeb82635974dfb44ce80fb6616c6f586581ab77456d31
|
|
| MD5 |
16fa82c554a1364c8195186999f3cade
|
|
| BLAKE2b-256 |
4cd1f2882e8ae58e494e590c5fc7156d89c28e7763bd8bcd24872b8490ef864b
|
File details
Details for the file fastpysgi-0.1-cp39-cp39-win32.whl.
File metadata
- Download URL: fastpysgi-0.1-cp39-cp39-win32.whl
- Upload date:
- Size: 81.5 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0381760551a040ba6ad96830276a61b0eba03191149020a2d02ae6301b39803a
|
|
| MD5 |
694a586164a82cd7e9f13a3efb2c1c49
|
|
| BLAKE2b-256 |
009ecde22767c93ba87f18e2d9b3c4478570ec0365a01bfa61ad304f52d9e9bb
|
File details
Details for the file fastpysgi-0.1-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 142.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c878ef320cae1be12552fd0cce575d0d63a89fb5ea810253855b9055c6b63c93
|
|
| MD5 |
6105edf6c28bae1f7f1cf04f013bfe0a
|
|
| BLAKE2b-256 |
54d923b6b869a23daa0ea54a11a8a96143dbbf70e708c79489cb69c17fe20424
|
File details
Details for the file fastpysgi-0.1-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 157.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d117de5ae9795afb35106b9f3cc116a8a15002bfe9116c205ba1af1d5650014
|
|
| MD5 |
45ea5808992882d9f1150f967fa6b94a
|
|
| BLAKE2b-256 |
d37f06814b69233c9159934695c037224adc416904b9b407bec3ed57e08f4fd0
|
File details
Details for the file fastpysgi-0.1-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 139.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8028b2127cfebbcbe81d028b7a41fa9bf002891c8e62ae2b08d273718a990df6
|
|
| MD5 |
0e09e7869188f763f9b95565f703e30e
|
|
| BLAKE2b-256 |
49cd1580c9c152a02afd8f88539c8b5d452cef5999a5181134bf1b25d76edfed
|
File details
Details for the file fastpysgi-0.1-cp39-cp39-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp39-cp39-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 142.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de0fac630855fb20dde585d5d28b745c60b642701b8405c463c8a45831d61cdd
|
|
| MD5 |
a35e195264cc84e816479bd7233a67fa
|
|
| BLAKE2b-256 |
9f3d5cb8141309ca0b8e37b762c7cf656c692162fec3133a31ce9e567850316a
|
File details
Details for the file fastpysgi-0.1-cp39-cp39-manylinux_2_28_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp39-cp39-manylinux_2_28_i686.whl
- Upload date:
- Size: 156.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d5351fcfa904891678307b494c6d048c5f49d2f56e975c53fd0081134c13aa1
|
|
| MD5 |
b667628a3653e60c671b554aaa0699fd
|
|
| BLAKE2b-256 |
b0e8911db28c7cd44ea63aa69fde5c862e7fe2de11f4cf7632bc071cee03025c
|
File details
Details for the file fastpysgi-0.1-cp39-cp39-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp39-cp39-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 137.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91c84d6f55040cb1f76fc9391558f4d9e473089866008a99a1b37d7f495802a8
|
|
| MD5 |
4ee040ddb93f9cb5ad11f03868c8f926
|
|
| BLAKE2b-256 |
38cd8cfdcb286a8deae525c0d5508aecedcb91efb879028796d5e5e1d5b37530
|
File details
Details for the file fastpysgi-0.1-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 133.4 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6de56c54628e60085879f8cf964d6d2096863c88a782dd9113ffc776bc46c29e
|
|
| MD5 |
e313c5c708becd1f0f849c3395f7b680
|
|
| BLAKE2b-256 |
15d97b55c173ab6b3a33cba08c1cf56527449850300dd0c4c321ee7d7d4c0074
|
File details
Details for the file fastpysgi-0.1-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 138.8 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eae6e8a72f2f090626ccea5416654a8def755470b86b4161e765b61ab2f59dbc
|
|
| MD5 |
4810dd67f77a66ab6fa5fc2082a94537
|
|
| BLAKE2b-256 |
2c68e43e64ba20f89500c6dd175c1bbd58bbc5cba40ab07ce1c11402346f404d
|
File details
Details for the file fastpysgi-0.1-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 90.3 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb21d370325ec910622cf2f95427bef5710541c63b7b72acf2aeda0abfd5d231
|
|
| MD5 |
cac6fe309981d3b2bc353c9f582d9a63
|
|
| BLAKE2b-256 |
10d61708511229df7d6a76a637cb76b116fd2843b2b1bfad4f582116195e63c6
|
File details
Details for the file fastpysgi-0.1-cp38-cp38-win32.whl.
File metadata
- Download URL: fastpysgi-0.1-cp38-cp38-win32.whl
- Upload date:
- Size: 81.5 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee4f5e186eef07cacd7db2d6e54ce5324d9a165b3ea32ba20a5dbd38b89ce3ae
|
|
| MD5 |
c2977c38cc4c9e7a858a132f3803b13e
|
|
| BLAKE2b-256 |
db5e2dd2cbdef775cfbda329d13a35096197726f844f3f952323947a3e52a349
|
File details
Details for the file fastpysgi-0.1-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 142.7 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6eab0b1901a2dd339b132acb08aea519247cb40e0130d587d1dfc1370bd60889
|
|
| MD5 |
8889d03682e1531ef16850c754306aab
|
|
| BLAKE2b-256 |
2b1d389962f1d735d01058f8becfb59decd313496dff0ca12be2001b9ad3c358
|
File details
Details for the file fastpysgi-0.1-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 157.3 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
988d69dcd9078ca48c87596bede107d80c28dfe04ca1f3bac9e41d9d6fea3462
|
|
| MD5 |
8c5c2f0ac2bb67108c9e9895fa35c457
|
|
| BLAKE2b-256 |
082ead87b9fbcb1a1b6968eb7f9959202e13024aca588d13d4964ace95cd7a41
|
File details
Details for the file fastpysgi-0.1-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 138.9 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3876c3ef930c60ef6f92e87ac512c27a76b0b05ffbe3ecd2a934d7f807c5e11
|
|
| MD5 |
526a7cc29c01e0de574e417f60ac5c1c
|
|
| BLAKE2b-256 |
757397a5313c84390ea6423c0eeec23280dad838bcd950db527f20e2a2b6fe9a
|
File details
Details for the file fastpysgi-0.1-cp38-cp38-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp38-cp38-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 142.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1c75bf08104d897e1a3a7c43e392117315caf59aae71632a3d7ff0aeaa8bc23
|
|
| MD5 |
2a4f8ec3241f56372af32593b0652e3b
|
|
| BLAKE2b-256 |
876cbadfd8ef051003bd499f669b54bc5ec1ed13a83e64e211c149620813b145
|
File details
Details for the file fastpysgi-0.1-cp38-cp38-manylinux_2_28_i686.whl.
File metadata
- Download URL: fastpysgi-0.1-cp38-cp38-manylinux_2_28_i686.whl
- Upload date:
- Size: 156.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
531626f6831115f23c3a0ee43be13e8af8c6d941913a2ca5113623735b2dd753
|
|
| MD5 |
0a90c99c60ea30910756d2cbf898e199
|
|
| BLAKE2b-256 |
9f9aae9013cb689a9176a69bbf4505f7ae9bad25d6ea85c62c80a282facdd03f
|
File details
Details for the file fastpysgi-0.1-cp38-cp38-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp38-cp38-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 136.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d6c8b44e9216554879b2bb21f5b45f49a33040b345ea715e28467e4bea4b50b
|
|
| MD5 |
20615d33f8db990dbfafce236d993976
|
|
| BLAKE2b-256 |
5f8c06af62a9acfcf20eb248c37fee1187d92751be1ec101f8db439d2d412d36
|
File details
Details for the file fastpysgi-0.1-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 133.4 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e65cb5f7b24792c7e31ffe9bc34c9e79bd6744e2575de83f8217128aa47481d
|
|
| MD5 |
3b6de5b5fe9344fb3f7647d4b2cb7144
|
|
| BLAKE2b-256 |
1977d457f95baffa12df3b5f2ac95e0394be8631a64f3f7297f126634f80fcfd
|
File details
Details for the file fastpysgi-0.1-cp38-cp38-macosx_10_9_x86_64.whl.
File metadata
- Download URL: fastpysgi-0.1-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 138.8 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b8a2b92734a176c0056c7a6517ca876feff4db17b57377fb0950c93d6f557dd
|
|
| MD5 |
834bd11ffa6a4a69e6cf27941daa40e9
|
|
| BLAKE2b-256 |
c40e53459ce3101c56af18a9d36fbf79509ef2a330ca9ddba23a2ebf142f53fa
|