Skip to main content

An ultra fast WSGI/ASGI server for Python

Project description


Pypi Python 3.8-3.14 Github All Releases Github Latest Release ViewCount Donations Page

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/ASGI servers out there!

Benchmark results: www.http-arena.com/leaderboard

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!\n' ]

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!\n', 200

if __name__ == '__main__':
    fastpysgi.run(app, host='127.0.0.1', port=5000)

Example usage with FastAPI

import fastpysgi
from fastapi import FastAPI
from fastapi.responses import PlainTextResponse

app = FastAPI()

@app.get("/")
async def hello_world():
    return 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

Results of testing for compliance with HTTP/1.x standards: https://www.http-probe.com/probe-results/

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.6.tar.gz (716.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.6-pp311-pypy311_pp73-win_amd64.whl (117.2 kB view details)

Uploaded PyPyWindows x86-64

fastpysgi-0.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (175.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

fastpysgi-0.6-pp311-pypy311_pp73-manylinux_2_28_i686.whl (194.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

fastpysgi-0.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (170.7 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

fastpysgi-0.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl (161.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

fastpysgi-0.6-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (168.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

fastpysgi-0.6-cp314-cp314t-win_arm64.whl (105.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

fastpysgi-0.6-cp314-cp314t-win_amd64.whl (124.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

fastpysgi-0.6-cp314-cp314t-win32.whl (112.6 kB view details)

Uploaded CPython 3.14tWindows x86

fastpysgi-0.6-cp314-cp314t-musllinux_1_2_x86_64.whl (184.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fastpysgi-0.6-cp314-cp314t-musllinux_1_2_i686.whl (203.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fastpysgi-0.6-cp314-cp314t-musllinux_1_2_aarch64.whl (180.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fastpysgi-0.6-cp314-cp314t-manylinux_2_28_x86_64.whl (183.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

fastpysgi-0.6-cp314-cp314t-manylinux_2_28_i686.whl (201.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

fastpysgi-0.6-cp314-cp314t-manylinux_2_28_aarch64.whl (176.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

fastpysgi-0.6-cp314-cp314t-macosx_11_0_arm64.whl (164.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

fastpysgi-0.6-cp314-cp314t-macosx_10_15_x86_64.whl (170.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

fastpysgi-0.6-cp314-cp314-win_arm64.whl (104.5 kB view details)

Uploaded CPython 3.14Windows ARM64

fastpysgi-0.6-cp314-cp314-win_amd64.whl (121.6 kB view details)

Uploaded CPython 3.14Windows x86-64

fastpysgi-0.6-cp314-cp314-win32.whl (109.7 kB view details)

Uploaded CPython 3.14Windows x86

fastpysgi-0.6-cp314-cp314-musllinux_1_2_x86_64.whl (182.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fastpysgi-0.6-cp314-cp314-musllinux_1_2_i686.whl (200.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

fastpysgi-0.6-cp314-cp314-musllinux_1_2_aarch64.whl (177.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fastpysgi-0.6-cp314-cp314-manylinux_2_28_x86_64.whl (181.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

fastpysgi-0.6-cp314-cp314-manylinux_2_28_i686.whl (199.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

fastpysgi-0.6-cp314-cp314-manylinux_2_28_aarch64.whl (174.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

fastpysgi-0.6-cp314-cp314-macosx_11_0_arm64.whl (162.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastpysgi-0.6-cp314-cp314-macosx_10_15_x86_64.whl (169.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

fastpysgi-0.6-cp313-cp313-win_arm64.whl (101.1 kB view details)

Uploaded CPython 3.13Windows ARM64

fastpysgi-0.6-cp313-cp313-win_amd64.whl (117.4 kB view details)

Uploaded CPython 3.13Windows x86-64

fastpysgi-0.6-cp313-cp313-win32.whl (105.3 kB view details)

Uploaded CPython 3.13Windows x86

fastpysgi-0.6-cp313-cp313-musllinux_1_2_x86_64.whl (182.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastpysgi-0.6-cp313-cp313-musllinux_1_2_i686.whl (200.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fastpysgi-0.6-cp313-cp313-musllinux_1_2_aarch64.whl (177.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastpysgi-0.6-cp313-cp313-manylinux_2_28_x86_64.whl (181.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

fastpysgi-0.6-cp313-cp313-manylinux_2_28_i686.whl (199.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

fastpysgi-0.6-cp313-cp313-manylinux_2_28_aarch64.whl (174.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

fastpysgi-0.6-cp313-cp313-macosx_11_0_arm64.whl (162.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastpysgi-0.6-cp313-cp313-macosx_10_13_x86_64.whl (169.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fastpysgi-0.6-cp312-cp312-win_arm64.whl (101.1 kB view details)

Uploaded CPython 3.12Windows ARM64

fastpysgi-0.6-cp312-cp312-win_amd64.whl (117.4 kB view details)

Uploaded CPython 3.12Windows x86-64

fastpysgi-0.6-cp312-cp312-win32.whl (105.3 kB view details)

Uploaded CPython 3.12Windows x86

fastpysgi-0.6-cp312-cp312-musllinux_1_2_x86_64.whl (182.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastpysgi-0.6-cp312-cp312-musllinux_1_2_i686.whl (200.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fastpysgi-0.6-cp312-cp312-musllinux_1_2_aarch64.whl (177.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastpysgi-0.6-cp312-cp312-manylinux_2_28_x86_64.whl (181.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

fastpysgi-0.6-cp312-cp312-manylinux_2_28_i686.whl (199.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

fastpysgi-0.6-cp312-cp312-manylinux_2_28_aarch64.whl (174.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

fastpysgi-0.6-cp312-cp312-macosx_11_0_arm64.whl (162.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastpysgi-0.6-cp312-cp312-macosx_10_13_x86_64.whl (169.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fastpysgi-0.6-cp311-cp311-win_arm64.whl (101.2 kB view details)

Uploaded CPython 3.11Windows ARM64

fastpysgi-0.6-cp311-cp311-win_amd64.whl (117.4 kB view details)

Uploaded CPython 3.11Windows x86-64

fastpysgi-0.6-cp311-cp311-win32.whl (104.8 kB view details)

Uploaded CPython 3.11Windows x86

fastpysgi-0.6-cp311-cp311-musllinux_1_2_x86_64.whl (182.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastpysgi-0.6-cp311-cp311-musllinux_1_2_i686.whl (200.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fastpysgi-0.6-cp311-cp311-musllinux_1_2_aarch64.whl (177.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastpysgi-0.6-cp311-cp311-manylinux_2_28_x86_64.whl (181.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

fastpysgi-0.6-cp311-cp311-manylinux_2_28_i686.whl (199.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

fastpysgi-0.6-cp311-cp311-manylinux_2_28_aarch64.whl (174.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

fastpysgi-0.6-cp311-cp311-macosx_11_0_arm64.whl (162.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastpysgi-0.6-cp311-cp311-macosx_10_9_x86_64.whl (169.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fastpysgi-0.6-cp310-cp310-win_arm64.whl (101.3 kB view details)

Uploaded CPython 3.10Windows ARM64

fastpysgi-0.6-cp310-cp310-win_amd64.whl (117.2 kB view details)

Uploaded CPython 3.10Windows x86-64

fastpysgi-0.6-cp310-cp310-win32.whl (104.8 kB view details)

Uploaded CPython 3.10Windows x86

fastpysgi-0.6-cp310-cp310-musllinux_1_2_x86_64.whl (182.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastpysgi-0.6-cp310-cp310-musllinux_1_2_i686.whl (200.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fastpysgi-0.6-cp310-cp310-musllinux_1_2_aarch64.whl (177.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastpysgi-0.6-cp310-cp310-manylinux_2_28_x86_64.whl (181.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

fastpysgi-0.6-cp310-cp310-manylinux_2_28_i686.whl (199.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

fastpysgi-0.6-cp310-cp310-manylinux_2_28_aarch64.whl (174.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

fastpysgi-0.6-cp310-cp310-macosx_11_0_arm64.whl (162.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastpysgi-0.6-cp310-cp310-macosx_10_9_x86_64.whl (169.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fastpysgi-0.6-cp39-cp39-win_arm64.whl (101.3 kB view details)

Uploaded CPython 3.9Windows ARM64

fastpysgi-0.6-cp39-cp39-win_amd64.whl (117.2 kB view details)

Uploaded CPython 3.9Windows x86-64

fastpysgi-0.6-cp39-cp39-win32.whl (104.9 kB view details)

Uploaded CPython 3.9Windows x86

fastpysgi-0.6-cp39-cp39-musllinux_1_2_x86_64.whl (182.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fastpysgi-0.6-cp39-cp39-musllinux_1_2_i686.whl (200.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fastpysgi-0.6-cp39-cp39-musllinux_1_2_aarch64.whl (177.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fastpysgi-0.6-cp39-cp39-manylinux_2_28_x86_64.whl (181.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

fastpysgi-0.6-cp39-cp39-manylinux_2_28_i686.whl (199.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

fastpysgi-0.6-cp39-cp39-manylinux_2_28_aarch64.whl (174.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

fastpysgi-0.6-cp39-cp39-macosx_11_0_arm64.whl (162.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fastpysgi-0.6-cp39-cp39-macosx_10_9_x86_64.whl (169.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fastpysgi-0.6-cp38-cp38-win_amd64.whl (117.1 kB view details)

Uploaded CPython 3.8Windows x86-64

fastpysgi-0.6-cp38-cp38-win32.whl (104.7 kB view details)

Uploaded CPython 3.8Windows x86

fastpysgi-0.6-cp38-cp38-musllinux_1_2_x86_64.whl (182.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fastpysgi-0.6-cp38-cp38-musllinux_1_2_i686.whl (199.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

fastpysgi-0.6-cp38-cp38-musllinux_1_2_aarch64.whl (177.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

fastpysgi-0.6-cp38-cp38-manylinux_2_28_x86_64.whl (180.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

fastpysgi-0.6-cp38-cp38-manylinux_2_28_i686.whl (198.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ i686

fastpysgi-0.6-cp38-cp38-manylinux_2_28_aarch64.whl (174.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

fastpysgi-0.6-cp38-cp38-macosx_11_0_arm64.whl (162.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fastpysgi-0.6-cp38-cp38-macosx_10_9_x86_64.whl (168.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6.tar.gz
Algorithm Hash digest
SHA256 571a511e2cdcb76871a9d9e9587c7dc965c15d573db0e78e4189f88d688b09c4
MD5 d9bbb597a051aae21aa50ff176f41784
BLAKE2b-256 057afd2627fdb6485e72efa10db61b2859521d0e6dfe76af29313a5fb0fb3312

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1fcac03339019371b8d493dfe3be026a1820596c47da8d1951ed1ee63a7015f9
MD5 fe186eb5e9bc73cea5534ec5bedda477
BLAKE2b-256 a14a100135bd7834e099d202cc4cc72741f769ac1a9e72ab3262e2bd94432852

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d9a63a083e3390026b0257a04ce3936f59b586eb0a5658ab7df315a7fcc5c25
MD5 ce9e3b1cf119188e69dc5fd26558ca45
BLAKE2b-256 aaa9b51d76afff8d6379133512222fd89f1548330e349128947050d5865d5af0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 43f75ba8c580c59357e56ea12ab9ca02d2917bc73480dec4dc3f02f9ef4b5032
MD5 0daa3c69774debaabf79581f021dc295
BLAKE2b-256 f21f3bd973032efa4025974592c350eda7ba7098ed1b3e64374a972ca190556e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f01c7ad87488505946571def7a8769f7b8cd6c4093dc3aa7df770712841643d7
MD5 04a30d4de92cc42ccd9947dbdfbbb695
BLAKE2b-256 36e83d8d15f1ffeb890cf65f8512008d5f4ba0f22de33338369f4fcd5316be9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f11371c7ad76e6b67f449c8fd8515601e42c05f6e21bae7c11e2f4fab8297ef
MD5 86b5ae06bfadb518a8c56544f6b654f6
BLAKE2b-256 c8f2ae2e69a09dfa54dc7727ef6962f7dd91cef7a0540ce074f6fac35630a5d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1eaa316547f17c57ee3020f2e6e82fc7792f26cdfb1de3145424e74a61b7f719
MD5 a4b9e2e0d9b33b0be04256478b806a83
BLAKE2b-256 c1d6f4aa895070c9238589651c67822429187c72968c71603810b578864969c1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 dd2d00fd44888186555a52beac003503d58f068973f8cf71bcf9f8ba613d6522
MD5 54deb8b27ad47f6fc60ed1d3eaf4d635
BLAKE2b-256 6af4214027a06d16b967a4ff3f01452c6883a93a0af89c2eb3dc58dd92c887d2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ee4ef3d6a5c3c11775b846ee4cb6e1a442cec698908ae739d9f076d97b711a59
MD5 42275c627bafad9c4925820b273772cf
BLAKE2b-256 2394fce5f3f78bd854b800317d04205edb13361f4b290eeedfb271c42af90a88

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 36298e24603ac7446efb0394097e96748573af3678399e226764b5d12f4005c0
MD5 76218bb9b423997f8a26e76985db120b
BLAKE2b-256 ce6ba489d106f2c9a439e50c46469425384eb74196e6f54de04567825f7b9fc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 992912bc548335c339c71569613b588a2eda90c50c3b789b1a8cf0bc623fdef7
MD5 b453d13a8f7898297bb6a2545f868f26
BLAKE2b-256 7be6f19d0bc3b8821180782e618882a3c923eaccedf956e7e6815f984d12172c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5aa29b813e80f1e476dd7ff146a2aafc7d4910bbbd832457378008a2d47a7d9
MD5 fa7ddefe5f2f1eeb3521ceb08c8a1792
BLAKE2b-256 90cf81ebff7dfe2c1a5e1cad6a269162d87af280b3b06079a738801495795133

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 386e5a4205fc166f0318173a829ae7f14908ab99487659613f8d0eac6f3c0a2f
MD5 915e98adb0933df1bd53ae0ba044ae4c
BLAKE2b-256 3270c2866c0557fab2c0cacaeb61302acde9cbf54feb8e06967a4861463e59bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5839918fef36590297378beb78cbd2def89180a0074c6835266e12854f66a7f4
MD5 e8c4e7f0435aaca1c7c9ac044e68875d
BLAKE2b-256 9f03f0a0cdd95c182c107e605b76662294a1fd756b41bc1b760d126755e11bf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 87c8b046ac8c44eff9f0c744dc9a84f6640c738217e19133467ca8913529c5fe
MD5 2c8d63bb7a90365df9e65fb9977694d9
BLAKE2b-256 42b745bf98a76704895afd9e49e2d049063c88582c98220dd7e8c44be5aa3b35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f92c487bfdcfb961e6d95b74d515c5a39fa880ad44875303aa16ee8af2b2ec4
MD5 c79f0c8f932097ac83d8a0af820c1e81
BLAKE2b-256 c4ab1da89e1e3e077ac21b3443da02c3719315c625ba69bd864e72aded065fe6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31d81bc8d4ce8e805dec86a46f1e21eb5334a952fe1c2523c1c5ad5c95731dce
MD5 1b4d7dc9d3c3d8f37d028b548f3f9897
BLAKE2b-256 840545959562d237762839dc97a87a6a3303127983ba482b8ea3b1b24b365254

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 51b3c5ba29c37c63bb0eb3956dc93317178fd00f417b214867445ef6d2969086
MD5 2244646b1db48d88407ca56eae1ce327
BLAKE2b-256 271098d81c56ffb6ff3de326204d837cfd9a5ece6358ef0cdd1cd7eb6353a7c1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8a1ce97181d75f0e7ffdb20e94f849d868e589e18e0d9985d0e0a33c279391c2
MD5 aad083bcfc59d121c734971db70c57f3
BLAKE2b-256 bb1b625c026997b58dd24139e438e60da8deb9c51bdcf195a056101ea93ce497

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 443b098655c3b8a90cbf54751ace0bd67c9dff3b2980759e289990cf2d22160a
MD5 8a718bbe12949fc630a26d9c6508db96
BLAKE2b-256 bef24787946938379319ff3fc2e9f60d75de210eb5bad65064bc0fd100ed1d10

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 86f3bb389fc41a3ad6100aa85b5219f91bbc1e265c4bca1e21283997bde55754
MD5 07acb0fd3d1dd6695ad3fcd1e4b51f96
BLAKE2b-256 6d72175bd4ed202f09e51d79e320c3ca66de45426fb929abb4c85a3691378c5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4e4ba95dc13614c91fec42747ab4121fe91ff65e016790bfd9669e7062f7f9c
MD5 858a2c1c68cdcc14974497312ec4c20d
BLAKE2b-256 d6bb5e4700de98f27dc3c1d93894bebe1ec5db97cd5eba9730a9074fea213ebf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da2fcaa2fe766101c3f7f850b0088babb74b19da991a2efe07e2a7d88ce10994
MD5 5995a9d1b1018bb3548606e6719be59b
BLAKE2b-256 43c36c7b3fecbc7e975dcb17cf7a36047f3749f05102d415866f777c37cbd226

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b36ac5910bd610f90ef28df5c9c479064d918ee2f9ebb90e74b03bdbdac2ad0
MD5 2d3b7ca1bd9214b76a1db1e841ed3a64
BLAKE2b-256 3958139a898f9aab60e8b0f636a6375a97b948d5ee053f79b6995ea5f9172872

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1084fd4fc833235addcddd6911b0163a81c0e667595a3461ebad1d6115d30610
MD5 76bbf26fb2654815d7d2adba30c958da
BLAKE2b-256 f61946e0cc76d7a0d5da5dca8096b908729485a0075564c6fc2a15713686b62f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 bd01a36e33d2170029664e8fad40314bf844049708c9411f6a9af75d718ad388
MD5 375bd76892cef530153618b5964bc462
BLAKE2b-256 51a9b85f893647eeedb73c6c76f0b15b6c93c080c567b0cbb0aa02938864e0ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5549412247b29aa0c24819b261f7476ee2b222fa4bc820547542207abcef2de9
MD5 ec5c9e28bddf082d54bed26430b7ac39
BLAKE2b-256 3b2039be6a53eee5fb52261f344453a1ff2a7ba75b99366efd3728bc19e863cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbfeb0b07dfbbb612eff53c2b7e5b809745cfb4615e1759038b2359bc74bf285
MD5 bfff4cfa2940e682304e6dfad9425023
BLAKE2b-256 3d10a479ee6bc23cfca0769b8dfdb0dca87db8f21b0f01b6b776f249dc41b76e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a1d2788f739e4a714c3a60f57d5f0c500b2bf2f40ef5bd59a047e77a7136be6d
MD5 0271252df85c9242441ad5c8c907b050
BLAKE2b-256 823d79a90366938bacb45c7895d74aacba201ce3f84ce5ee26b2ea04c9a90560

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5a632bc2b14750e0bb543788e24fd9a8548ef98549aac5b88d27438cc9e65b55
MD5 b11700847f2295364dee2b9c6fac3ec7
BLAKE2b-256 822efbd400d713d7d9f9596c1d01314d0f08bb39573f31adc1fd794aae04a8e9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 41132ee56df1097eb5eac17940cbcb0d212d66542a923d48a24be21c487fd243
MD5 7e1e734f49da0dc705d16e16aca2b3a1
BLAKE2b-256 74f329330300fc7293e19a7451b74043f040d7c284aac04040272acf04b748c6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 31154b35f7ea832254de01b50a071c9c5a463853220e3de4b4f35c48c7eed811
MD5 40d5405e4fcb3b49a7c07b9c2d359cc4
BLAKE2b-256 a89ec3aabbef1315a611053b5ded2659ea2a02d35b44c22031ff08c53992ca2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 192de0f76bd49cada6464846c400ebcca56159f142f6a1634deb30ebb625ce09
MD5 d28ef15cef221cf11881e7abdbcaa175
BLAKE2b-256 0ebc689381a881637f17c18ec87269a38c8d0fa50f0e77145da2db07c5e8a6ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 377c44b71fedde9ae2a3701ed39c2b29cdc53f913d3e44caf078d9fe32b26aac
MD5 8bd76188f2bd4bd67ea7dbdedf65d11b
BLAKE2b-256 4605fcc6f4546419ddf5f61992ff5d03e909a9ed51e317cadea2bf544e6fd2d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35f64fa3e01e829841293f3ce86b8eb42412b76b4fe9e09dc14a7920b2dbc8e0
MD5 edc167b9067015a91c766a184545d05f
BLAKE2b-256 39370815eeb558e6f5f4d4db133748ea958604631c86bda215d16f451c998774

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b8ca2b79a1fa712bff849c1e398dcb1bdfd4345ae2801f1d24831e46836089b
MD5 03604aeba6256fb4333a17290fb402f6
BLAKE2b-256 75af1e6267b7862488d844ca012a6aa25335ec2a9f8fb3190fc5582ee8ed8443

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3e2ebddb814ede25c801dee37c804a0b348049116abb0757f1b636577e4e8f8c
MD5 027be481e3f14ebcfec348cc4c907a1c
BLAKE2b-256 84e08cbf26c88c239c92ac0fbf4a9d3ad80b1df672e14797278f1f3573216bca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e76dfcaf6c59eb9b151e21ae76bc61127ad1ca9b63c77245df8e3ebb3d0e19b
MD5 07d796bc6544e07100133c70d3e0a2b1
BLAKE2b-256 a5a7ae743cb80dc2631c2584aa58d251faff60df875e96e11d9396a0ed949e47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 751fd56bbed23674b75dc8f6904b705ba54ba763f1278d5b9ec69bd40cbe9279
MD5 692abc6e5d08eec1c20f410d0f931ff3
BLAKE2b-256 298dacd35b3efc12a532d60ca33d3870daf465a01b4f968429621b80eb130e4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9988df667071a442f407459e3e3f38a2fd328c535273ab02353bcd673010b6b8
MD5 0a956dec65b9ba7faf6ef22de31c039d
BLAKE2b-256 10284700090662966356af18a04e0c22c5a6eb24e2d9ca1c11793517d9496fd7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e6e39c806785d89ea3302a94598725adfefa1ddeb4a7407753b887590eaa881c
MD5 2ad417671fb78b474e7f59653c620cef
BLAKE2b-256 2fc2a43ec6d47611770292b6bc79a90c9a61e54698176fdef81504331ffadd7e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 880a28d1ad2eacee3397e6e5c4aedea7f587801b15305ee065c1efb2d455ba82
MD5 6f29ad62d70e35f1b97e69589da3c328
BLAKE2b-256 db4179990a35d24fe3aef23382cff9e4bf7f3eea903cd4001cc30a1be880ebda

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 25f7969e43fea7b05e7f31262f8fc8bf53a254785e5b5358047b5b57ca266e80
MD5 e26ea9f6d197a0d01140defeeda740dc
BLAKE2b-256 910824c094b7466e0048939ad50ae1ded2dbbd0d78108e60080438f72714249a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 491e87cc8fc2309eb44779418e959df730658f646b3082b79b68a75e7cf0e23c
MD5 ade29ba945b48f3a02189d6ccc0f7465
BLAKE2b-256 d3e5ce5239e9cd53eb23efb9842a267ffe47962ba7d89f249b27c6d456b09333

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 54373ee3a4f4e81a0d91fdd8494befd9ef5c57155f48c945b4fb5a16a96313bd
MD5 9cd196e8f26d3a63efdf8fcabcb251f4
BLAKE2b-256 cfb826768a36bfbdeb49cb062f5e4111df3c56544113e55bdef33b372a729224

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28304b2d6df1cafcf95e66618fe5ce18a9dd6339c1bfb605dce27e5eac12c95b
MD5 b01d7080e7a8078de96d39f162462e58
BLAKE2b-256 f7dd71caf98d761777cf8aee11c4088721809a59bf99c37870bea269c743331c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 565f99061fda223f7683b3278dc6aa3bf14a0d0dc0f6ca467b0f3e5866b5bc17
MD5 d3fac7bbc1e758d46532c696e64f8ac8
BLAKE2b-256 105561bf0896d335ea89bb4ad69cd3124782a272b8d5a0c800f0d47bf50593bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3292eef0f821894f7c2580cd369e5acdc5a7faccb88e69892a0e46e7f490c5bd
MD5 5f528ea7a5d61fe3ee78c89d49bfd3c2
BLAKE2b-256 1627c8ae02081f3da5132b99b4c839324cd3fea741fc737cf26d9baeb73e92f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 226a042122f75730ddb908c25047bb945a2a8447fe863adaaafd268c76543866
MD5 6822be7c7230c6b0bd12162a72e96353
BLAKE2b-256 c823ea86697c8e6d72b69492c04c7dbf5c09763e387b5265eac56bb3744620f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09def31ee132a1bc26d329e458b25c698602038dd7e1af929eff541a963d5bac
MD5 619b636c10ec1c0ed2e1bb7bec087932
BLAKE2b-256 586176656b5b9248565aac73507fe6b6c26af843b6674a5997de66b90969ae79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d3c8af4b78a01bccc4b078da4b1803f2b79ce5fc27d0bcc62bc89a9e80822ef0
MD5 8c454df79be1527db692360f356e9501
BLAKE2b-256 5274d2046a040f1b80675c9b2fc3aa59d87c21348377ea31e3891a71a85b5133

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9434b6f82099cd056b302b12c749865983f9e2c62ea45e9677fa5978870891b4
MD5 5399f0744a7665f712615b5f8296e5f8
BLAKE2b-256 31cae5922136da7e4235b7bb59ebc4d9f4b741d2f924c4c8a19cb0b86b9a176c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fecf6479d773bf05611a6508452633777f099cef664dda0cfd82d93ef25b0c17
MD5 d475d15fc731b6d9d932eac73b60d675
BLAKE2b-256 0d62ea61ce14c22d714c246e0cebb1a746643c79ea25bb8c2c0834601317c335

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 38a4ddba1e07660ad523840cf6d109ea98fc8baf508afeda7d955837b76918a1
MD5 0f7fdc968cdb8c091de0760270becc5d
BLAKE2b-256 d5bd6e3483d3330b4db19382526c042a52c18e29f35f30d498740dd2e8196fa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db6da70953ff4b80fb6d65f7378f39084ec0d384a75f096ea42f4dbb2e7365b4
MD5 b9aa8b42474aa6717dae32a185459f42
BLAKE2b-256 de8a443ca7e890a57f0f43eb165c24a7a83b1b6f67cafbbf352f4f835b4d9f52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e758a9398cf42834d69c5499f2a429192d6937add323f67068a114a3f076c868
MD5 c1bd34209bdca13a153934d9989fdc0f
BLAKE2b-256 7a9a4c46cc7cf150483c020b31fbf24d43d9cfa4cc6e349fc2b8a0c00c71106b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85ada40f7906e1e745a254140771685acb2414c7b50ef56f6eb6bc8bc9e7cb32
MD5 cb3d9d743b1c2cb3c78391669d2cce26
BLAKE2b-256 13d4b5ccb6ecfd5aca4ccefdaf3c484740a9734e657fb649b83f4eb48e160d52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f6685df0f6bfe64dae082ff1ff35c7bb5271cef638e32b67b0d43e70caedff4
MD5 5d52ede497564de170f02eb54afe9e21
BLAKE2b-256 140798e7a2d6c0bda897cc95999ad64be3c00d231b284a1b1684825d80d78482

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 64b8f28b5bef6363359c070840cbe6e408976076e28c98b79aa87c16aa927a67
MD5 693fe8993586bd7b53a8b8e050e9cd1d
BLAKE2b-256 187445749c3a459254cad491df662da51947865ded12861bcffc8ad6fd33abf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8749598f289815005b1b1475ae40c4edb93ed17f62ea166a73d935a594718849
MD5 ca70197277f4f30b4ab53115f5c6b7c4
BLAKE2b-256 9dde8b0458bd8ca9bf82d4751bc3d3d52f586c781620c3f7f24c7d2f13468271

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6282aa2a207646ed59a7687bc918b2acc40e5abe9d57f19ba5a115b19169d1b3
MD5 0b27014584192cf99fe64795c078c5e8
BLAKE2b-256 dd446c439e09fe2b9a93a94a5631fedcd86ae17fde5b9c24850b9883034625e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aba42b245f47b5a56b0d8a1f08d8537a9eb9eda839e370cca302a082b0765bf9
MD5 655376cbb6ea11affff003c15ccece01
BLAKE2b-256 15ae06dd4fd4cb691239aabbc5cf439afe41b349f9e05eac4412f84927fc00a0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 800ae832b47cef0bbcda2a180290cc242b6d9853d31a5b8d2ae365039997bac5
MD5 edcaf5fa232289836ffffef8eb304e77
BLAKE2b-256 f377858cddace95ac5b21d5dee647294aae793181d8448cc561d236320e73cc6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 57f8ea16df9e53649c85f06b5186f4d2df0bd4c965e3752e4b3cb72249417db5
MD5 89bc3b7a234fcd2a5340ae49765b8b39
BLAKE2b-256 81a529c8cf48c7d435cfed4083b1f17ee622070a1009a1c245eaab82fd7bb011

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fa2ebd4f2bc77fdd236dca7442f323cb22448e2bf8f4e9c8c7afb568b059ea84
MD5 f7cf5a9ab847337ee0261e4ccc37177c
BLAKE2b-256 1c6372657021747715c5b5ab17e6c22590e8dd43aad734686f191973648b70a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c04c340f37aa24b99c5cd05797ec34beec6b2d710ef3cef94ef52eaebcc7d9eb
MD5 3e5843a7b07916d59171a71fa657999e
BLAKE2b-256 cc25c5b67a1d6df5b2a1388562364aa04964e8b0c21b6e1741da79fa5c95de17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f24a3871a248f7f61ab9bb23d69faf80077a32f4c8475668611b4277deffe63f
MD5 b856b4f29bae00533ef988496eef5508
BLAKE2b-256 72a5c565d1686d6d3faf702a71f2e6c91edee8b6545c6bc04715987edfec226c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90c0c401283ea3a68ed31b7adcfaefdf2507b6ec72c7a279dd9208e4c5a44826
MD5 35ba05d03e7f30ffbaf14796b4090e0a
BLAKE2b-256 1709af1ef601b6d5df9b79e01547d1915d8fa735429aea6c2f8e4a5c075504c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc7f80b9be0e687e3913156a45f819a7bd4236733b74091e4889fa355248ab85
MD5 fb9ad3c8d8e56c9ff43e38c5aab7debe
BLAKE2b-256 fba1d448d4193ad7c762cdd49d4ec1f368894a2a7a6669d3dbc2897addb90900

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0f8924c24677621b731ce0330a2759a6cb8174bbb1a1c52907844042eff2dc10
MD5 f9124206c8a26c5730a0b89cb6d76c06
BLAKE2b-256 042b06e45d86c5992721a599dba1c171b0bf12bc0b62bb7faee6bcbd478e7036

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f32baa4bcefdf26fe302ac078c404f95fccff372063ba77b197f6d63673b7f90
MD5 d2417f4081a64963a9e11c78731523d7
BLAKE2b-256 145aa431414e92012333082c7ed40c65df63f19e412d044ec4ed821188f7d45c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 603a481f65c9c86bdd2ce9bb27e9586f073f3eff1f4b463daaf429f5c498adb8
MD5 84037a5aa25334e4e9879882a8338feb
BLAKE2b-256 011a1f75d7440b3b791895504ec2c7d99d9e8c2f4bcc245149e30da4c6981c48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 21da7e1cc3f7e12b44253d29c4b8d86c37328a692ab46e6c5b1a76c176ec534c
MD5 d1d7627803490cb6e768e0dfa9572fd1
BLAKE2b-256 445f2bb7b62f73cca820c1eeefd58964661b83b23df0f1a9b2fef4086f46a04a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 6564f450f624d671517629f3b2120578125a07cd194441a51d8bff0e94800a19
MD5 7be3522430a1c9c9cbb589aa3927060e
BLAKE2b-256 9b9e26f088cdef1f34c71c1c2d865a6ba0e534b8a8c238a0accdf6597b33f2d1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 067a8b463be556e03eee55e20d693b2a8f0bc7e8659cba8154c0269ea10f21e4
MD5 35e7e6335a7fac6e708d303681a00e5a
BLAKE2b-256 b2fabc6794b102b0dcf7fcd8212623b6325f18ff09979cfefdd4825474b6f231

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d4d95aa88e090902e99190cb14766c34d646ce9fe936aa65b0cfa19502df92da
MD5 7fdabb81215bbe0d640b4895d024b781
BLAKE2b-256 d8ace60cea34be7d6513777cfb8238d93a05f63b9ccf18fc8bc5c3fe253e5267

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd080dd464249ff32e7c97e9ffb9fff7608fe6075aefd8676e4f3929abc56d1a
MD5 b640de881759aac91681c9e902ad6a0c
BLAKE2b-256 d50421e0f22c057955b50bd7cfb9520bcc0e4fcfb2ec12f7fe3759392debe125

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89ad364cd912a9ef398ad6ba0934218f64f39f4460ce4e6f36ad62127b6e07a4
MD5 bbf8eb3e5c97ce4f91034d07fd0fcdcf
BLAKE2b-256 189320c67776ac411253b35ef451116011d8e5adbf83f56987488e80c4873ab2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a2de18568e5706496cc37b2971f63880f47f68f56f268bfb531267c690a2749
MD5 db2f99dd6d97121a9fef62f65e37244a
BLAKE2b-256 fe23524e64a156f2c8fe51f51c5f8eaaecd3049af41f2c882f70afba1c1a7a13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40d1828c1a3d2637925ebffb36611aa898a40a5e74ab55017b232b40a2cd899f
MD5 1036c29621dbad4bf541d6e3d9905f58
BLAKE2b-256 fe572ae3c2baed52dabb12a681f38a5200ab698652a9c2d1b5234500e6f64522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 449e5e642e8dbb97763c3d7f5a2ade3e7c95794ec128bd72bf40a61de5edf3f0
MD5 a22f7d1793fbf70531a35f8214d13cbd
BLAKE2b-256 0f42d9bf96eeeb9b57bff4f21a18d5cbb732492ad533e157d3c91c6ce532000a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a99c9bab8a6f0d89d76a09cd237957c1a5bacfca81ae80b0fe75e8bf590b8212
MD5 4a67f784064ed2c6ae76e769fd2f70ce
BLAKE2b-256 eb0155d6af7ef7322a3f0c613f50044f14a256efd48f20fa73a39f4a9067a749

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b611817f836ae30dea47180189c0b12613721470e95277398a221c40633a1703
MD5 676dfda605fd60933d72f00af516ebeb
BLAKE2b-256 5726960efe057617427f9ffc58e4ba650e11e80f0a81f59bb7c9c14f831f27b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 720f6e8078a32bc2f969583a64f6ee631d1c33791f9a2e85466c5e2d5dc0825a
MD5 fe0dc3c378365bc13edd83255ac6a22f
BLAKE2b-256 b5559d372618972018af5aeb4667d91ea2f8256e9269022e30d4dfa5357ea64c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d604310732c99a959ae68c7702d78641b14db27aec04c2794f1fbb9401001728
MD5 aee10042ffdf57ab43f9b0fc320dabcf
BLAKE2b-256 130e0a69518456897e89539c7f47a8be96cd1e0833e7fee5c849e2f2c5ad8e8c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fastpysgi-0.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4971780e2879b608a4463fe2564b3a87fabc8ddd8fb003d7a0b7cc2713d369bf
MD5 db3bdea4d181b3e43b7e57a202a06ec0
BLAKE2b-256 2242f9f99654549b11ca252b26ec5068934444684508258dfd4b9717540a81f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d20859071bd03953cd15f9e9c1654b23f97f66f13e2147211865fbb84cd9016c
MD5 d1e0482e2cac2e7afa80d1b19af31b50
BLAKE2b-256 6593a6d97b007ca17807add66220ad19fcc73d148851f261162eba9819743934

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7379fe81823c22f81b3940b5ca8fdea7d4cb8fa37701824939463b1ace0b8fca
MD5 aba0b0a619e6d4d38404b38cacf09b81
BLAKE2b-256 3b266afb19cc00e84e0e2c22b78c8a9b5c9b02ee8000419c9f4005989cfb623a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 812a454f95bdeeba259afad1a57cf4a907270a392ff0da186f929c6cb5270ba1
MD5 a985ad2df709bb86e00623cce37e2749
BLAKE2b-256 f2213d9bdafc93498b47ee39c355b665eff59da28b7bf5443790869e5a48b897

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b15c69f1deb8276f89eb31ef4616b2b38fe96dba2fa38695093348f4cb8d4ca4
MD5 c279388471580e71e742b18050231dbe
BLAKE2b-256 440d9a422faea63a38c6b9b962f583e2ff48301c956bf278f1bae779fe99676b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp38-cp38-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 209b63b0e989512301ae90cb97fce0f6c3159ed33f2484ed9678661fafcdccc1
MD5 71002b0095ecb465ddaa775cbb09bd2a
BLAKE2b-256 59fb911e55947d266bcc0083ca80e7f57fb059a907d0bd4004a371267f736072

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9fb094e6f0e90347c87eaf98dfa2a9390af0fd0942b02ff393eb96c20482739
MD5 5d5a66605724c11ba29237a7aeeacaa4
BLAKE2b-256 2e7553c65fd76a195c120a90159cc3da1048ecb890634738ebd8c5e43c9ed475

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d5d584ac8a474b1e15ecbd271272acd2cf63dbee0b3a2d705d6d6e83b9ab1f2
MD5 6924bcf5d2dc020ab727ebf15325d53c
BLAKE2b-256 684b541b1c55c09eb67e75e99e64c0120048e047e3477362e2c60978a64a3ab2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fastpysgi-0.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09c9ae7a51a79815648049e05b20d5d590f484d543035118166f312c8e7fa90c
MD5 ad6a87a700971af563ce62217d0a8f16
BLAKE2b-256 18d448a23b91d815a9165accdcbb816036cf9fdb0d8c98c3aab2d80ed587ea78

See more details on using hashes here.

Provenance

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