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.

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.4.tar.gz (694.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.4-pp311-pypy311_pp73-win_amd64.whl (99.7 kB view details)

Uploaded PyPyWindows x86-64

fastpysgi-0.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (158.2 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

fastpysgi-0.4-pp311-pypy311_pp73-manylinux_2_28_i686.whl (176.2 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

fastpysgi-0.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (154.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

fastpysgi-0.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl (147.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

fastpysgi-0.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (151.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

fastpysgi-0.4-cp314-cp314t-win_arm64.whl (92.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

fastpysgi-0.4-cp314-cp314t-win_amd64.whl (106.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

fastpysgi-0.4-cp314-cp314t-win32.whl (95.7 kB view details)

Uploaded CPython 3.14tWindows x86

fastpysgi-0.4-cp314-cp314t-musllinux_1_2_x86_64.whl (167.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fastpysgi-0.4-cp314-cp314t-musllinux_1_2_i686.whl (184.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fastpysgi-0.4-cp314-cp314t-musllinux_1_2_aarch64.whl (162.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fastpysgi-0.4-cp314-cp314t-manylinux_2_28_x86_64.whl (166.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

fastpysgi-0.4-cp314-cp314t-manylinux_2_28_i686.whl (183.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

fastpysgi-0.4-cp314-cp314t-manylinux_2_28_aarch64.whl (160.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

fastpysgi-0.4-cp314-cp314t-macosx_11_0_arm64.whl (149.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

fastpysgi-0.4-cp314-cp314t-macosx_10_15_x86_64.whl (154.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

fastpysgi-0.4-cp314-cp314-win_arm64.whl (91.4 kB view details)

Uploaded CPython 3.14Windows ARM64

fastpysgi-0.4-cp314-cp314-win_amd64.whl (103.8 kB view details)

Uploaded CPython 3.14Windows x86-64

fastpysgi-0.4-cp314-cp314-win32.whl (93.3 kB view details)

Uploaded CPython 3.14Windows x86

fastpysgi-0.4-cp314-cp314-musllinux_1_2_x86_64.whl (165.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fastpysgi-0.4-cp314-cp314-musllinux_1_2_i686.whl (182.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

fastpysgi-0.4-cp314-cp314-musllinux_1_2_aarch64.whl (160.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fastpysgi-0.4-cp314-cp314-manylinux_2_28_x86_64.whl (164.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

fastpysgi-0.4-cp314-cp314-manylinux_2_28_i686.whl (181.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

fastpysgi-0.4-cp314-cp314-manylinux_2_28_aarch64.whl (158.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

fastpysgi-0.4-cp314-cp314-macosx_11_0_arm64.whl (147.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastpysgi-0.4-cp314-cp314-macosx_10_15_x86_64.whl (152.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

fastpysgi-0.4-cp313-cp313-win_arm64.whl (88.8 kB view details)

Uploaded CPython 3.13Windows ARM64

fastpysgi-0.4-cp313-cp313-win_amd64.whl (99.9 kB view details)

Uploaded CPython 3.13Windows x86-64

fastpysgi-0.4-cp313-cp313-win32.whl (90.2 kB view details)

Uploaded CPython 3.13Windows x86

fastpysgi-0.4-cp313-cp313-musllinux_1_2_x86_64.whl (165.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastpysgi-0.4-cp313-cp313-musllinux_1_2_i686.whl (182.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fastpysgi-0.4-cp313-cp313-musllinux_1_2_aarch64.whl (160.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastpysgi-0.4-cp313-cp313-manylinux_2_28_x86_64.whl (164.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

fastpysgi-0.4-cp313-cp313-manylinux_2_28_i686.whl (181.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

fastpysgi-0.4-cp313-cp313-manylinux_2_28_aarch64.whl (158.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

fastpysgi-0.4-cp313-cp313-macosx_11_0_arm64.whl (147.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastpysgi-0.4-cp313-cp313-macosx_10_13_x86_64.whl (152.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fastpysgi-0.4-cp312-cp312-win_arm64.whl (88.8 kB view details)

Uploaded CPython 3.12Windows ARM64

fastpysgi-0.4-cp312-cp312-win_amd64.whl (99.9 kB view details)

Uploaded CPython 3.12Windows x86-64

fastpysgi-0.4-cp312-cp312-win32.whl (90.2 kB view details)

Uploaded CPython 3.12Windows x86

fastpysgi-0.4-cp312-cp312-musllinux_1_2_x86_64.whl (165.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastpysgi-0.4-cp312-cp312-musllinux_1_2_i686.whl (182.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fastpysgi-0.4-cp312-cp312-musllinux_1_2_aarch64.whl (160.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastpysgi-0.4-cp312-cp312-manylinux_2_28_x86_64.whl (164.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

fastpysgi-0.4-cp312-cp312-manylinux_2_28_i686.whl (181.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

fastpysgi-0.4-cp312-cp312-manylinux_2_28_aarch64.whl (158.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

fastpysgi-0.4-cp312-cp312-macosx_11_0_arm64.whl (147.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastpysgi-0.4-cp312-cp312-macosx_10_13_x86_64.whl (152.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fastpysgi-0.4-cp311-cp311-win_arm64.whl (88.7 kB view details)

Uploaded CPython 3.11Windows ARM64

fastpysgi-0.4-cp311-cp311-win_amd64.whl (99.8 kB view details)

Uploaded CPython 3.11Windows x86-64

fastpysgi-0.4-cp311-cp311-win32.whl (89.6 kB view details)

Uploaded CPython 3.11Windows x86

fastpysgi-0.4-cp311-cp311-musllinux_1_2_x86_64.whl (164.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastpysgi-0.4-cp311-cp311-musllinux_1_2_i686.whl (181.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fastpysgi-0.4-cp311-cp311-musllinux_1_2_aarch64.whl (160.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastpysgi-0.4-cp311-cp311-manylinux_2_28_x86_64.whl (163.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

fastpysgi-0.4-cp311-cp311-manylinux_2_28_i686.whl (181.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

fastpysgi-0.4-cp311-cp311-manylinux_2_28_aarch64.whl (158.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

fastpysgi-0.4-cp311-cp311-macosx_11_0_arm64.whl (147.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastpysgi-0.4-cp311-cp311-macosx_10_9_x86_64.whl (151.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fastpysgi-0.4-cp310-cp310-win_arm64.whl (88.8 kB view details)

Uploaded CPython 3.10Windows ARM64

fastpysgi-0.4-cp310-cp310-win_amd64.whl (99.7 kB view details)

Uploaded CPython 3.10Windows x86-64

fastpysgi-0.4-cp310-cp310-win32.whl (89.7 kB view details)

Uploaded CPython 3.10Windows x86

fastpysgi-0.4-cp310-cp310-musllinux_1_2_x86_64.whl (164.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastpysgi-0.4-cp310-cp310-musllinux_1_2_i686.whl (182.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fastpysgi-0.4-cp310-cp310-musllinux_1_2_aarch64.whl (160.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastpysgi-0.4-cp310-cp310-manylinux_2_28_x86_64.whl (163.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

fastpysgi-0.4-cp310-cp310-manylinux_2_28_i686.whl (181.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

fastpysgi-0.4-cp310-cp310-manylinux_2_28_aarch64.whl (158.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

fastpysgi-0.4-cp310-cp310-macosx_11_0_arm64.whl (147.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastpysgi-0.4-cp310-cp310-macosx_10_9_x86_64.whl (151.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fastpysgi-0.4-cp39-cp39-win_arm64.whl (88.8 kB view details)

Uploaded CPython 3.9Windows ARM64

fastpysgi-0.4-cp39-cp39-win_amd64.whl (99.8 kB view details)

Uploaded CPython 3.9Windows x86-64

fastpysgi-0.4-cp39-cp39-win32.whl (89.7 kB view details)

Uploaded CPython 3.9Windows x86

fastpysgi-0.4-cp39-cp39-musllinux_1_2_x86_64.whl (164.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fastpysgi-0.4-cp39-cp39-musllinux_1_2_i686.whl (181.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fastpysgi-0.4-cp39-cp39-musllinux_1_2_aarch64.whl (160.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fastpysgi-0.4-cp39-cp39-manylinux_2_28_x86_64.whl (163.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

fastpysgi-0.4-cp39-cp39-manylinux_2_28_i686.whl (181.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

fastpysgi-0.4-cp39-cp39-manylinux_2_28_aarch64.whl (158.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

fastpysgi-0.4-cp39-cp39-macosx_11_0_arm64.whl (147.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fastpysgi-0.4-cp39-cp39-macosx_10_9_x86_64.whl (151.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fastpysgi-0.4-cp38-cp38-win_amd64.whl (99.6 kB view details)

Uploaded CPython 3.8Windows x86-64

fastpysgi-0.4-cp38-cp38-win32.whl (89.5 kB view details)

Uploaded CPython 3.8Windows x86

fastpysgi-0.4-cp38-cp38-musllinux_1_2_x86_64.whl (164.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fastpysgi-0.4-cp38-cp38-musllinux_1_2_i686.whl (181.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

fastpysgi-0.4-cp38-cp38-musllinux_1_2_aarch64.whl (160.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

fastpysgi-0.4-cp38-cp38-manylinux_2_28_x86_64.whl (163.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

fastpysgi-0.4-cp38-cp38-manylinux_2_28_i686.whl (180.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ i686

fastpysgi-0.4-cp38-cp38-manylinux_2_28_aarch64.whl (157.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

fastpysgi-0.4-cp38-cp38-macosx_11_0_arm64.whl (147.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fastpysgi-0.4-cp38-cp38-macosx_10_9_x86_64.whl (151.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: fastpysgi-0.4.tar.gz
  • Upload date:
  • Size: 694.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.4.tar.gz
Algorithm Hash digest
SHA256 65649d585feadea838b32ec82e56cc4fa97d35093ee16876f8f45834cbaca6c8
MD5 9b24a1ce519d4108a560e461230b0ce8
BLAKE2b-256 b7f02ea036cbaf0aa8746492fd7d45eac9b5a9d132306bbe780a7c1a8b8de917

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5b88e6fce7d733a91045fd53b5fe8aa4949716664304bf6daea2e0600d156042
MD5 390000876b270c93b95bc41640bf6424
BLAKE2b-256 14b5e9faf67fbe1080bb1f624a0a51484dbcf49e031d2acb07b63aa51ec603fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e19dd16b8e172a8b2ee23c8a1de0d182a689003e31e898a76d06db118c2fdfaa
MD5 f33362ef3303ab08d7004d58b080205f
BLAKE2b-256 d0a18c141289f1c5179f846387142e45683e0203ad2779325a912e6a6e1f85e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8cc221f226833ead14f469cf3a4708d71367a44367aa0a1473d4354a4cafff2c
MD5 a3a77a30291e79076898b08dfcf572a7
BLAKE2b-256 5496fe4cb7186ff0204ee318eada3943a3677f64d2e9390caaa85ab069bf32e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32a84b92b30b10c2c9e8452c3397e2d38839dffaad5d54646a8706e7007908a6
MD5 07ba03ea5cd0af01d090023422ec1467
BLAKE2b-256 6e7218ed4f4ccbadd7effbc0e61ec5c0bac783c162a37eae03474c300938e79f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 386eeda775692653a1ded68ea426db6ca033ba95f4eb0be68ae9740dbaac07d0
MD5 1f33ec787018f8f0e36d76d4eb91842d
BLAKE2b-256 86b98df4e25af18e76636c2bd3578fa14a93c42f86f40c79ac151e904db248a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 16ecf620e60a7dbd8dd630f43088c480c8b957b2a5189362aa58d7cf380db149
MD5 4e90a5415127211960ec0d44ce760e72
BLAKE2b-256 d64c35686ad6ade5f40b2bd969151763269772a9420f15ce9e353a54f54d15cd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 92.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.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 1a8d09f5a383760e3c841f2053885e189e6cc5d0ea71dd83ac9967f55f0e4b63
MD5 63670ae6d67500df9c7ae8c82228001c
BLAKE2b-256 925aa637ccb706ac28d94000af878d5db0435d01b2a9dc9754760d01a4ce2828

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 106.9 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.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8644b1a434fee3556133b5853e83abb823578b5fad925a6a2377263b08e1fa82
MD5 0be7949efe9b80c7439e247261cc4b8d
BLAKE2b-256 0c1fcdcbd3c51891f11f51322659045106ee2dbeb48062cf5a6a27d4c8975e8c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 95.7 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.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 22f8fef3ace570eed5e2f18b5e7ca837362481b59ea8881b21763fbebfae61ea
MD5 2289ef0a614b987dac9da5a651583395
BLAKE2b-256 15e8576a4c4b3939e657a145fe628fb7e43216de100cd8418ebabd3293fff983

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39441b738f67108a760480774a35ded061ed36b587d2a73e0cfc7d87ec31ed2c
MD5 8951b15e2c22209e3392439c76c1f220
BLAKE2b-256 d2b4a172938ced2f5cd576d19bff5f073758ba26d6a4fa0e4240f28cfa829a5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b896cff85508080252ddcbb51b8e5753b34f1bc43036c89331c04c51ea9ff0b
MD5 c1ddec541ae9c7139479c195cce277a5
BLAKE2b-256 41773e98a593a2a973d675e4f3be7421cfafa0d4c493327feb80952af14049e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4914af1fe5c21dfbf96ee04485f12034d239a7ddeb9e98ad783c885f0a0b15f1
MD5 76ddad5f32e0463b9c9406cfebd7c7c1
BLAKE2b-256 1c9feafdcae6c25e7104f5327735719b983c46a4873ba15d4b52ab63f0b45de6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 46c393bdf1d0462007487e232d5ae59e4dbb38879623589511ef5d06bad6f71a
MD5 8b8f0d5fa2662e7a07db4d7884df6c70
BLAKE2b-256 95d6296fe5a4677cf5158bf6a37ce11fa21d98368016ec470738d6cfc348af9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 07e16338f3676d4c8981e7e34043965c659601f6719275cc45102b1f733dab1e
MD5 25171a1d925d42f3b27f38aa53cc53f8
BLAKE2b-256 85a6bdab6da158f9b59535076d350f11f7b2ba33d58652827aa040c2c1880705

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3dfdf751ccbc992e0660c695d9933662cbf9e59c16ba9360257263080dc05d18
MD5 29f399dcf96955508fc8e5b93f66f301
BLAKE2b-256 8ed44a0d90a54405eac08a9ad0e7e3418c11a8eb961e5ed8c4c68572817593e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dfc8ca7ddfb1bd02a626bc804c80deba845d9fcb6544a9e0a8cc1f855190da8
MD5 deafc045250186448e71b0b338021234
BLAKE2b-256 51d6c2dd422a31e2cb3f9157eea56ead4d49657a61435f7d8364552246c81b64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6731878a4702eec1302995bc2a767f9a1b1c2cf7dfacdd2d99c1d5dca09b9477
MD5 0984008baf095d3487b2e3feb84fba66
BLAKE2b-256 da12d468eb086e5278ae02d3f1f5b310fb78245db15096e4975143cf7e0721cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 91.4 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.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 00ea5bb6695b57f6646144715bcc230617ec4d6a4c3e3b4f06129a55bb7504d5
MD5 e4544e48a7d4438ba7d41f94c2875635
BLAKE2b-256 ac32abadd4c84cf6affcbaf90312638af908cd1d08d83763d1773b63d189969a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 103.8 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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2c1db4a5402e8876e49b773f0ad2cbc4f8e15f4e903f5ce120e8cf4552e5837a
MD5 c6f4a1a32ca418737543d6d86ae9e50e
BLAKE2b-256 a1ec35fbd58a09d8fe9f8fa167175f5a6a653072c875eb07f464d38327d34643

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 93.3 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.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 873a7f5f4d2c6b498327d79f37af89929c1590c2d46c6ba906ccc06e068e2eff
MD5 bf9f97c6eb9493265d91a6b223884b81
BLAKE2b-256 e80c4caf53fd7155d6670fb88a7c79959185a60d62af68cf6c0815e63a7c48ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31a092d263fe702a5cd3766336501dbff5df4dc7febb8be537feb5aa62be2e81
MD5 a84c8a7a47d9224912d323824a89c245
BLAKE2b-256 53e2e9f15d1af94c1962ad9e57c6c13df34267be0b80121bb0f6827234e5aae6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 709e99d8483355f0a644d7aacf687da1f19770c0b3ee81077a12dbbd8414d47e
MD5 6e46ac7a25025215cfbd4a5ec616394c
BLAKE2b-256 51b02ff2b2700690e230dbb6d38e0a92001db9f51ee0838623cd462b884f8e10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec861d83f5c0f87a0a3065233b2c786412f061951010a19054761e6b5e5e2ab4
MD5 1c878c854233ae87c37a1473157831ec
BLAKE2b-256 0d37987c434b0c7974b4614d3a368aea0395daa4a17215afbca083fc8f17e502

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a44a8410fe12e3e6febcc134d06e3c5d4fc88c486a50a8097cf44f8a38bd2a2
MD5 13930bf1a6f6c814e4c7cac880cd0fa9
BLAKE2b-256 fd5eaf363dfa95d0238b491a994afa0a86d8ae3519b1221fc51eb868e0481fdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 233d4b73ecb9d6265869daa9915accc29cfcc28df5e5a2002d3baa4f2b12ebf2
MD5 dcba0f8d2eb2d63f83215bec338e88d6
BLAKE2b-256 f9e48abbe109cc1e5a94fd8a4cd4a427c4b77a320aa2476654427e7689e483f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c00210de709bfec216828b165548d575a10d5dc69070792300068e5f4e74bf43
MD5 3f2a9a1be8ac734bdad56bf0511f08b6
BLAKE2b-256 2f5e6a5f9c84291200f2e2c7dc75b2674a1b75d80408cb4142b3014e8063d5c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78e38e166d3ca0a3132dd1c965e515cb5115a9b550154beb70eb9e78e193231c
MD5 25c5504881c1dbf12e704c6c92ec3530
BLAKE2b-256 19d06f6b8dd921c822a71514f9a789d3223283e62a2221d3127ef7f2542bb294

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 08a70ae0716c35934393a7fe76ba61f08ca54f1c9769c4a7e70a7a815305d089
MD5 63345f885fac9aaaec1b7a34ba34cc65
BLAKE2b-256 2401a23cb2233d3b021cb5a9755e5559f3c42334e7c030122321d5b8da572856

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 88.8 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.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 67a275b0b50171cc95c1119b5982fb4461d8f7cf9aa78d6e23856beed4fea36a
MD5 225427c79924a6c9c3e04f2cfcd42d0f
BLAKE2b-256 0a09337f5af4c988f0c7046e5ad265d8df2e9a8c2df8748cf9ed4abc90262a7b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 99.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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2b097fe869da9818e12a069bb3873e85db26be1523a5a0fa55fbbd0821ef8484
MD5 656f90853d679f704612822450ad09c6
BLAKE2b-256 664b7081513822adabe1c1bac8b45feee7dab73cdf60a5951788677f68b72617

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 90.2 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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b829a5525c24d1cbddc221346694ca601396c0115c4af622343b5200884d2e46
MD5 01b2ec9231931799b50bc1f096059e62
BLAKE2b-256 622196ad9e07f47198ae69da5dfc609843f4d0cca27c8065cf92ca8432ca78c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b66b26b379d31cbc1fd7774780bf458873989996998e82fe5f13110022cbfc9
MD5 461d1c6a7034e64d80c6fedf8007f73f
BLAKE2b-256 52100ba776b42519d0a864b7ccbefe75754e41451d8fe5ea6da35d303aa73c01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15450ffbb592b09afe17dfde2071d544e7006ffa6a181cc5f7774da98a91ec1e
MD5 cf5dd53a4f9d6a002aec99526fc74f44
BLAKE2b-256 f8d927fc8bac7442f9425e5d24ab3c4752d5ffe6613988e77925c4c75193194d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 039b14543a81a564972e88c5704588a436dd7c160635e31cea096536ca0c6ceb
MD5 1fdece9c243b8640c834e1997c466dde
BLAKE2b-256 178a0d9abd49b7ae6473d3757570447896a83e5ed1cec0bef86e668a93a51022

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6872adcad8ff34510d253e94adeb32147070e7f0b70c1b968f82732479b332c9
MD5 c52c55596ba5a30eaf7545251f97624e
BLAKE2b-256 4612e957e6b2f14b1d61ba27b0377f645868a172c0ff423dc5409e91afbcd91b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 740975596f1c81be0c5deaaec1bbab4db83d9dadb430fde45830180a6c68fac8
MD5 17d30c97f9283e916e8bd547aa752bbf
BLAKE2b-256 7e61704fcd714fb0bd651dd3c7bb142bd99916fdbdb547f476c2f8719fe5c71e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 37f511f7a490d49062176df2d84c69681d79bc84e400ddad32d6f3570c205d9b
MD5 49e7efcc1357d49cc4ff71387b3ed4c5
BLAKE2b-256 539db1392d7615d3a5b818b1d7c3b0f80d648e25fec4f5feba480578910868ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 834deb4cb3848b1db5dfe2fac3f6fab053dcc512c671fd1048789b2a6c1ab1f0
MD5 17777cd0d875ee730ae684f4729efcbc
BLAKE2b-256 5cc7cca726dc542943ac9d9db18dd1679900ec8760ece9fb8a31e5b003040d4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 46e92c5d8ffa262513b154544f872200d9f4c7d2ed9534dfc999e0a0847353d7
MD5 332791f4e07702e0a6007dd497aafb82
BLAKE2b-256 12f3f298ba306837b05c6fca7a63d426e8703beec60b995dbdcd5be5b11b8058

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 88.8 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.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b671dcb131b62299956afd2bf1cdcf4900c536f5f3a10f4186897744ad1e6d55
MD5 6343165d051e16cbe76443172560650d
BLAKE2b-256 fa6a6133d076ace19ecbd97aa4a01151909671817c762964ce94a694596a5c22

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 99.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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 85f092313a0355ab95de7f46f649f53840d2ec919681aa9bd488cd00a0bbcddc
MD5 4e2d1b5f87cc982a9353af74907d1afb
BLAKE2b-256 6a4b58a0bb92519f0f6b9905a71cb120e9c13c4e71d5b424ba1197fdef176df6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 90.2 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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 dc4871a216cb09dd02467c9022eac8f14bd6b06ef3104bf42ab5d5f5df9dcd22
MD5 3845f58ebca2b293bc0cf2ed203f684b
BLAKE2b-256 24b28ba9efc76d4c44753e731feb1314503bb377c7e590cfe878b2669f7cd185

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf35eb44ea0b4a92b8df85b4244f6984ec6589284fc12ec2490fefd57e56d033
MD5 0154d5e4314922e96f6a03565183d5bd
BLAKE2b-256 e85c129bed641eeb09ea838a96cb5483e9481baf158b2bde16e2ddbdd492160a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d234bcb8c1b702ca101d220ba01a53264f2589f007b1ee2174ef3f9071ac14a7
MD5 e4ddbd26778373ddbd95842254ebdb86
BLAKE2b-256 6e5f31b6833a83083c10a056119515a4010ca1ff9b7d667093c6d4b8ab9f4657

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b99cbf92d195465d696d9352a2fbe871db914778009a04de095ccecedd817a6
MD5 1b7b11744cb88311504a6e68432fa387
BLAKE2b-256 ff85d6b35d8f12585d482c73079a4310ee5e5dcee43b422484f4e3a763db06d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2ac158c9c876260dcfbbf81dac5937ec9f036e06143389b019cba568d743cbf
MD5 29e072ff7f7485068b1972218fd7fb41
BLAKE2b-256 01957ddad6d8bbecdd56648cb440a9fd0b95b22dbb4f114a8e984310ec31b16b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d65be609378a60920d88d0299745f941a62c66bedd48a1f8687863476debb805
MD5 7c84df7ad95d03ccd50e5061ef97d82a
BLAKE2b-256 66ddf93b6a3fbea4998c8e761533912e517c585ac893ff2d862ab93ff0eb0c99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f49c6428904306d26bec7c9d68ad200f5e762211c45944a01441fa8f3c90609a
MD5 cd8962dd7c8466c234b31e4e95509467
BLAKE2b-256 fe82c3f3220db657c9f1c87ff533db3629070c3be583b4a1c05286bb4f09dcaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56357105d257f1627e4d8cddbaf478362e5f5432105fbac5d4dcc6f294604259
MD5 740d1359c0cd0ed72407aadc7e316499
BLAKE2b-256 9e8154fb62b01718d884a99c0aa218e28e0fb25b941b39fde45ea929c56f4dd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3594830f5c379b2f64794e5d11c3d8054551f6bcecd99871853030a61f238f46
MD5 6f17e62176a6d32c156eee0dd777fdb0
BLAKE2b-256 224703c120e758bd381face4598bb88cbedffd3b02313c722bdb9313f8b05a68

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 88.7 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.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a44a2e889efbd2c1f11598c84f72b6e9b55ce359a0d55f824acdc052bbeb817e
MD5 cacc4ec13c4b6c98fe1d2c8570952261
BLAKE2b-256 0ba962578a0d6f34186e11fedeca16cbbb5d15cea4736df6fdb3c0c8a04d0fce

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 99.8 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2e0033fdc9fe41e26eb28735fa39a9d267c479ba0e2e88edc77f63feaeb8761b
MD5 afbff3d9e5736f3cd8855b5bebeb9ec3
BLAKE2b-256 48cf4f0c1957e5ba1ec6eb64729648c82f9b536f5296acf426f960e08ca28881

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 89.6 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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 44dbd78ec65d372c1fc52cc1ede057e97ab1a372c34e76539fe71128a424e45b
MD5 4af4fbe896b592840062242e89fbfc27
BLAKE2b-256 ea4f0e84f4ac4842f418ed05bcdde5f3564de179938c7198ad2d898c739ac2f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d4cc947776274d917f9ba8c039431b403a3509ea0c90135c8dee7664f43f40b
MD5 019f3656bbe0262cd110f28f4371537a
BLAKE2b-256 15aa8d2e06ba776fd410943fe6baf9f7374ec2f34ddbc17c5b3019d231f1a9c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa277147fb024d3cd69fb13eb66a14f00e3ba8d8ba7785c5f0cff96b5cf0e225
MD5 7b9c90d233d77508413e228ca92c79e2
BLAKE2b-256 a1eedbb1f210751431342868ec3de36b9e4f164f659e29b377972121a79f54a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98add97e2e5b863b05777858295ff6f4b61f1d8e53ee34dcc2d648b6cc5ee9ea
MD5 53181900bdc4072203eb2b76314d669d
BLAKE2b-256 7e879299c7e6af13b3408ef074cd229db5436ee97feaa505cc7dabf20238344c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5f5506a46339b342444db33c0359c0238f8a24602ae564c0bd3cefc0d0a0c351
MD5 c376ecc06650814944d2f4252bbe0c50
BLAKE2b-256 912baa5f503a550ecce38397e0330fff90930df3a6be55dbf61d844425398c1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7eddd87f5b24a3b1ea12b827e21ec0c2ef841fb8e0af03ff10c237c206bc9b14
MD5 7fdeb53aca0e032590b66c8b2d80f24d
BLAKE2b-256 03f0eebf7baa09541854b6d5bc8d4edf3d0972884c2ef1afa379824313235c9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4669981b8c62545d0c394ba16439ed60594c53285cdb575093278fbf7faf914e
MD5 8b4dd56cc7884ecedeb1133ced7d71f3
BLAKE2b-256 fa4e6fef9667b3a4c2788af313155dbaa2b5ac44315fc232c63259194fbb98d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8838c72db2297dbb02e6523c00ac22ccff73bfd9d91c3ac6febc3818cf374f48
MD5 cff763601b8b03fc06948fe88c536f36
BLAKE2b-256 470437857cc905c4432adac6f31a380162d2850897b6ed545e5ff787e69292d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 670cfa45c98e5d2d206898da67eeee5dc9182ff561cee389dbf94a7e8ed53295
MD5 374fa6b38b35f9de0665c8b084b951be
BLAKE2b-256 52e41b7560856f43da69c8b5e0ec48b60fb16aab78d42cd830d9489cc87f39a5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 88.8 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.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 9e5763b60477c98668fb26f075ddb448fda5da2782ea2390e8ecc3829f7bddbd
MD5 cb6d3812d6d14062b2a43c240fc000a3
BLAKE2b-256 4ad6f18ae6206e206b5092add6ecf446713246f8881b147e688fd5f4e2b2dea0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 99.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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c9539bb22b89868a6f4d266693be168fe19ead9692b9ad5d770eb238b06d9830
MD5 e72f5ba724fbe58657c87b7322f4b228
BLAKE2b-256 52d517d4833db9791ff36e729374e24e8228d277446c1f29e7993b43a3ca5125

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 89.7 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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 afec81b21df3dd5913f6e968d795c4844bc5991b43f17f7f50dd39c56454f7da
MD5 f96b8e9636955660807f74afd9dde3b7
BLAKE2b-256 b69c041fc430e342de7388ca6d58e2165e659bff7ba37f3dd031acfd3a955805

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c962d3effa544d6a7e5198f2f1783fd3dac7a05a60aa45f20e6a1dad7a46fdb
MD5 e82a886067cab2d28ad5c72d66c18345
BLAKE2b-256 774a2440e94a3d8c127b2d2aea15b74e7656d2eb806b5d748fa2753db8005269

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55494241590f9514e972a8b7ddf2e7ea1f537e93d332309d2dd4f7f0fd3c7f0d
MD5 8f15ba1f62f5ced6c6d63b7ee7acb6bb
BLAKE2b-256 90a6293a5c86cb0919aeb9d16cac4264ef963315ed3360d065229646549009f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bebc82a35c0dba30d0b0147e644b6a0dedb5529a5aad100736daf51d714651c7
MD5 92494fe115c2d462a80fca5dd425b773
BLAKE2b-256 079b121068cab3cca5d342740a026293101d21aab64da2f702b91366ac2879c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d237700ebd73a964882c25a9f15186fb2a84e51b665eef8fc9328c88f15fd3c
MD5 e0dcb7369d565d79a7fed4357c37228a
BLAKE2b-256 020cdbecc43292363379fc217d34aa5ea16f17cefd484a65d81d984c073b819b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4012a6a4a1a5cc66727c42867cadb08c7578328e4f714b3cc19ccf720650378f
MD5 0f17f275db0f201b785a28b7a37f2514
BLAKE2b-256 0e0a2bef992d5d3849346ae232b48c1cafac3962f3317219da0fdef696003bb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3dee9ba6baafbb7bdf0906c06bd6da92f7771425027838235d760937b7c2180e
MD5 5804528761b39c4af1f0e89f0d8a4c24
BLAKE2b-256 81e04a41de7adda9e0a83d31ab8812ddb620f0ffaa4c6fa592c3a135e441a391

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f30629f7f4fd6aa1dcc1af6d905a63afbd1be5ad49730c79ff601bcb16d2a61c
MD5 e2fbbe2a614eefe369d556e9f887dca9
BLAKE2b-256 01ae43963a7b5b92d4874cc51b9dfc4730742cf99a393ea8f5be3bb43d6756b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1c3df286df0201b043966e58cc808c994ecd9d4f00016c8e35e4c94f457f158
MD5 8b4db9c9c59d5e67460ce4917c0a4554
BLAKE2b-256 3dcb82d569bc9dad491aa3f608a72bcae61fbded676cc4f8894a2ea461ec4eb3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 88.8 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.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 3f5b5b3ca596fd58990c5dca46e06cd1c15b82a7b0b97045cb44d47f149d95f3
MD5 67884c95b0ad59414a40786eb55a0701
BLAKE2b-256 433ea44915bd84905c0a3a4ba4186bf2e88dda5feea8ec06052a56b1f0452bf6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 99.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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f1b8d34af97a9e75628cb8977d1f6d66d21d7dc3f3c5f1e2b63a437d600d02b5
MD5 2c5f4c6acda3a4054dbe1bc6740572ec
BLAKE2b-256 f960b0480199e5001fe07172c680430997f341e9208162fa3f04ff117da1bde9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 89.7 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.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5209c2bc96eb3b45e12b68a55a03373f3fc82615bf9a45d824820660fefda497
MD5 b6463449fe6c576bd98daa89308b3eb5
BLAKE2b-256 b073755822dd433df939e4c5095fd903e2f50b06eafffdca2f58f7041f8cec9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 541bb0a23a34c0436424b8a2826ede8828126ca03f41feb51178facd27b4bf79
MD5 a9c134fa77ea74d3af4d15701de1d7ff
BLAKE2b-256 9510e3992fe2de484607696aad0f2cbfafc344026450a81154d8d15828ed654d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b08b5c06751431936dfb0580902afb58bda061b06d7c73848550ee62e05b6043
MD5 6ac002cd751ca59088908971c3404b4b
BLAKE2b-256 b18209bfd08a69f289d5e8f14cb7fd2028053470c5c03ed71d624719eb3cb671

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6a8d7119af7c61de4faed85f950e05c0449b97cc269393c24884a056bc67974
MD5 82513b339299106a12537fde9603c687
BLAKE2b-256 bd79ff0372fc0fed0fe7a84517a3508bdb1fe2274254c186896551f10dcc03a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff927bfb7c3cdd107413621f13dfd7410a250291470ab66c0e4db6eb0b960ce4
MD5 e76e39bf47c088a637ae5fcd99325ac6
BLAKE2b-256 05933be686605ab3d1f506cd474b41d90201730e060ebd13b7e226f9e959eceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0324d6c2dbe116c22e4b0899dc9978e3aeacdf783ace3682748cc518ddd7fa71
MD5 439f3d945a717a5a1fcf27bf792536dd
BLAKE2b-256 b5c107347376faa1b8bfe4c5945f55f7309174ab001ba4940395ffe7256a6b08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 661072680c6910195b77c32f3415bb6ebca05613b15b9e9f9355b54c5196a545
MD5 544a5e04c8ed3f6a41850ba8af633cc6
BLAKE2b-256 3e5aff1493e4baffb6107bfb45979ecff96b769b49b84a5f80c9441c00762aba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e8e5ca26d6ba9f535c408e560850989e15be1cd5d911992c952a7d04241e3e9
MD5 8cd351d5439f519cbc9375bbfb338c4f
BLAKE2b-256 3379b489ba6c9e905acd48825f7ac4a33dd6f3130999c1f65c228e4fe211eae4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8480b23728d9beca21775975987924d682675c6874eab8e1a9eec567bf15bc5
MD5 8953fe1fe03f506d2839fa26269dcd32
BLAKE2b-256 2de973b2ae662f861c8999335c2495dc888216f8218d7339eab8e66e19701453

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 99.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.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4e808ebad3fce1ca12872008cfa5ea48629659220c5b84cb284188676de5bac2
MD5 e06bb290f771dd3796f928086b271587
BLAKE2b-256 c3108a9dad269f6559deb8bd424a5a9b43f83ceb9ed6650c28705873c4f58d06

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fastpysgi-0.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 89.5 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.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 10c36b158e02a9483838fb779d56220bcedb477786813198eacdeca45835ae25
MD5 bb61f76f64529383ea7df507b5b0f937
BLAKE2b-256 bcc83d28adfeb28e3625f6a77e0e3283801e4141b2d42cc0d3bc515f4f7fa6ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adbc8a7357cbfe800f4003aeac9f57a3d257f38163cff1d559756e81235a139d
MD5 3e8e7e544f6efbe4462952662f826d56
BLAKE2b-256 b95d2cef20b33a8b1064277eac4c2f4a76a8da771804e1528512cbe21a3e1aec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a76de614b0560ccbccb10294e12b46e560ba39e42af22e461be9178d9bddc9bc
MD5 15750a644131689c678da36f6f73aec3
BLAKE2b-256 9e60b0268fa43b9e5f3cec7900efcddcf74f7eb53b42736395f2163d308b3ed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2578cc8efe7dc769abee95ef982776fc88146ea27f39fe43ba5de4b5d5a17df0
MD5 bdd1c36489ac48fb8822aca105bd7ab8
BLAKE2b-256 18e34576da1a923283d75410fe32b820e457caa666f69fde485d818c2b3f8cc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f21add3f14c2a7031256347491a9153871a16c52c9366424d8b54d1c6a13a9d3
MD5 c8c57a199e40ed2cd2ab7898b36c2159
BLAKE2b-256 cf8d15e7ce7942dc0fdd6052776b746fd9570000e074fb836961b4e1a85ec934

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp38-cp38-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e5bb9b1b535fe7a8417bca7004a5decb19e6682c08d14fa3c94de0a5a001eee9
MD5 68b58de9b2a04f3c8f4c0409e060be0f
BLAKE2b-256 da291b84a71ffe9a1b9523af0bd173e8928b6f60a5f08123cd94873ae9642931

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 85b02f18a3855e6d42b43a37e237a0e53da8f10cae53caf02433c953e3d72552
MD5 f46278951291e73b1b07eab77db7fc0b
BLAKE2b-256 8c1e552916568161426977e23e680178375a46f91f694018d7e13290aa50c748

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08c93cf2001e86bb6f22ffcf603916bd437d4dd6488512d02c1893468b688314
MD5 87985f4564fadd87c7e02c521d175532
BLAKE2b-256 1eab7273ec35444269650e4bda252e10527bd71cf2eb1183f4e33856542f6bc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bed446bc642af5400b25fddaa39aea6ef02b83b3dd424a63b424fd21786a85f8
MD5 71a3dfa0c627eff66637c1218edb40b4
BLAKE2b-256 e9bb1a8fa40a92c1e8acc7ab8f724ea71343b7c6a0093d199e790406a515e2e8

See more details on using hashes here.

Provenance

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