Skip to main content

An ultra fast WSGI/ASGI server for Python

Project description


Pypi Python 3.8-3.14

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.

Dependencies

None

Supported Platforms

Platform Linux MacOs Windows
Support

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(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(app, host='127.0.0.1', port=5000)

Example usage with FastAPI

import fastpysgi
import fastapi

app = fastapi.FastAPI()

@app.get("/")
async def hello_world():
    return fastapi.responses.PlainTextResponse(b"Hello, World!\n")

if __name__ == '__main__':
    fastpysgi.run(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

fastpysgi-0.5.tar.gz (708.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fastpysgi-0.5-pp311-pypy311_pp73-win_amd64.whl (110.7 kB view details)

Uploaded PyPyWindows x86-64

fastpysgi-0.5-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (170.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

fastpysgi-0.5-pp311-pypy311_pp73-manylinux_2_28_i686.whl (189.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

fastpysgi-0.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (165.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

fastpysgi-0.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl (157.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

fastpysgi-0.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (163.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

fastpysgi-0.5-cp314-cp314t-win_arm64.whl (102.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

fastpysgi-0.5-cp314-cp314t-win_amd64.whl (118.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

fastpysgi-0.5-cp314-cp314t-win32.whl (106.4 kB view details)

Uploaded CPython 3.14tWindows x86

fastpysgi-0.5-cp314-cp314t-musllinux_1_2_x86_64.whl (180.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fastpysgi-0.5-cp314-cp314t-musllinux_1_2_i686.whl (198.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fastpysgi-0.5-cp314-cp314t-musllinux_1_2_aarch64.whl (175.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fastpysgi-0.5-cp314-cp314t-manylinux_2_28_x86_64.whl (178.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

fastpysgi-0.5-cp314-cp314t-manylinux_2_28_i686.whl (197.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

fastpysgi-0.5-cp314-cp314t-manylinux_2_28_aarch64.whl (172.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

fastpysgi-0.5-cp314-cp314t-macosx_11_0_arm64.whl (159.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

fastpysgi-0.5-cp314-cp314t-macosx_10_15_x86_64.whl (166.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

fastpysgi-0.5-cp314-cp314-win_arm64.whl (100.8 kB view details)

Uploaded CPython 3.14Windows ARM64

fastpysgi-0.5-cp314-cp314-win_amd64.whl (114.5 kB view details)

Uploaded CPython 3.14Windows x86-64

fastpysgi-0.5-cp314-cp314-win32.whl (103.1 kB view details)

Uploaded CPython 3.14Windows x86

fastpysgi-0.5-cp314-cp314-musllinux_1_2_x86_64.whl (177.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fastpysgi-0.5-cp314-cp314-musllinux_1_2_i686.whl (196.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

fastpysgi-0.5-cp314-cp314-musllinux_1_2_aarch64.whl (173.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fastpysgi-0.5-cp314-cp314-manylinux_2_28_x86_64.whl (176.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

fastpysgi-0.5-cp314-cp314-manylinux_2_28_i686.whl (194.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

fastpysgi-0.5-cp314-cp314-manylinux_2_28_aarch64.whl (170.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

fastpysgi-0.5-cp314-cp314-macosx_11_0_arm64.whl (157.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastpysgi-0.5-cp314-cp314-macosx_10_15_x86_64.whl (164.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

fastpysgi-0.5-cp313-cp313-win_arm64.whl (97.4 kB view details)

Uploaded CPython 3.13Windows ARM64

fastpysgi-0.5-cp313-cp313-win_amd64.whl (110.9 kB view details)

Uploaded CPython 3.13Windows x86-64

fastpysgi-0.5-cp313-cp313-win32.whl (99.6 kB view details)

Uploaded CPython 3.13Windows x86

fastpysgi-0.5-cp313-cp313-musllinux_1_2_x86_64.whl (177.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastpysgi-0.5-cp313-cp313-musllinux_1_2_i686.whl (196.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fastpysgi-0.5-cp313-cp313-musllinux_1_2_aarch64.whl (173.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastpysgi-0.5-cp313-cp313-manylinux_2_28_x86_64.whl (176.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

fastpysgi-0.5-cp313-cp313-manylinux_2_28_i686.whl (194.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

fastpysgi-0.5-cp313-cp313-manylinux_2_28_aarch64.whl (170.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

fastpysgi-0.5-cp313-cp313-macosx_11_0_arm64.whl (157.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastpysgi-0.5-cp313-cp313-macosx_10_13_x86_64.whl (164.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fastpysgi-0.5-cp312-cp312-win_arm64.whl (97.4 kB view details)

Uploaded CPython 3.12Windows ARM64

fastpysgi-0.5-cp312-cp312-win_amd64.whl (110.9 kB view details)

Uploaded CPython 3.12Windows x86-64

fastpysgi-0.5-cp312-cp312-win32.whl (99.6 kB view details)

Uploaded CPython 3.12Windows x86

fastpysgi-0.5-cp312-cp312-musllinux_1_2_x86_64.whl (177.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastpysgi-0.5-cp312-cp312-musllinux_1_2_i686.whl (196.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fastpysgi-0.5-cp312-cp312-musllinux_1_2_aarch64.whl (173.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastpysgi-0.5-cp312-cp312-manylinux_2_28_x86_64.whl (176.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

fastpysgi-0.5-cp312-cp312-manylinux_2_28_i686.whl (194.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

fastpysgi-0.5-cp312-cp312-manylinux_2_28_aarch64.whl (170.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

fastpysgi-0.5-cp312-cp312-macosx_11_0_arm64.whl (157.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastpysgi-0.5-cp312-cp312-macosx_10_13_x86_64.whl (164.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fastpysgi-0.5-cp311-cp311-win_arm64.whl (97.5 kB view details)

Uploaded CPython 3.11Windows ARM64

fastpysgi-0.5-cp311-cp311-win_amd64.whl (110.9 kB view details)

Uploaded CPython 3.11Windows x86-64

fastpysgi-0.5-cp311-cp311-win32.whl (99.0 kB view details)

Uploaded CPython 3.11Windows x86

fastpysgi-0.5-cp311-cp311-musllinux_1_2_x86_64.whl (177.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastpysgi-0.5-cp311-cp311-musllinux_1_2_i686.whl (195.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fastpysgi-0.5-cp311-cp311-musllinux_1_2_aarch64.whl (172.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastpysgi-0.5-cp311-cp311-manylinux_2_28_x86_64.whl (175.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

fastpysgi-0.5-cp311-cp311-manylinux_2_28_i686.whl (194.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

fastpysgi-0.5-cp311-cp311-manylinux_2_28_aarch64.whl (169.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

fastpysgi-0.5-cp311-cp311-macosx_11_0_arm64.whl (157.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastpysgi-0.5-cp311-cp311-macosx_10_9_x86_64.whl (164.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fastpysgi-0.5-cp310-cp310-win_arm64.whl (97.6 kB view details)

Uploaded CPython 3.10Windows ARM64

fastpysgi-0.5-cp310-cp310-win_amd64.whl (110.7 kB view details)

Uploaded CPython 3.10Windows x86-64

fastpysgi-0.5-cp310-cp310-win32.whl (99.1 kB view details)

Uploaded CPython 3.10Windows x86

fastpysgi-0.5-cp310-cp310-musllinux_1_2_x86_64.whl (177.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastpysgi-0.5-cp310-cp310-musllinux_1_2_i686.whl (195.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fastpysgi-0.5-cp310-cp310-musllinux_1_2_aarch64.whl (172.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastpysgi-0.5-cp310-cp310-manylinux_2_28_x86_64.whl (175.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

fastpysgi-0.5-cp310-cp310-manylinux_2_28_i686.whl (194.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

fastpysgi-0.5-cp310-cp310-manylinux_2_28_aarch64.whl (169.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

fastpysgi-0.5-cp310-cp310-macosx_11_0_arm64.whl (157.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastpysgi-0.5-cp310-cp310-macosx_10_9_x86_64.whl (164.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fastpysgi-0.5-cp39-cp39-win_arm64.whl (97.6 kB view details)

Uploaded CPython 3.9Windows ARM64

fastpysgi-0.5-cp39-cp39-win_amd64.whl (110.8 kB view details)

Uploaded CPython 3.9Windows x86-64

fastpysgi-0.5-cp39-cp39-win32.whl (99.1 kB view details)

Uploaded CPython 3.9Windows x86

fastpysgi-0.5-cp39-cp39-musllinux_1_2_x86_64.whl (177.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fastpysgi-0.5-cp39-cp39-musllinux_1_2_i686.whl (195.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fastpysgi-0.5-cp39-cp39-musllinux_1_2_aarch64.whl (173.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fastpysgi-0.5-cp39-cp39-manylinux_2_28_x86_64.whl (175.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

fastpysgi-0.5-cp39-cp39-manylinux_2_28_i686.whl (194.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

fastpysgi-0.5-cp39-cp39-manylinux_2_28_aarch64.whl (169.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

fastpysgi-0.5-cp39-cp39-macosx_11_0_arm64.whl (157.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fastpysgi-0.5-cp39-cp39-macosx_10_9_x86_64.whl (164.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fastpysgi-0.5-cp38-cp38-win_amd64.whl (110.6 kB view details)

Uploaded CPython 3.8Windows x86-64

fastpysgi-0.5-cp38-cp38-win32.whl (98.9 kB view details)

Uploaded CPython 3.8Windows x86

fastpysgi-0.5-cp38-cp38-musllinux_1_2_x86_64.whl (176.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fastpysgi-0.5-cp38-cp38-musllinux_1_2_i686.whl (195.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

fastpysgi-0.5-cp38-cp38-musllinux_1_2_aarch64.whl (172.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

fastpysgi-0.5-cp38-cp38-manylinux_2_28_x86_64.whl (175.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

fastpysgi-0.5-cp38-cp38-manylinux_2_28_i686.whl (194.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ i686

fastpysgi-0.5-cp38-cp38-manylinux_2_28_aarch64.whl (169.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

fastpysgi-0.5-cp38-cp38-macosx_11_0_arm64.whl (157.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fastpysgi-0.5-cp38-cp38-macosx_10_9_x86_64.whl (163.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file fastpysgi-0.5.tar.gz.

File metadata

  • Download URL: fastpysgi-0.5.tar.gz
  • Upload date:
  • Size: 708.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5.tar.gz
Algorithm Hash digest
SHA256 4b383f52056ef3062a3fe22115a904d8ea0e103ffe7fc9ae76d8b48b92736665
MD5 a9ad7abacfd9b21773a3e4a9815284e2
BLAKE2b-256 70e840d45bc7a7942ec28d185aa31312e53cfe740fc8c5c7c18469244cfb10c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5.tar.gz:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0fd250d527bc053fe3129054979918898b810548931cfa12bf89d561f12d9888
MD5 a58eab02bc6a6987bcccdd2e01ad1e44
BLAKE2b-256 aaf0b4d8c744923eeb433414fab9e1281f0ce42b1863836cda0612b87f677b82

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-pp311-pypy311_pp73-win_amd64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a406b76ddd46d5c11f4bc5bdb4a13f55d925fd0d3f0ef86788411e95dba761d
MD5 a1a379be11921b3569903ad30cb96289
BLAKE2b-256 2db37d72379834282a049dad6099783f387bb9299fed14070c9ef060483eddfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 cec5a9691dcff627918b874aa844b37ee68f3aa465e4a3c4aa1933ced2bded99
MD5 3bbdba77ced478972d59f1fa64c5a81a
BLAKE2b-256 e53e2c0fdce9d51cc80d60f9f64eae4143b27c9b234fffe7489baf4e442d4147

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-pp311-pypy311_pp73-manylinux_2_28_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e79b1dd02aac75e07acb8a3f126db7be4497eaea184aaff2e66f19535d25cbb
MD5 28078d4c3e8ed3694d2688f297c923bb
BLAKE2b-256 198064f1b1db6a6aa96d704b52efd48a7b2dabcdc73fdb9d61dbd0131d0ff00f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de30d891db8175b2c09206d5cf4cc6aea0dd7057c93659b58285623b722c499c
MD5 15430679fa9962a9e783cc35977daaf7
BLAKE2b-256 8745f2d3d3fd7f854caa8f56eb8a2594a14e37694dbab1cf8f1803b71be22a3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 16000b75e47a1a1502ff57f29a312b1ef8ef8ceb552d6a09ad555a7d0d0e881c
MD5 799bb510af468409265aecd8689cf93f
BLAKE2b-256 90d2eb5fccc2f9395f8e65fc28ff9144c5d82aa28800897e51a193b14a058e64

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 102.0 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 caa6966ad3bf068f0206f19bfd07c315bc7e9fa0291f415f41aa035ade0704b8
MD5 0cff687f11b51a8c0c44b20cdebd45e2
BLAKE2b-256 4bf9724e58d78cef20c414912fea576bb619523ce17b0969a85ba7e8a0ba9f5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314t-win_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 118.5 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f938ba1693199f64739a92d6d8689cb6959fe18e95c9d017f20d5530d0e1425a
MD5 a345e23c38dac1e67221063cdf4f16b2
BLAKE2b-256 beda2ec4f8e345c7378fcf5cb3a229cdd0ad3ab21412113f44a0a07524a603fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314t-win_amd64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314t-win32.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 106.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 63d9b833908aa6678f43b8d8f9b5b94e975507c0aad695fc28b3d5e1f6c6397c
MD5 e2a07a6857734330e4755641da75e08c
BLAKE2b-256 0298c8c6e9f5b07373b4f809a9d880d5e08502fa59049e19a52bb49bc3f69fbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314t-win32.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6ed0eede56a7ccb256e411599852d6d41eae787cb01bb5cf70c006dcab5d5b1
MD5 eadb1be5441218830bae28947d56e1e6
BLAKE2b-256 81b18192fa046edae0525f0a16361933d1ff27d8f53cd61ef69f8ac01f74f303

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b515cb298362688ccc573efb3268f013976a9735b5a9c1c803c7e01c26a20933
MD5 624b7cfa25b82a91dd8071defdbed2db
BLAKE2b-256 1e4eae1b97204804dd1d9b537e19b66a251dca0520aabdd690dc2574f821d67f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d06d47ba9a160611139ef30f7a51bff7fa06c47a3edc5cb1e63262922d96895c
MD5 bd97a61eed9d4d59c5fbc26ab2ba5b04
BLAKE2b-256 099f7d36bed1eeab579c039a78b6072c2b42b9b53aedca10572078d79ed01f44

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 636ebe1ea9641f04e32e4f46af2debd9a6d4901e2c4c95e06a9306e2dc5111e7
MD5 cc3bb71030946951e8f3cb166d6b2872
BLAKE2b-256 bcd8722cee1e932ec2313606e8206e96fd570be33b9f3c47cd3ee9ba07e14fac

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314t-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c31bf899c7b21e3efdbb1609b9993472589c4137eda17f8ef7f9a617b38a2d2a
MD5 943e6702107ab933d5379f6489f26e3b
BLAKE2b-256 6f1002323690a87f8f40393954620161e95db6d682e0a2873f9304dcab05232a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314t-manylinux_2_28_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67ae522b36cbad568dac31573dd2f5202393bafc91ba8022323c1bf635da31f1
MD5 080024e4e1fb3d5c9bb3cdd4bd259eb3
BLAKE2b-256 401a9b2b6a24b64630f82d45dd07f44254f8e017408889cf3599d90e1496b72a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4c40a8a9dbe14f8329907d3cb967a8ba8439a2d268d2d3ae1edc00a315a8786
MD5 3e3fcd314d1f0b37a8e11abb24233bd0
BLAKE2b-256 d5d383755255b65eef6bdabc936b2c2c4503c45af411f54f758099fb258dd12f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 79e75c190813e50ed40a981d568a0089df71e5a59217c7d1d87f1dcadff8cf32
MD5 9601c1bbca36e2b80c8353ffaf0cc435
BLAKE2b-256 aa684d5677eebab5a7a545bf7fc4f26222b8abd446150ac09536477d40da7de2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 100.8 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 48e2cea925a313acd3aab40463430358b7e8e7b67286c2e2998806a4c7276864
MD5 41105a38e73693c2894298e6bf4cf8a0
BLAKE2b-256 4d7d59a089d2ae2a9088f4ffd10cc97d0480727f62cb35b19ab1afab5b014874

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314-win_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 114.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fe187a93055432ef5807099ab61b1920b153c4909b9cf7a072d47396980302d6
MD5 162ad6785c2c794f49aa5ba8ac8f2224
BLAKE2b-256 6fa502c1c3121a9ff606eef136cade0ae1b440227340df81d57359116e516286

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314-win_amd64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314-win32.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 103.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5648563308508086a858d6390547ab14feccfb52276d024a53fe3052c08828bb
MD5 d8f557f94866bff2166963bda94abdea
BLAKE2b-256 9ca91d1361efa1c93daaa566149ec62515fb530b71f2bfd8d53708858ebcae7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314-win32.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5da02e55d2349cce57996d16076351f7eed6628dd618a7e9ecdd7f8288af06e
MD5 a3366b48fe3ab28bfb93bcaab0f2933a
BLAKE2b-256 30c2e28d4556a82d3500e631cad709631b9f6509f2fcfc153d77cff6998c4ed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d930a6aae55d8d44ed1a7741950bb09ee6e0aebbdd79669a967eee6ab7e78917
MD5 b3cd00cc03c0abb5673c00a78fbd3857
BLAKE2b-256 e54ce1ef4032b0d8737e6f4e289bda77ff76e33cb7ee03052feaea0cd5e4fc17

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0e4906db9417ba8d5a68f2301aee98858316e0c088aa00d44d0d246e033eddd
MD5 4caa48117a9b2ed100e4df649a432ce7
BLAKE2b-256 4ad6bb07cab71837dba19f782007bbb1c91bb32a5411936585edde7cd27e415c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 716f28f10714bfae6b37bf4cab837231193619c78322c01b02c83fafbc78fe54
MD5 3dacf8b251f587b6af6af55d3314f05d
BLAKE2b-256 968fc005450c408f113f5d4228e20065eee4bada89b6c686b73664a9edb9b52b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5da3eec2cce4bf0faaff6d72d7dd6857a812cf10d5492499c64cd78af89c4eb2
MD5 63c73f5f5f99f617d4398daa58442835
BLAKE2b-256 ee3c0ed4b4566c0715a2aa34a701febce2812cda63ac9e03019a521f90a5935f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314-manylinux_2_28_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d9c86ef027535863e7a4ac51e477de3e7adbc9a00ee306de7e4a7ffe31f7aa9
MD5 4c5055a149d952b8cf51b4de0adecf3a
BLAKE2b-256 07f0a4994dd5819f0f6bb1e80444abca097d039db79fb818cd4cf6cde0a596cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3261f5feda7ddd5023db4b74cd58304da1bb2ccc08d9fd4358d41c1e1b085c68
MD5 ec01a8d7c2afd8e9ebd22469a901f188
BLAKE2b-256 9784c1495de331a4bb56e666fdea4d6d17b68f15af4749e38357bb34ecb48763

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c78a7cb88d68ec81564ee584a0669601ba895ae8681315aa1f130c5e6b466df6
MD5 d1df77d13df9de13f1b240a3dd80a586
BLAKE2b-256 fbfac50409665358c30d54d721f1cbc8bb51bbdbaa36870f8b0c7fd76536f4e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 97.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 da084dc596654f006c0952562a0f48598f17dc85d864a08b441174a9304cd479
MD5 6694ea0ac38d63056a20bcd2b4a9b21c
BLAKE2b-256 76b7c06681a14c44cc2063e7b0ebfa4a0b02b6f61a2a9824323fcb0d5174446d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp313-cp313-win_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 110.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 42bf8c138e59e51cedf0b14e2417f37a23a205fff3f15107b03a69217f6ac098
MD5 088dba270305a367f78d9167ad43cc73
BLAKE2b-256 5189fed25a249843778a59a8284cd010d32e409671c1064ecd2f5c48f2a70657

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp313-cp313-win_amd64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 99.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 066b9f324904041d0e4c6e7966a3279cd3b7bb30279267cd84c2f7b6ee154f47
MD5 6457c6a41464ec38fecd94c643e48924
BLAKE2b-256 dc4011dd58a8042a5f8e69815b1e0b8225532a5dc883f8fdec919df1452d4ecd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp313-cp313-win32.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6df6c6b29a0d229f81943ad1d202e1775911f0730cf29653485a302896326c2
MD5 a26b88b8bf3be7b4190232ae2830ae67
BLAKE2b-256 274e1608496f3257d3140255bd735b9d9086778c542ca40f5e056b40f61ec270

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03e2d564ce7893cf9141f5ea64a32c34b4bf7f90df2aefbcfa7ed6e3a91d5048
MD5 378dfca9b9d62d9e3d338ea24fb86894
BLAKE2b-256 d0e28650431ebaac20d0b8c4beb5b940f013e99ab9784cc9df86b079712c98be

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c47945acc7989ae907f38cc46b133257fc40a6da554a230f095cac5cb66c5aa
MD5 cb6ed66af2437660fc5448349fa521db
BLAKE2b-256 4edbd6f2373172ad275dbdf00440737947b5486abeb2f71fcbf072ca1f4bf2d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 329dc7d43af64a5e2fee56daa2753a82647e0819979fc12c040852ba760f01fe
MD5 9ae7d6e268c8981a162bdbfa9a0a96ce
BLAKE2b-256 2b59edd85ccb6476115f3b9886d621dc0a503d3a22d8d3aa0e8a3d021d4cca53

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5125b64f0da5c09d4ae82b355dc47c2182bdec7409497dfa618acd8142ea8fbc
MD5 efbc733b571a1cc0b54c6c66285c5a7c
BLAKE2b-256 1ce30089af9800eceb0267ae445ab70531a774a3186ece5c82aaaad350461972

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp313-cp313-manylinux_2_28_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5018ee7ddd55e6542983f03ed5f3c28c6fc1d791591234f571c921c9e16f1848
MD5 9a2eb32b723d858d5cb55b66aa82e669
BLAKE2b-256 566bfe097eb671d8f8bb856e4be8f57a928682f0fe8bc081da442d3afd9d072f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f30483f0e0846abe9285b69ec2e26cb2f18c113ef57d85adb0ba8818b89d0d83
MD5 2994a33ea22ae092fd01a8d6e26cb096
BLAKE2b-256 02771015f064a00c9ec2a4062613d9b27d2004b88455656e5931b68b2c49b04b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b758af98ccd2670a8a942eb492278b1d1c443ffa3d2c5b2ec050ba6046706c05
MD5 58c2951cb31a8343a3987b153044b2b8
BLAKE2b-256 c76fafdbf1f707c90b44d467323d1b1fe43048a7f4aecba5c24242082b503ac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 97.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c3a32a0e203e25515c9c753e8d939b526294d8df77303b44596c88b5033142b5
MD5 35376d8b88a7f062c3c3649399fd7adc
BLAKE2b-256 3e5489768502508bbbc3351b6790176e5501a55a366fb3460811f0382ac506d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp312-cp312-win_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 110.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dffb4f0721b17a829f0b7e4cb7162f212fc84db54d96f31430aede436254a677
MD5 a4217ed5fb301e826beab02bb4bf8a50
BLAKE2b-256 01c2615de4d3b20740f462ffa4b4c9198157f65d572de9d2be85246d2fe8c3c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp312-cp312-win_amd64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 99.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 180e65bad72b5f2f177e88c7848c6a867e20b493ff648f185a56a197692584a9
MD5 55881cbee2a51e0a4eb007b9fa19271b
BLAKE2b-256 425d4cbb11c55899c6e7bd5961799a9bdcfa7d1cdc16e0a9ba3c6e27dec7f0bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp312-cp312-win32.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5514bf89fe3926cc1bc2739e4f1592ffbd1de4e80ef801cf5732b17f4f7f9e4
MD5 f2901e4f1c76ee21da2ccd5f8441b1b7
BLAKE2b-256 34618ace8d1987a1d27ddecfcfb78325140ece8b8f8b583e4ae663a9773d839b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a3a841d5296e1e299e862469580daa1ce984008b6c34659c1bc77cf146eb13d3
MD5 07f4fa66ce8ceb689430c5d6a0d479a1
BLAKE2b-256 9d0d1143d1a16bfcb4b51a6475c19333d5de399d6ef05fce055c7cdc6dafa63f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a91ec9729ab360cc577b5cf6e32b98e5f239570fafdb23739ff3d7cbc9ff28bb
MD5 f0019b46a91f930e86a907c716ec2865
BLAKE2b-256 7a2e8a523640b2637154592c522564e030712055f3245abc981683663fcca358

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f65009645afdade8b16708d2b89c01f512d871b76ca3b3d4a32e0437912442d
MD5 48c6fa076d5a2179ad07b3dd389551ff
BLAKE2b-256 21f32d1e9cdbf083f408886cf0728443fabcb7e7e3fac7ee443bf95ad59aa6b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 fdbf8958a7b83cfa996659d8a6e4386a4a9b7ec000785a3df0999390d32f2746
MD5 a9d10f5100d00e71f66e1b0ab740ac29
BLAKE2b-256 2fb6a72d1d64b56d6357038359b3a7dc2dcd129a9c73a42e10e199b5d074e5fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp312-cp312-manylinux_2_28_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 757569e2aa3ea6eb743a5727097ff878a06f356f74e2158bcbc00805424e5442
MD5 945e9925c32c931ffda4d8506cbc073f
BLAKE2b-256 d049b101922176026fe73689d7bd26129a282711c08adc493de35faaa215ce71

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13310f0fe4f8bcf2252bfdc0895b47707dc98a16687d6cc60d7b33224f5d5c31
MD5 c9ebe3aac7dee9f325766888d01721c7
BLAKE2b-256 12273f6854375021dc35a1f876879293948ac238966646df9347b8853f622cde

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7a6ebe238b8318e24533dedfae739c5c5b4ab491bced4241948033abab4f93a2
MD5 10c8f3e893ef0ae74b85a01cff5d885a
BLAKE2b-256 062b39459e101e51b761c42af944bd889c0be877b07b12cefbadebabf2d39d73

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 97.5 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 45d75f374e60c3504b0b5febc60d17679533c988e475319d8a50d8e828164f4d
MD5 5e6868f641f646075d9aa8cfd1baef70
BLAKE2b-256 70450861595e032e29a8b869d41fe26a144048c60fa775e3c5d13b20ae964fb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp311-cp311-win_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 110.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9ad3c0bc732b94ecab8a06940406c51995ed4ea6c4dcbab2c1ebedc5bfd8a336
MD5 98836097684ed3d64b58a6e3f9b42a4d
BLAKE2b-256 e56f5006d913adbc1b37c00f52414f1315b78e4a98fb1b38c6e9aed49457a316

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp311-cp311-win_amd64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 99.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 54b62ec8c5a45f535a001cdc43f290ed3e4e2c588361501ffbff6ea332db5ad7
MD5 4255019c5fe15c50db1a58379cbf3f58
BLAKE2b-256 61150880bfde5f21af11f10fc7ed765e3f006bc808542f343b26bfb568db3d33

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp311-cp311-win32.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f284cb72a8b4501848de4638b42136edf17e3ae9a58efc298eed46ba66d37b59
MD5 b130f63faf318ad9253c4ece07ccd996
BLAKE2b-256 10b2ffc144e39b7397d1e80816355e5b6691d012ba2a36b2451a52ab1d038a87

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5b10f67c5865fcf3f960913ea13220482601c433e5a5e4e6c0557d1bacb077e
MD5 6e6ad9779567d2e55fb30d94e3cfba4a
BLAKE2b-256 0fc5a47ff22ee4baa49d91b06712b871e931bf1fb017ca7b6b3da19eeb34ce67

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c18d908c2c718aef7b61556f633baaa5d932ffbf0c3eb17d9f06d5ee7318440
MD5 3f666e1b335e1a29e7f076250f61d709
BLAKE2b-256 4bc75a4238511bd8c48112f16e3d671d6edc8ebb360d0df4ae75f6d381a4a10c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5da279ff714bb2c8c71f67fe5d2b2791e44208a739b4b2d5618b53f42bf8fab8
MD5 40fb3fbfc7fb05024af851ff775d827d
BLAKE2b-256 04efa14010252abdfefcb3c8974166991f1ca16517081dc01b8b39cd0882b447

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7a60a7621322f35d1c91818a4eabb1588584d33dd1d035f7ceb320bc3ab9187d
MD5 7046e0d6204426da494688d3d95a092c
BLAKE2b-256 bfaa0a24bd619acd539463cbac678ed83038f46cb30ff43b76d4a5ece39b4b38

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp311-cp311-manylinux_2_28_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02776d220d199172ac514f917662a1e7175a5bf2f43ae8125d2ca3760b39164c
MD5 e6bddc64c4f63b88e92e9dafac30da7b
BLAKE2b-256 3cb5a5a32967182fa0eb26088ac86e28a4427d59ecab13ee329778f96ec81fe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35270abfeb328911d77d93302e7c782dcd55300f7393de4e02161ee35ae42636
MD5 4d72db55be67402f4680a8b3c2994342
BLAKE2b-256 f35fc53ac43ff091736d1bf40270b1ab57a8690055d3f17c627327f6511472a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c80b70860f2fa684d6dbe7d51c62f0107695b70db12ff4d88899e3042f457fd0
MD5 8349fa9a2d83ba5da1c178128a0d32ef
BLAKE2b-256 bc8d1eff156e7eb03ac6cb4ac0ee4e4403cdc8ebb1f5abe4b12128faa0a3109e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 97.6 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4e5efa40ab49342662ced4568733f6ec61f2a38b7616fc23af217efed3565cd3
MD5 584161fbcedd6c4846a0d45e5ac34d0e
BLAKE2b-256 bcf4929ed3e25a50ecc1974da589332758124884f85f2d5bc38117525c3698a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp310-cp310-win_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 110.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7da1e35813060977c1fab8dd0c50d7481ddbd358d0651c81e13e4e50d3c75187
MD5 bd33c5d5ee7eb6b35cdc5fc0bbc32843
BLAKE2b-256 0d755aa32e2526a6d4647e3c5077b54b8544d82823a0190a92cb7d3f915246e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp310-cp310-win_amd64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 99.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5ef6a28d1b0031924fda9bb11dab8bef3ccc113d7e08479a9e39aa22b37cda1f
MD5 ee794740b3589c88cb743d5d777e6c1f
BLAKE2b-256 956492caf72da8e62ba71f733af816ba8d863bd6cb6a6a6eeb42c206cd395366

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp310-cp310-win32.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab7db09ff4d3b3b37c192269a274cac4198ec7b7e19a8151d6cfbbbe4f2aec96
MD5 06f2cba2e0054446c6558c916fdf8e03
BLAKE2b-256 580a90c051535b6569112d02cca7246e602c812f6385721d628c87fae67369a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c955a5b5abd0c24861d9db76b39f2dd747fac350ee265d87d77dbbcaa62ac11
MD5 0f38be1ca9ce503c8f50bef859b70eb0
BLAKE2b-256 7b60f216a43dc1bb929b2db860f3a90415f639d5523de3f2b8cbb55576bc202c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e9021f4092464ca00603df24726f784b3f6a2a59e7b7b50a9d2b754c12b8353
MD5 8183048880eec03e77031419228360c4
BLAKE2b-256 4375709eb21386d5aabc99e1787c7f350d052c82e33c618227493823495571dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 84fa11986eeb431cdb7ed3f81ed4fe1320888d50740b6a80cb87dd9122f0eb3c
MD5 eeddf57d485f193d097a7cd9e0b2416d
BLAKE2b-256 681e61ba6747e97e63190a66a3518fb96a8061c65db9e7ae1246daa7d1bb537e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6e21edf2b2457b08684476b023a30faca0f434689f9a0a9e634ae84355244333
MD5 d572d8f6fa290eacc12fb919f6769659
BLAKE2b-256 634889ec1f0b53348d3be526844d71cefcf5703bf6f14801c4bdaef22d3500e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp310-cp310-manylinux_2_28_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 18d3c2f39b53c2bdc6b5159c7d454da9eb897fc62a6c5f682c29b39d56551cf3
MD5 393e40f54227fd9553db12ee90c8da18
BLAKE2b-256 bcf924388b273324f7f65ccf3674665e1a94863fc59baa40c2553eb8b6d03131

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51922d1741c72d771ef470a980ac6be14914099b16983b6a182e567cc916ac6f
MD5 a0d8af5e4c4ede39d0cf889f0438607e
BLAKE2b-256 7168db2ae43683a2bd683964acf085f9dd34dc1704b8facfc31fe33da0b75ca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3713cba033fe83b609178dc51891b21e2e64152d95562a2426656f7dd5e566bd
MD5 4562998993beccf3f078304abc7f3467
BLAKE2b-256 882b8a6cf87b38181512f91996b7e6c7d4d27e3df1a3b7b2e086c5850921dbb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 97.6 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 8f1707e67a1d2080f57838800283972db1f75ff2a36f6e41f9e40212b411cd8f
MD5 f557952f992c542401c25fa90aa6b6ca
BLAKE2b-256 8b9b4c20e384f18b457936820a705015aa4e4c59772456a1217d7a3fef863e7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp39-cp39-win_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 110.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6856df2c28ff6d487db5b83410ba7ae42f846c7d90ca82aec3d70aa79fd0caeb
MD5 96255b3e7f04233252c80295167041e5
BLAKE2b-256 effc5ae9a171f45466d302d5fc2186bd2866bffa51e9acbab48bd206719bcf5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp39-cp39-win_amd64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 99.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b95a4d0e38cb70415889647bd4b21cd0a3a6ef11a42e9584e94fd7f114d7658b
MD5 c04a79ea413f42035cbb86ee9016a75f
BLAKE2b-256 6a3082655dcdc57756bdcf4011bc1a65a4693f8af4fb3635c24c9a8b9cdc8390

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp39-cp39-win32.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94e3115e49b647667a915e16542d64ce3f10c525ff154c29b8043543f8911bab
MD5 3f48a082bca1b47ad0a6cd48be8aa0aa
BLAKE2b-256 cd0c069ce7d2720791eb0bef44813decc022e7e98140bda476a2cd5ec9aae379

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d0d69bd08efb56195b6ef1f4a3df7b100cfaa728b9a3959fe32132a2d829603d
MD5 5a6c8ef57d5ddef705b4e281762f5b96
BLAKE2b-256 6b3125bd732fab8fd5f0b53074a6a6501b1c2041873d4f2bd4c6af9d0412574e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca452af60b6c3c26c5f6f97f49f7d6bbdf20e398cd1c9c18793f9417797bd71e
MD5 bb6c64f88d180a91dc174312e9500db3
BLAKE2b-256 a5241e8d65c286388ac3d3dd70af1b17d559c50557733135e555aa9981e79622

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b20498127593a399a09f46991ed9a0cac88a9dd5e1d4984e248c70f14feb3de1
MD5 51a7864a87104930b87e28e2a40e0df5
BLAKE2b-256 8cbcb40462a08200996b913fee39a36b33b66670b666d1b061ea31e5fe7b6542

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp39-cp39-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 053553bc917bf5e35063985830b672e253261f272f8c4969fd3ef73e7d200331
MD5 899805c1eca7dd68d6318d1cd44f4486
BLAKE2b-256 929c339223066145260f8b662703402cae8b4d7e11b2924453faf61386bb622c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp39-cp39-manylinux_2_28_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 133311a9f9ca487f38ac6b77ea8842475f891b2450135d7822c16bc62e9ed6a0
MD5 60dd994a9780cc3b0eecb5d5c7a9c030
BLAKE2b-256 9f36e5e6077e4d0d0049fff060c8108f2491989058fc3ca8de839f43f2d19471

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 734c308276c3dc8f75ff9bc98d3a321323f59f5003743e474d4ebb2220a27cc6
MD5 08cfba9bcf8386bd65dd88c0caa0a3df
BLAKE2b-256 17400068b84c7f903a80fd921e1eb4a9def8f882b24dcca8a788e9bba0de0163

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eaf5f8930c85571a11c36292dcd2dc84433cd87e564e5d82dd9a343755653827
MD5 5ca9ad754d58a1fcf7c9326c485be12e
BLAKE2b-256 2112415134d48ce30b409493c44702449caba98eb86b3210bd8021781e2b3298

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 110.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9c8576e22f4547a1e95edc06d4c11670659e61cc37bf1395eff7624eebef199a
MD5 226bad4ddb2dd8f86684818f874facf7
BLAKE2b-256 47abcb05e42bc50b2440e04e57ec0f9c32b21e3beef6f4b36d361680cba8138a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp38-cp38-win_amd64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: fastpysgi-0.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 98.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastpysgi-0.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b49efcb919ebefe8ecf48fc96e90dd760869a3179be7e4132aa0d76df3b19791
MD5 7c1c6f33d7b0dc449fdd26949131e548
BLAKE2b-256 517c4eb9462f38eabd77a9acc3f114db399564cf202f1aa481f957cd56d4b8fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp38-cp38-win32.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8dd0559244fd300a7ffcb19f73553b60059a2f8b027dd25b39707081a2df21d
MD5 2fc25ca9d12bc72a79846e2cc522a536
BLAKE2b-256 a94c582dc37226ed7ebdc6dbd38eecddce4c43580bea108f62e543f7bebeb587

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 edfd4d37b3e575835cd2dcd2b20a5aa9ed68f107a90b04c7e1c4a8754f92b73b
MD5 c21bbad512c49688ea6a7f69de37a838
BLAKE2b-256 3e58ac448693a94cd85e6022d8b6e5024b56c7e66706d225f6774483158a8083

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c4e39a942eecccf80b547ffe8ab3a5d674a40c19bf03456475755a96a717fec
MD5 b8f551f088713817bacf5ca55e8a2274
BLAKE2b-256 c5e9d4018a317f404c1e390678fec52f4652457ae405d07a09302a60ced0f8af

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4a0a9fd991f8e2b3ce46f437ebe6313018f2e802ad763a18183024ddac94067f
MD5 599ac1ce9f3fd3a60820cfc4b0e46a3f
BLAKE2b-256 82c081affdab8a832e61a564b90cde2a79edb08e5e084f21174b6a7caa756ef6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp38-cp38-manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp38-cp38-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp38-cp38-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 40927779f7125bb77a6a5b9fe33fb2b2d65413c9936440d939acfc0e9c162c3c
MD5 a5361931aaa5238b26d074f978e9e207
BLAKE2b-256 438724d562e2636f3ce6987e1308448c05b8a184099e8b9d0d6fe97b5b97e0cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp38-cp38-manylinux_2_28_i686.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 488fc4b69bd35e952261ef0a40451b2847b25a1dfc12823c8c12b969b26110b9
MD5 016d47882900a1a1f79216648996ad40
BLAKE2b-256 da06b4e691077dc02739921f9fde701dd00aaefdf4844eb15025eb3bce2c9e2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp38-cp38-manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 304d41b1aebdbc59352685b0b4ac4cf8bd0df5a45cff8fbed3ebc6851daa1a3e
MD5 b5b6098f8c1462751fd77885a0eb8cd9
BLAKE2b-256 4b5193f4408f3addca2eef8240432db83ed71bd2981e18dc8e6122bd2f7abf04

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastpysgi-0.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7cb8e110db76480b89acf3fa8ed60c4e620b14210730300f0df7b5d85c3cb5b5
MD5 fdfa4a948fca1d6819742c1db5c854ef
BLAKE2b-256 c84d71845aea0d05da90e4998043a7bc6e5109e98795223a3c4d44bae1e6d174

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.5-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on remittor/fastpysgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page