Skip to main content

An ultra fast WSGI/ASGI server for Python

Project description


Pypi

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

fastpysgi-0.2.tar.gz (655.4 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.2-pp311-pypy311_pp73-win_amd64.whl (91.1 kB view details)

Uploaded PyPyWindows x86-64

fastpysgi-0.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (137.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

fastpysgi-0.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl (152.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

fastpysgi-0.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (134.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

fastpysgi-0.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (133.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

fastpysgi-0.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (138.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

fastpysgi-0.2-cp314-cp314t-win_arm64.whl (84.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

fastpysgi-0.2-cp314-cp314t-win_amd64.whl (97.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

fastpysgi-0.2-cp314-cp314t-win32.whl (87.9 kB view details)

Uploaded CPython 3.14tWindows x86

fastpysgi-0.2-cp314-cp314t-musllinux_1_2_x86_64.whl (144.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fastpysgi-0.2-cp314-cp314t-musllinux_1_2_i686.whl (159.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fastpysgi-0.2-cp314-cp314t-musllinux_1_2_aarch64.whl (140.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fastpysgi-0.2-cp314-cp314t-manylinux_2_28_x86_64.whl (143.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

fastpysgi-0.2-cp314-cp314t-manylinux_2_28_i686.whl (158.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

fastpysgi-0.2-cp314-cp314t-manylinux_2_28_aarch64.whl (138.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

fastpysgi-0.2-cp314-cp314t-macosx_11_0_arm64.whl (134.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

fastpysgi-0.2-cp314-cp314t-macosx_10_15_x86_64.whl (140.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

fastpysgi-0.2-cp314-cp314-win_arm64.whl (83.6 kB view details)

Uploaded CPython 3.14Windows ARM64

fastpysgi-0.2-cp314-cp314-win_amd64.whl (94.7 kB view details)

Uploaded CPython 3.14Windows x86-64

fastpysgi-0.2-cp314-cp314-win32.whl (85.8 kB view details)

Uploaded CPython 3.14Windows x86

fastpysgi-0.2-cp314-cp314-musllinux_1_2_x86_64.whl (143.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fastpysgi-0.2-cp314-cp314-musllinux_1_2_i686.whl (157.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

fastpysgi-0.2-cp314-cp314-musllinux_1_2_aarch64.whl (139.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fastpysgi-0.2-cp314-cp314-manylinux_2_28_x86_64.whl (142.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

fastpysgi-0.2-cp314-cp314-manylinux_2_28_i686.whl (156.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

fastpysgi-0.2-cp314-cp314-manylinux_2_28_aarch64.whl (137.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

fastpysgi-0.2-cp314-cp314-macosx_11_0_arm64.whl (133.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastpysgi-0.2-cp314-cp314-macosx_10_15_x86_64.whl (138.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

fastpysgi-0.2-cp313-cp313-win_arm64.whl (81.1 kB view details)

Uploaded CPython 3.13Windows ARM64

fastpysgi-0.2-cp313-cp313-win_amd64.whl (91.3 kB view details)

Uploaded CPython 3.13Windows x86-64

fastpysgi-0.2-cp313-cp313-win32.whl (82.4 kB view details)

Uploaded CPython 3.13Windows x86

fastpysgi-0.2-cp313-cp313-musllinux_1_2_x86_64.whl (143.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastpysgi-0.2-cp313-cp313-musllinux_1_2_i686.whl (157.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fastpysgi-0.2-cp313-cp313-musllinux_1_2_aarch64.whl (139.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastpysgi-0.2-cp313-cp313-manylinux_2_28_x86_64.whl (142.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

fastpysgi-0.2-cp313-cp313-manylinux_2_28_i686.whl (156.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

fastpysgi-0.2-cp313-cp313-manylinux_2_28_aarch64.whl (136.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

fastpysgi-0.2-cp313-cp313-macosx_11_0_arm64.whl (133.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastpysgi-0.2-cp313-cp313-macosx_10_13_x86_64.whl (138.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fastpysgi-0.2-cp312-cp312-win_arm64.whl (81.1 kB view details)

Uploaded CPython 3.12Windows ARM64

fastpysgi-0.2-cp312-cp312-win_amd64.whl (91.3 kB view details)

Uploaded CPython 3.12Windows x86-64

fastpysgi-0.2-cp312-cp312-win32.whl (82.4 kB view details)

Uploaded CPython 3.12Windows x86

fastpysgi-0.2-cp312-cp312-musllinux_1_2_x86_64.whl (143.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastpysgi-0.2-cp312-cp312-musllinux_1_2_i686.whl (157.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fastpysgi-0.2-cp312-cp312-musllinux_1_2_aarch64.whl (139.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastpysgi-0.2-cp312-cp312-manylinux_2_28_x86_64.whl (142.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

fastpysgi-0.2-cp312-cp312-manylinux_2_28_i686.whl (156.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

fastpysgi-0.2-cp312-cp312-manylinux_2_28_aarch64.whl (136.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

fastpysgi-0.2-cp312-cp312-macosx_11_0_arm64.whl (133.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastpysgi-0.2-cp312-cp312-macosx_10_13_x86_64.whl (138.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fastpysgi-0.2-cp311-cp311-win_arm64.whl (81.1 kB view details)

Uploaded CPython 3.11Windows ARM64

fastpysgi-0.2-cp311-cp311-win_amd64.whl (91.2 kB view details)

Uploaded CPython 3.11Windows x86-64

fastpysgi-0.2-cp311-cp311-win32.whl (82.2 kB view details)

Uploaded CPython 3.11Windows x86

fastpysgi-0.2-cp311-cp311-musllinux_1_2_x86_64.whl (142.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastpysgi-0.2-cp311-cp311-musllinux_1_2_i686.whl (157.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fastpysgi-0.2-cp311-cp311-musllinux_1_2_aarch64.whl (139.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastpysgi-0.2-cp311-cp311-manylinux_2_28_x86_64.whl (142.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

fastpysgi-0.2-cp311-cp311-manylinux_2_28_i686.whl (156.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

fastpysgi-0.2-cp311-cp311-manylinux_2_28_aarch64.whl (136.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

fastpysgi-0.2-cp311-cp311-macosx_11_0_arm64.whl (133.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastpysgi-0.2-cp311-cp311-macosx_10_9_x86_64.whl (138.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fastpysgi-0.2-cp310-cp310-win_arm64.whl (81.2 kB view details)

Uploaded CPython 3.10Windows ARM64

fastpysgi-0.2-cp310-cp310-win_amd64.whl (91.0 kB view details)

Uploaded CPython 3.10Windows x86-64

fastpysgi-0.2-cp310-cp310-win32.whl (82.2 kB view details)

Uploaded CPython 3.10Windows x86

fastpysgi-0.2-cp310-cp310-musllinux_1_2_x86_64.whl (142.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastpysgi-0.2-cp310-cp310-musllinux_1_2_i686.whl (157.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fastpysgi-0.2-cp310-cp310-musllinux_1_2_aarch64.whl (139.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastpysgi-0.2-cp310-cp310-manylinux_2_28_x86_64.whl (142.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

fastpysgi-0.2-cp310-cp310-manylinux_2_28_i686.whl (156.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

fastpysgi-0.2-cp310-cp310-manylinux_2_28_aarch64.whl (136.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

fastpysgi-0.2-cp310-cp310-macosx_11_0_arm64.whl (133.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastpysgi-0.2-cp310-cp310-macosx_10_9_x86_64.whl (138.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fastpysgi-0.2-cp39-cp39-win_arm64.whl (81.2 kB view details)

Uploaded CPython 3.9Windows ARM64

fastpysgi-0.2-cp39-cp39-win_amd64.whl (91.0 kB view details)

Uploaded CPython 3.9Windows x86-64

fastpysgi-0.2-cp39-cp39-win32.whl (82.2 kB view details)

Uploaded CPython 3.9Windows x86

fastpysgi-0.2-cp39-cp39-musllinux_1_2_x86_64.whl (142.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fastpysgi-0.2-cp39-cp39-musllinux_1_2_i686.whl (157.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fastpysgi-0.2-cp39-cp39-musllinux_1_2_aarch64.whl (139.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fastpysgi-0.2-cp39-cp39-manylinux_2_28_x86_64.whl (142.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

fastpysgi-0.2-cp39-cp39-manylinux_2_28_i686.whl (156.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

fastpysgi-0.2-cp39-cp39-manylinux_2_28_aarch64.whl (136.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

fastpysgi-0.2-cp39-cp39-macosx_11_0_arm64.whl (133.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fastpysgi-0.2-cp39-cp39-macosx_10_9_x86_64.whl (138.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fastpysgi-0.2-cp38-cp38-win_amd64.whl (90.9 kB view details)

Uploaded CPython 3.8Windows x86-64

fastpysgi-0.2-cp38-cp38-win32.whl (82.0 kB view details)

Uploaded CPython 3.8Windows x86

fastpysgi-0.2-cp38-cp38-musllinux_1_2_x86_64.whl (142.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fastpysgi-0.2-cp38-cp38-musllinux_1_2_i686.whl (156.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

fastpysgi-0.2-cp38-cp38-musllinux_1_2_aarch64.whl (138.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

fastpysgi-0.2-cp38-cp38-manylinux_2_28_x86_64.whl (141.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

fastpysgi-0.2-cp38-cp38-manylinux_2_28_i686.whl (156.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ i686

fastpysgi-0.2-cp38-cp38-manylinux_2_28_aarch64.whl (136.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

fastpysgi-0.2-cp38-cp38-macosx_11_0_arm64.whl (132.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fastpysgi-0.2-cp38-cp38-macosx_10_9_x86_64.whl (138.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for fastpysgi-0.2.tar.gz
Algorithm Hash digest
SHA256 f0360d4b16883c61d07514c990f2546eae692a98f40bfa727586e3d089e90d0d
MD5 fb99e77f0075c8799ab0addfb4159615
BLAKE2b-256 0e6a7f3267da971fec331c7dae37eb2fca83658622bbaa40393bab3c76f49ca2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2.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.2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 67507eb4d466094a986b4b23bf1b76cdd02a32b400a0508cb405905f09f9dfa6
MD5 ef5517608e3b61e7a00cd64850ae5102
BLAKE2b-256 782a47d95ce63a0e38c82bb4359ef9b6b58eb9b77a09d7f1a1af341fd77dc34e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80657d96553afbf24bb066562d8de340cb65ffe511558a3fc57e94f7c9250b00
MD5 aeb45b893bbbfcaf5c92102508f3d990
BLAKE2b-256 16e30d3953ec7466464c9ddcbffe59d0e58e5a74ae462cfe149546198e702138

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1cdbb2cf8499aae45b6aaf6c718819e6388d9fb477475444afb13d5d7d468cc8
MD5 efa5d05a092e2ed021c5593598b0ef1d
BLAKE2b-256 4f345d4e55f525060d60c1775c367896c11343018be4f95b254c3989ffc1df1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39ee95d097b2051423b3103d3897123394a27858c35c879e78bf33c262a0ceef
MD5 f92da356ff05cf52c686daed2784d930
BLAKE2b-256 176f3494cb5d7373f7deb6c8db5ef7f4fccfbce5f6e4ac6ed733b571809906d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4dcd87d64e7861a83bf8e9af79562f326c3fd8300b609253d427b465822d9ad1
MD5 7af6a9532774916434f9413be89fd255
BLAKE2b-256 e07d02d965242509f1e779303e63395c1a5e93cc17e80b8c949a1bc9095ea758

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6e4af9fb90fc1de4b9fd1c95f1d26acb3c57ff43e9d801f2b4841515607ff75c
MD5 88ed64c57160b057d1d63c15e627f5b1
BLAKE2b-256 557a727b407215a2436d541ec3b215651abf7b0782f7e90161fea66f51e6d577

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 84.6 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.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2def07385c23f5e9d19ba6969832fd6f12c6ccfb95741ca2e86334bde8bdc089
MD5 d72201b72ec77e0de891ba47ce5cec74
BLAKE2b-256 a37751fdaf60830398dc8687709d85962dda4ae799e091502bbb72f56cfb36ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 97.1 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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8bba422fec943758e1245a07415fe6ba8a98faf6c3a1e91b3edf702f91a0f74b
MD5 95e53b7c27216c8d2efe027d7fdd044c
BLAKE2b-256 4531c336b77f7757dcdd547e4465aba8dc1f220a304ec5afdd114704a94c3ae0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 87.9 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.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2645f0d905a7bc1df4398ff6c9741915b5fdf55aa9b25a1022092111458c083e
MD5 39d69393482f7b9c0418a6944cd5cdf1
BLAKE2b-256 edc668174ecd6188c0ebd99cf098505c27b8623b916b4444c67848127b10aab2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbc492d224c07e85c86659801ccea5182b00d44ec9b11f0337f78047f43470b0
MD5 b1878e506b914b27dae627a6bbb0e1f9
BLAKE2b-256 ad22132522be5cabfba1bd1675ca03e91ca30a1db5039a44ffe901bcafeed7be

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c7dfdcfe39e3888730e785ae798732d4ab2139fce6efdb144d0551da660bc5a
MD5 c0d459a67392480795870f96ada0d19d
BLAKE2b-256 9b514a7a24309bcf65a74470b6c139cc550f7116e92bf51599c939e596dcc41b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e021d158f6019f245596f448ddf711937f17d40c8d8ca6f1eb3b4159e89a13e
MD5 483c6b3238ff0bffe1a31b36be981832
BLAKE2b-256 46c5102319d2ccd4fc2ddfea398aaea5cffff6cd66f24b93515c304a4be2a671

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bbf871f5d389e4e70d7affdaa1ba82553015a097cf3166c8a19f4f6f67ab8b87
MD5 398b1b050ee1a7463d32d44fcb531600
BLAKE2b-256 d8c76af3b5bfc01cf919d3351d72ef5a5d62d47f7f444b6e3257b9722dc7cff0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314t-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 74b396db1c7a33d7520fd6546709cd786d561cec5bd51fda32ac0d1f1d82dc91
MD5 e7c86b6ac80550dc44401bca43172350
BLAKE2b-256 7bb4b8e1bc1c2f7734ccf14dd552df74420e94fb857911b9f79474692a6f8b31

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 727bfa7524778bbd902a1e89e90fbc8449b7e5784024efa25268b10cf8655920
MD5 6d81ef1a20db64a7c83c0783dd7a17f2
BLAKE2b-256 1139bfd5e001765ca7c961f8aed02a5f0111d49bf04c8b9d539ba1a2a88cca02

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09775c5c431d43841f459294367f6e2424aed6b501af738fe5b90ab61ee0ba2e
MD5 2f97bf9e51be354fea3735e246dc0278
BLAKE2b-256 9758eb0db42228ca35e6f1ae6df3fd40bd4a857c7380f47b95647148bc8f18dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f79cfd660d5b2c3c34bee56aa6328151cf0fe00566f0db1ec88c026bdcd36c7a
MD5 34fe11caf206be525a83613154c5113e
BLAKE2b-256 54b7c01156648ca109caf690095ca246a9e0530148f5f602bbe2b9ee24fa1474

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 83.6 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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a2c6d94bf4d1a285a6c8f66c4f3eedaf56a27e2e2487d61d04ba3f0162c8e4b3
MD5 74007cfae9efc110198c825a3ff5e095
BLAKE2b-256 26950111583fcd4dcae85429d808902c92235cc8f2a2e7932d32dde03dbe78e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 94.7 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fbc34b60a589b4167068228f396b99cc822d3a6fbf4084af62ca203ff99b0281
MD5 f9b3a9cc371c565a0e079af1ed76e2d3
BLAKE2b-256 3eb7a649ccff78c85356fa9b465d9d82e48b435fe9b8c70068739c20603ad7b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 85.8 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d39dd261aeb24930c4f2159ed3fb168cdce130a0ec6401d0cc563bc349a91b14
MD5 df11c2ee5b057a6aeb0f39ba29d85e7c
BLAKE2b-256 ed8d2ea060ba664c1aaf7c427b175b9609377490eba9fce9f395c717b90898c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2ef305530969000ffdd171228836964423dabab679496ab9237c628b921c590
MD5 2c698a827767809eca88651ceb75d838
BLAKE2b-256 a2d60f8ada488fe515b9d966dbb47eb677f1c55a3f6692b33c28096c317b5679

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7681b89c47b9ac212b9476e7d06945f35b413ba769ffe70c4b9fbfafda319f92
MD5 80391081eb43a0d72bde9c832a57ef56
BLAKE2b-256 ed611301bef19f4f0edb776047639e2032977d23b2d4ed717446c617175b722e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c6744d9706c5dfa1df9942463cad4bd9847ed84bb0864a3c7680e95bbe0a160
MD5 bd390124fc38b6c84f6124b1da7ca069
BLAKE2b-256 86752dcd526fca4a08bfc8558b5a5e500103f2c4b76da63a1bbf9e47cbc8328b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba9abc2118fa7185e82260268153f357a9defc7869d14a152b4303a537cad1e7
MD5 0ca9a3b08730f385bd4a6f23e28c6bc8
BLAKE2b-256 b6a5ea000f3d5e92066a475836a43ce1e89d41ad48fe3c2181b1c9b1c7d7319a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d643f1eebc0c6cd99d5c80d2d31e1dc02a1a440565a8a030b58af438f584aed5
MD5 34d551826dda08ab0384df6fc9ea7e82
BLAKE2b-256 8b4093150648e197a15a8b109ae52ba2a0f3d7fb5451f663d579e2b69224b956

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5cb7c2a090dadd9c7d513fdeb744db6e9418514c8a31d9345665d716d8111c32
MD5 74fd19a45957f805ff4af6c2d80c69ee
BLAKE2b-256 7ced0ef7a10e12177db814b21c4e92f0b365d79d88a31ca84121926461f7a959

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 272b7fb5b912857ca5907547777d8fda451bd6681474b0559a0444103406d53c
MD5 9a1a719ca044f870e94c67165a4c5275
BLAKE2b-256 12824ea5fa5e2d53731af7d60e20d7a426deb0566d3f54377640edd9ce569031

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c6fc96caeca00d08d74a2b09c56ccd4338c555c53cad01f23e7eed5ff36579b2
MD5 8a8d3f8487a2da69d924e2854e59705c
BLAKE2b-256 83cc25b30178f802fa6d7165d5c3e5a844d0c84397093e773535d2d29ebcd791

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 81.1 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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8a8f795ccb2a5af7b4d3cf89df92bfe2f28fbe1bd48a9ab9204d3ed713d2354a
MD5 9f96de32778419cfda20cbb8e42cffce
BLAKE2b-256 202f1ba9ebf6c79ebd10f1a1660f7d3a9e767dea81f5c3844eb2ad13d2236ba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 91.3 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8d3b173a10320c4ee8c3ea75e484b4ecb1d15786f587c8156b496b34d93b7fdf
MD5 68bda9422e0506c0efbeb2b5b731edcc
BLAKE2b-256 9f8dca71c9a6417a1c8a2afedc4661e58a5afae079205286909b0f05c20474f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 82.4 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cb02dbfb30a57ef7988d8a2ca10d599d7a757aec9a144174adceaa5334bdff3f
MD5 a70285a7d5af5b98da544cb7066a6bfc
BLAKE2b-256 ed9afc934bc397e83892cf11ae8b4d3923550b07eb7cdf8786ce866a79869193

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd05ebd73bec1ddc23f6689772c21fa206fc907b9409d81079e98bb80eecc4a1
MD5 c4f266f0b52958cd6b1b468b1071ec19
BLAKE2b-256 6e93a053a282a94a998dbaa3176480e03fd597caa66b5b191c4e788284a27d29

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6e19c6bbfb7d61ae709515d1bbc4693e30c947c88bc97525ed93f0dd2870322
MD5 5ad83c1e593538272d92b5c732d6289b
BLAKE2b-256 7c34e416942bf5ef5e780b27e01daf16d619ad91cf1c7c658403c9e218b3667e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dadbf598a206695adf2ef7af43c34869883346a2835e3972f78d47ca0d5b058e
MD5 09adb19881ac7749022a777f7581a862
BLAKE2b-256 3e827fe46b373b1e363ca65784c47a98a52d761fdbbd58b04a10fb9516346fec

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c742d66ff0901f501475133694387ca1fab1ce7fb2c788f8eed7e4430e90242e
MD5 13549af146c37b5698a1c4e76119a531
BLAKE2b-256 8f3f8b43e3dc49aae814d037a44782dd7bd58bf9081092e39cca08239a644185

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 fa3e75271c5ce7cf4d80362ab31a75151992a862140f8d63930e2ad9587083da
MD5 c3b5166572d423644cd2f6fb59a40c68
BLAKE2b-256 ca9ed071c26a07d2bc488d2e6d0655d3c35f955c03e587aae209ffa2d4c9f3d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9cc8ab4c14ea391602e253375abe6449b19fb2f53527dfbe2fac68408bc63757
MD5 adb8532b0d5996e0214226a610031750
BLAKE2b-256 7ffc24cbe672be8406a6b1f13e27c2f4fab255b3025097ee017be869bb6fb387

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71364abb2e4c84bfe5303f5c53f359bcaab7e33ae593e5ca1a9dd1c76d5b9e57
MD5 e6b63acd375baaa10cc014fdb0550793
BLAKE2b-256 47e12a28f248403abdc949b886cecc5da1ec019a3f03714c867bf5c45bcb532a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 37409fa305035198150049c3ec310588b262c6b495159f8b2117892d24468bc9
MD5 5b2763670544f372fb3dee45d0e14dc7
BLAKE2b-256 9ee696822a6344f36afc28aad3bc2614c2e43966ea55610c068d19cd995e0e78

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 81.1 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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7214e0b705d08ea1891ecca575ef74b21072b295f00d716c94390505cf76efd6
MD5 fc6d97840ff5deef969c5eadf047482a
BLAKE2b-256 fe373c86c1994b3ad6d914147fea78ed57ce205b73cd8a72fcb79b0a044252d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 91.3 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 30c04cc0c00a26d63e28134ab395d1118a8610640606770e1de1400806588660
MD5 5bcf70a57d12cac360deafc033142598
BLAKE2b-256 a7ac56074e197121f3f9bca4d8258d5bfe539c137be280e2b0d56b7155bd3eca

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 82.4 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c108fa7cd268bafed39ce35c9366db539d83a80fc70304f5b180bca21db2153c
MD5 f28d2a417790e520ed776810f1794c03
BLAKE2b-256 9186cff90681e767a4a2d55fe2c4e2f7cb10a0fde51f4c7799145492edbfc6d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c75497fd85376f7c211305df1606f354c56ff4fa560e8e5a1550b933abc3be0b
MD5 84187aad0315f868ae23a82a18226383
BLAKE2b-256 2c57f105be245b20dddb11b73b7dcc1de7d55b8fa35547f925ec56126b3bb4e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6906b7c65615e93b68b21d34bab78b67f06de5a515f57cde56b4bfb475c86bb9
MD5 16d84d62389c89ba9b90a9c427607aa3
BLAKE2b-256 4259a2aec095641df4209e13d5e7bf931ce9c163e6d399b701df7acaf4d1acfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 758c6031c23d458003e5401e2d8f2075e9eb05f04e0e37b60177a52a02cbe880
MD5 e39fbd1f67252463babac5c668eeae02
BLAKE2b-256 0586615bd9cea459bc1358032bc18a297fe2da1dcd60bffa8e579bbdf5c30fe7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dbd6cd15921688a023ac37d25541eb58b0caa90b7ad91e30cc8dc812c5b3e184
MD5 1519c13ad9fba29e549c511729e664b6
BLAKE2b-256 cf7232a72de7adb8b240646bab76f28e27d61059e91838446c506da0eb469e1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6cfd311623b4793fd188da42a01fae497319e507da2d3f5d87c147fe5678057c
MD5 4c427bc0e6de148b0171ca0278be1aef
BLAKE2b-256 b02d257b6f167c02d19639f4447d4f1075e7e8e8cf7da69f232a46bcf18bad15

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4cf8491d010a226c786eefa68054af257676b2293f432f63cd01ba8064c5ad5
MD5 1add1f8efed0f2e05f996331683d72da
BLAKE2b-256 355ee72ddfce8b5cf06f5e43a364bfa1a5a2089a99bf06aaed2d51a62824235e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f74ea716225a3e25246583691690d77f82b95542744a80e26f875265aacbd97c
MD5 728429c909052b1dde9c259570cfba2c
BLAKE2b-256 c0bf5d319d161ec7c5735fee5ab387fc599334765273f123f0fac39c13393966

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bb38e14fab71f5397a8a69708ff20a41092768ca4dd9eb0954ed8afb22db0381
MD5 a3d6adabc9d9260a452a3f3f44e91572
BLAKE2b-256 bf799762b90022ed119640d12e7d347b1133def21a40172063ba6a27eb004e30

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 81.1 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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0e8e250d93cbf9418d44a845c51af35a5f71b3aa6adf5cc6c889dc0ccd377f9e
MD5 9774018a4d036f4811de678a80988f1c
BLAKE2b-256 86df7e83a21bfc0ebc3e6c63c060f40e1209db09c50c839159170e1f7d409c4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 91.2 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 687f11816bc15e920b656d84e82549eac70a42ca7ab244e5e6a45721486c75ac
MD5 aa81f29d3232224e28475ce97a619b91
BLAKE2b-256 7ce79686568708819691606e4896f164461573b2e1b75b655ec7ebdad065e69c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 82.2 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 14d55e4e64f90a2d838ee8e0267a5f1205de549fc2dfd5adc6d5a986b9a48460
MD5 4bdb1b879c7a6db30819347c0d3488b5
BLAKE2b-256 0f218c9159cff5f64cd7f90156af45510b741e6a333422b633773c49e348cfd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 341cbc7579b373bd91c249732464e23581f3420c65e29284c2475d3563f01a76
MD5 bf8c80c0419b4eb45ab95c657d127626
BLAKE2b-256 1314dfb8e50a655f9e4ca23b9a67b49e335fb693ec11c7ccf2d6021a02ed031d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5bf35c0942447068f7ba5118f5c7a2d830c211d43e53ffef195931fc513e34f7
MD5 2bf4488846caf45860d7780e438d82b0
BLAKE2b-256 b41a9f562a18642210eefd499d297901e16c1b30b770f7118a8e0096eda21b2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bff7d797e797bdeff7d8278e6837120838aea8f7db227be1f9001bb46cefbcfa
MD5 77af79cbd6878fed9d7b7ed415fc6429
BLAKE2b-256 8e4fcb209e22d4def31e31d2f4d03fe1df3e9717dd15ae4e6e0b5b5d3558593a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be0458c48d87119987e8b6ffef4799cf4f0a89fbb843526a80d53eec766f717f
MD5 798d67cd15eadcddde4eafc15810d962
BLAKE2b-256 3db429e741c96b46e664d90a7d3dba4188cc4792309ec5d9620175669c3d11a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 25abe078f9e7f9098a05eb06b66c542d259b1435ea3541af9938447284a24945
MD5 6e461399a60688d0a72aa2132a8e4069
BLAKE2b-256 fdc2d704f55d1fa01b72740c2a13c6d75acfcfb354804b7efe3e1ab0de4f7b74

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f6a7053c713888f4cf71adff09903b06d37196d3fc90085eb1d10aa8f51949c
MD5 707489d5c5c7e1095923a401b4e8e064
BLAKE2b-256 28097049d2fdc96232db5963105704f580483cce3acab22ff7ac2f5ad62130ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 facecd99f1a4680a7c8e6c43bf5a06cde17fb624b4d450b0f23ca9d04b4acb6d
MD5 9cb5f1952a44e1860b3cd61c40109ade
BLAKE2b-256 d0880c4a6dc2fc464132b9ef4fab6547660aaf5de9433d08d1a40b0d36c7d5b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a76f9217537b8422306dc5283c7663c641f0596f2d252c6d490ed51fb4b1d42
MD5 749c66a35535fb8a865435cd12a8873f
BLAKE2b-256 aed53fc55a69ad8bc72143794c5f8b385e90410eb12ee11533d2f95528d632a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 81.2 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.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f75fe4bd24c56ad36738d3affedea25d7ce8740a460376deba15c79507a9bb7b
MD5 da65e1e218348817582485824b75a13e
BLAKE2b-256 540894d957380fff9424e443ba21049d4f4863294eb712629990904846ca874b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 91.0 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f963e01945661bfb8b75e179a89fd954fda5c48a060bafb82306ade40c0685b
MD5 3b271a2f23fdca8432d82d9c625ce458
BLAKE2b-256 77f8a07f10c1fa069a2addb7386528759caf973fd427b027b59a3c427382d1bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 82.2 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e920ebbdeb5e5df803c66bacb543ef38dfa38ec429c05427b3cf6f170a272365
MD5 079ba3b0d7779c64a92b8cb849808f57
BLAKE2b-256 532c35328f3d49126d0cb897fda9c8378b7750b70ca5b7d4301599d5eda4a440

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 765db16049db11479b33ca7459ce5cb2442d4a885b7c73380b17930feb90c0fa
MD5 1172cba63e343c77dfc7fc2b19634d68
BLAKE2b-256 10b1bfc4c2c69eef598065d2d59aab196b84dbe19eff78f83449a1428d94aa0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f67f9d001d919918b78723f4f55e9536fabbefc57f343706cac8b67efb96a612
MD5 642218c249c7a614fd0cafc3394aa400
BLAKE2b-256 6edae251264d816c549ac86769f9781ed2ffd5121ede1833638dd08d215f9aa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4b8484ea7e0eb2763657580f008ddd0ab19ab024c09d286fe1142fb0941bcff
MD5 6ad340a6bd24fa4ec779348baa09ec20
BLAKE2b-256 9b96c7f764c537489f5f598fdb6fe30018f457c780283f8e6f5146d8a0ab7d0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6be648f023ade93a20e9d1297d4fb48ddd8ec383874fce824e4bec1b57dfc6ac
MD5 b7407cd5840c41d5432b439461474506
BLAKE2b-256 3376c4af8f1bb5fd9eebe5d1efb2d723ca80c991797d368226689b1e5ca547af

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1df3a5ce99c43d9370427f163a13f12550734ad082f98cdbe127a842db6ed0d0
MD5 5187a22c110b9ed813320e8ad8bda65d
BLAKE2b-256 68050169a4e4311180bb0df88ac6ec12f6c004208d7ba01c81623e7fb9d29fb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe82281db406dbe53d7ceb1bdf627fce8e9f5f09c811bcfae7e0a451d3a09d2c
MD5 b47e2cca0ff4b9dd93065e8a0c762c37
BLAKE2b-256 f80ff34856ed04cb156281fbff23b5fea7302e0187c4d5dcdcb667a68c271d3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 807ba48126299704fcb69d7710aff3a07ae5021d06b62c9526aa6534815ac918
MD5 721f3674624578acfaf98279aceb03d1
BLAKE2b-256 3c5422cf4d90777345bb48f636718876b203ff949470982b4db923f1f83044d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cae772995bcd7c52cc53a5159cdddef4a62ff245355f9f186915fea200cf76ac
MD5 1a43b3f4e07228beaa569799425a51ef
BLAKE2b-256 29f058d73bdf52462a47d7db7e2b6f303ecae54144a2dfe2ff5d93000ea7d8ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 81.2 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.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 468fbe3c2658e2a8a614287c368203b7c1e9e8444e0133a78fdd5a50f0dabaf6
MD5 f96f97b984ed462ff506e09bb515fdea
BLAKE2b-256 60de4809d91e57989d3763fc859d16a3b11cb3afa770ade199fc839b5310901d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 91.0 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c733dcc2db6c3c70a623979478c19ed23c75b58f4be3fa42c1d4afc9bb579e00
MD5 cc6243815062e601546877faa3ec0874
BLAKE2b-256 8ca7eca1f092e1148e5d2fb328dddeccabec0b2dde239a494604916db1e063df

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 82.2 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3a5752175b093a9d15e42d321f1873a1bf917638bad2b367e6e5d126532ca4d4
MD5 285b214b017ffca2f70dd91767cc074f
BLAKE2b-256 500f4b55b1b1d7dc443939a18d0c99991c5a0fbdc84fdf48828a9210c408da8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ee84be9a3f8c0345132ea02df09a55587c5304350e6a0393ea4e7143080ffbb
MD5 cf171b2d327a1c888e5bd74868ad3833
BLAKE2b-256 1e3cde2c95fc13ae4a9ddb155f5357a4616172e1ac0725c9dc7686668786a28f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f65509e0db5a412308b1908795cb537302a1ecd3965449beb4031fd31a6e9c33
MD5 72cd114c6360d7a51e61523f471a146f
BLAKE2b-256 29186ceae9891f17033c5650b36befde4001254881612155486420abcb59ae62

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce702ed81454b1953ebe02be5c8855af906fc4a991d92fd0af3b00469ce8244e
MD5 c0bbdbe4613af5f51df4796ea1784921
BLAKE2b-256 d5430de16aba57af1ffeae025e551c0847e24359174057375365863c52940334

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd8719b6dda2f7d5b1da8d2457e98504d2403128957347a4af617cf7cd410a3f
MD5 e78bddb4502b476422c6cfdd868e4ec6
BLAKE2b-256 88bd0abc7f38e2a1f80ea3d6c46135709d8b7314d7d07ad6739da5523c6e479b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp39-cp39-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a3fb1c857db81b9d6d1c380ef1cdca162100294abf38768ddd5784bf42c78b8a
MD5 0f1e1a8a5f50581fbee1d6ba5c506bc7
BLAKE2b-256 fa77733a0801b6ecf5cf048fb89b515cc33076eef54637a82ced0b98ab6fb5a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b6a71862ea37912f2f316d6cb8a82730ccaaf4c4cecdc2747a9778b80bdc8230
MD5 3ec7347b8ffb7f7e02bac5c70bcd1bec
BLAKE2b-256 af8fce416c75500e4d37b74673d4594add5706fd22ee496df8d0797bc395bb1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff6e2410aab4444982f960aec54dc3208dbac32ad5b796ac5d5c1a24e9600923
MD5 bfb30e4cba47af47b63c33700a89b627
BLAKE2b-256 de3165edb0322b16b17483449cd740fa5d5b7e26a86afc8a6d298a4f4296c8ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a867232ceb4869e7d805ac3c1897ef796293cd3f992b41a5bdd84a97d46a5fd1
MD5 c24a71fa4cbf18940819094e3b8c68f3
BLAKE2b-256 0b4bf332fe374a2d1a31fb04a6eeffcba70b5e3eb7ec56b9c31a8090d6289991

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 90.9 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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 15402747bf830374f3fd29d3edfaebfda9e471c2241bc6de5dd6bd6bb56ad9e8
MD5 a35e730a37cdf23484470a6e3f286ae5
BLAKE2b-256 b789f4f25efbbd763067376675c1b2ba387f2bb5192fe017900d6508a5f188cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: fastpysgi-0.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 82.0 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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 83128450f0a3eb49081085d1e1414ba91f34cc7b8640bfe206e48d563d2d3dd9
MD5 75837c3e8f4da4093d3a22268b5df059
BLAKE2b-256 68a63a1266fe5861969a1a7e1d7d2ea990be07cb3d280e634b8a8b72265c4b5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 701af41740a515d15a0e223fec9464e62451d303e690fc46257d8e8d9bd35e03
MD5 861a0e90a7eb4e58f5131817f0f61702
BLAKE2b-256 470681fb4ce4fdf4b92bf309d65dfe34fd1a5ee557739d23476428f5d2116dcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6c3a91cf807bd9eb24e8fcf0715b3812b5ea8a78a5dd48ac3ffe739975d862f
MD5 26def32d26afadc09d3e09f2647d48b0
BLAKE2b-256 74d1b8c0cf90605f5505f8219d0c38dd1fb7bebf588a5e2bfc74c4ac05c61980

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b859c825a0d256138e1706769d1c144af8f53dad94c4972f8a14199d7a0dd6c6
MD5 53cd9040055c685a94be44af8ae2f581
BLAKE2b-256 f3792dd394f172dc29664551c51f62883f7346a2f2ba72db62c55bffd105432a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c50a8a44b2ee446cd496bbccbd48779ba58c5cf21d28120d2fe6603509e637d
MD5 439cc0a883402381614bd3a86935ef6f
BLAKE2b-256 00d93ca8724a5e47d0ed933a4aa361ef3d468347aefdcb40f4817cdadf0acc21

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp38-cp38-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp38-cp38-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7adcb3e67f062dea597d10c43f200ebfe377080e4a73974cd66ba9f955031b49
MD5 df79b55bdf2c17cce931041a0f68ba12
BLAKE2b-256 15035c339aa26d1f26ab5cd3e128bbd4562ebe5f018e2f512501d61c74101f95

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af3e808eba6b72fd1ac257675f1c6fd42add146589b7ec2ee793d32c705e8156
MD5 0f1a661fd16fbd62cfab77d39bc5279d
BLAKE2b-256 13baf7f0afc0bbcf0a6ba30b26d40841bef4ff79832588968b0dd4d42f011afc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47166e68ffddc5044e7a5877ac387caafcfc7c965c2a625ebc640395e74d4246
MD5 d93c71de7243f761d03dd1065233c704
BLAKE2b-256 bc5a68135f68f634a3ffcd9de453c142d30b45e9ce7aa98458ddcfc4b46a1903

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastpysgi-0.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d47be51e8ff5c812536b787c63731fd0b8fa1ae119928accf0c431e3f4c6ded
MD5 942e617201735b1f4e88971257477430
BLAKE2b-256 89ed8eb07f114c437d3a92ea1e82f38d5989e44a77752f89e15804b2ce868e09

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastpysgi-0.2-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