Skip to main content

PID

Project description

openPID

PID controller with a fast backend. Built for simulation and process-control style loops where you pass an explicit dt.

install

pip install openpid

quick start

from openpid import PID, PIDConfig

pid = PID(PIDConfig(
    kp=2.0, ki=0.5, kd=0.1,
    output_min=0.0, output_max=100.0,
))

dt = 0.02
setpoint = 10.0
measurement = 0.0

u = pid.update(setpoint, measurement, dt)  # fast path (no telemetry object)
print(u)

some telemetry

u, t = pid.update(setpoint, measurement, dt, return_telemetry=True)
print(t.p, t.i, t.d, t.u, t.saturated)

features

  • Explicit dt
  • Output limits
  • Anti-windup modes (none / clamp / conditional integration / back-calculation)
  • Derivative on exact measurement
  • OPTIONAL derivative low-pass filter (derivative_tau)
  • OPTIONAL output rate limiting (rate_limit)

dev

pip install -e .
python -m pytest -q

License

MIT

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

openpid-0.1.0.tar.gz (10.0 kB view details)

Uploaded Source

Built Distributions

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

openpid-0.1.0-cp312-cp312-win_amd64.whl (97.6 kB view details)

Uploaded CPython 3.12Windows x86-64

openpid-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

openpid-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

openpid-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (112.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

openpid-0.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (99.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

openpid-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (87.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openpid-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (93.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

openpid-0.1.0-cp311-cp311-win_amd64.whl (96.4 kB view details)

Uploaded CPython 3.11Windows x86-64

openpid-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

openpid-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

openpid-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (110.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

openpid-0.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (98.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

openpid-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (86.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openpid-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (93.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

openpid-0.1.0-cp310-cp310-win_amd64.whl (95.8 kB view details)

Uploaded CPython 3.10Windows x86-64

openpid-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

openpid-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

openpid-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (109.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

openpid-0.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (97.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

openpid-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (85.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

openpid-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (91.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

openpid-0.1.0-cp39-cp39-win_amd64.whl (99.3 kB view details)

Uploaded CPython 3.9Windows x86-64

openpid-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

openpid-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

openpid-0.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (109.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

openpid-0.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (97.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

openpid-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (85.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

openpid-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl (91.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file openpid-0.1.0.tar.gz.

File metadata

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

File hashes

Hashes for openpid-0.1.0.tar.gz
Algorithm Hash digest
SHA256 00805d1432ad2e50d39d94daaa68cb4ef79aa6b3e98fb49793229dd4382eaf74
MD5 212fd20d2d1ce7a5dcf07fb2d53cb3cb
BLAKE2b-256 c567442b9901003d4da78791e57aee9084fd3eb3c5c0943624d9ea6e7715aba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0.tar.gz:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: openpid-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 97.6 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 openpid-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cdf33ff9f08030115aa0be17dc09066cf55626080631693dfb4aa5b68850bd1b
MD5 19addc19474343436ab64e4270fda2f4
BLAKE2b-256 12199b77c0334b4b02aa3a6c6db5ddb4f6de90bddac1da574746ee13e961bdcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 417c5d96ded2638b5bc2e2144ac409e02be01eb0f6c7cb3f9233eeb0055a090c
MD5 f8924d923175ac3ee730b40b83ec8662
BLAKE2b-256 e51c6d01cdb5ff308ac4a5b26faf48e125db63098cdcfc474e7885318cac63db

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8b63b65db0161bad81b5c5d9bfe068e83fc849c8e163793211e25f92b885ef4
MD5 71c5312b44bf4650012832d4dc415157
BLAKE2b-256 02abc1456a8040031e50e453045be7b77f36f627b84f71809cd0ea34901bb4d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4a88eea9c73a7e6503d986cb741917c4c11993af99472893b12dc91d7d803cb
MD5 ba20e782f1a22aeb5c2a3d711bb38105
BLAKE2b-256 1123317f6c355e0fda4bf39d0f6140fd348180d2e97996c4edce8b2a3602fdfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8e7e7479a8ad9faa70319ae33c7a02fee98f02f0e11f8971b3ab5cb32fb4ec9
MD5 2e969469841d3d78763643cb19fd8623
BLAKE2b-256 3b4560bc8d79b6d55228b201bdb00e62ac379d4d68b5df9e1fdfedf146118043

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bd929754f93ba224713d25134f871cbe0565bd3cff0aa584b8fff922c22fb34
MD5 4a596dc54de246b1fbcf6b0ce8682b0f
BLAKE2b-256 9c2d96b56b7cb45ec48fac0e21391e5ed8ec34a11c349394239c7643ebb7a1c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1ffc85ae810b8c0f35af66c32a07511514004a769f10db0a1aabf711e827b56c
MD5 a05a431f2cd471f9cdcb827c185eb96d
BLAKE2b-256 9be4dd5fbeea928c9ae7943a494252752edf41dbb70dedf6673c92ac7b818994

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: openpid-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 96.4 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 openpid-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0f35e425acebc29ddec0c991e1c7449d0e3679a267b32f9f439211ae433c0892
MD5 5f56e5f0f3534e2bf889c112f93ebcbe
BLAKE2b-256 7d80c0d28056b3e60707145a72482dc7900a05103443fa09afeaa40a706c9e92

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 123cc89e1d412f26e387e855c23b19895b75960556739d1831b8cc3b3aa1150f
MD5 4ee831300db30d4aa6b850ef26f6588a
BLAKE2b-256 afab28df4378ad0c9b80e014429638f83cb5888b7ed58ed75c949f1882ebcea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e081d6649dfbcdff9ec039c40fae97b62c160075cc9ee2525d90acfd82617fee
MD5 ded934068943815c48a286a3819013f9
BLAKE2b-256 3498c670b0b8d0271f250c1cb8b1e977227edde2188d992ae241372f269abe22

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 131f779b4aaa3f2580405d7d2e1e7a7d0f7ea559059e02c8e582232360d60c91
MD5 3c2f6730f7c8c8c7da6a997694b3bf7d
BLAKE2b-256 7a9596717a8bbc6764a7e0444a25ad1cd42d09a1ee2d96623547afcf82f1843b

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ff84e305aec8cdf46fe3d8ecc7910ddcb04fb98b883b9dea4f4ba25be090fb3
MD5 f16cb151cd0bcbeb5f53003767a222ac
BLAKE2b-256 1975db8604d6ef58c52ce7b1a518a2af1c36ebd6d38a2b9257e4b196e07fbccd

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 241ce4543f1a26e37f8cbe019ee6ce1cc308371d96694ffcfbdbd08167ae8bbe
MD5 764cc9b4798fbf06a5f552a31630adae
BLAKE2b-256 6336794d679ff8077dfa97ca073c815d3913561beb6011adedea624a2253276d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8d6df8e862d539c4674c82f309505a86c9361c2f043867f77b50003790d934a9
MD5 91803fb67a7cb0c5c96173dc530520d7
BLAKE2b-256 9fcd9564c9bd49473ffed81b9eb0c24d73d18ef31cde1f577bc63cc2565af959

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: openpid-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 95.8 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 openpid-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 432cb9ddedd12b93c0254bcac4589436757e73723f4bb0dbf7b4cbece42b52f4
MD5 70db14e1641bdd8d5ab9d50bfda82ab4
BLAKE2b-256 fe8a07bf35e1ea827b3150f3e702483590c64f4d8d51d2091ca2c3e8c2e8326a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50d678bffe21ed704bc6485ef335bf6a917b2ab20d0e26cd36baabc6cf27b2ae
MD5 12a4b3ed7691143274563a5b5ba40a9f
BLAKE2b-256 a5cfd007ae9468dd6fcae6533cb00ab969451592bad5db972f6f6371e3ff0675

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b86ff30488d5520c303a3861e7cacee46248a2f2556c2381a7ebe506158644e6
MD5 309e46ee2a563f759e04a85ca70386bb
BLAKE2b-256 1ddcfb175cd99af764c5a00018e10908d3846345264477944c63a4cff15e49fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a417bbd9e0178e684eff993e4f602d9ee41f53df33a0ddb22ec338b8c59c26b
MD5 42d4b4c128684ba4571b8d76c8c31de2
BLAKE2b-256 4f6093f779e62e47c2889c7669c30d10d6b1febf7363a35c9e1deaf6453b615d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f24730e5b00f54ad6e34b0b9bf9c1c8c4e059f4b48a81bfc32212771e994eb67
MD5 910f37cc8ca42a2ba2e9e6a24aa3a91e
BLAKE2b-256 fcb7c784584cd2d9ad0096e1684824b9d888d52950fc9fc7f73da27535c793b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cecaccc18ecf0e58f70767af7b028c9ee1dbea4a650acc84311b1cd728cb300
MD5 a04352c0c351876a78b57e1358595c89
BLAKE2b-256 f53f218ec56431ce670415e80ca180e926c93f0887b6c59bafff9995cd87e19a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d2975e1e21c6a5707740017479ce436982ca472c1ec5fd56c106606b865b0ff
MD5 99fbb574a6ca372ee8c7684d99c61fb8
BLAKE2b-256 76edfce638d6bb5538e0013baa6f37f0160c1c9f53a2d3ff0e9752633482d0e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: openpid-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 99.3 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 openpid-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4fb89b62b12e416d187e2ef761102ed59976f88ef3912f290047bd26d0a1f282
MD5 b70c27b3f8e814a0c343a7911c924097
BLAKE2b-256 58484269bf3349121cebb0b28cb9e37870da4dee4cfe723ace41859341d97e3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 debb492db27863069eef272c1e28dfb2788ddbddee87cc3133c0408f182c107e
MD5 0d8b9d7e9b305e4bf069f70b0c54ef47
BLAKE2b-256 961b2f082bfabb0fb692024d603dc3059a42d26ad10d1e213ec384b30f7c2457

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48f07c03012e4e57da00233062cadc295ff612bc025116a6bfef5e4fc09c41b7
MD5 9eea39080ce2d8f7be6ee2003ade8cef
BLAKE2b-256 de39c5758a7c4064a3baa1c695e518bdf95defeafa7d087ea52e60ac9b907dc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecbebb1e91f3c4a136abc69133cef7354571b218dcecf84fbd4fc861f805deb6
MD5 178f8ee904d1f683a65cccd001e57034
BLAKE2b-256 834d3335866aa131deb10836d081f3653e2d00acd430fa4d4de77f87f7e44063

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3762be865e0e89717511c9d3b98f7df6d108c26f171f5b98a785495e1310ca2c
MD5 1cde26e8ad7897f9d13abefde91e0641
BLAKE2b-256 f0a8da512f3d363206986c48fe2c5d0c1729a9dc0115f8f36cac7431f080a27a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41c3345f519c5ef695ca8ed3d7a929d3405ef3b05e0a4fc2550d1ff03ed216eb
MD5 3ab002c7b3d4379d192f4ef24e92bfc1
BLAKE2b-256 b1e53995432302abc812dc39cc1db6df85ab6786fffdaeaa627766e89b62b0d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on 010Mak/openPID

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

File details

Details for the file openpid-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for openpid-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 88505645b2552ef0427c0dc199fd1bb8d91344920868b09401e4134e368c85d3
MD5 e822abeaaf34147005d260aa405b953d
BLAKE2b-256 c7573fe2808f80bec29ef6aafcedd4f469d3a223e7f4554de5ea4acab3e7de5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for openpid-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on 010Mak/openPID

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