Skip to main content

pyCHNOSZ

DOI

Author: Dr. Grayson Boyer, GEOPIG Lab, Arizona State University

CHNOSZ is a package written by Dr. Jeff Dick for performing thermodynamic calculations in aqueous geochemistry and biogeochemistry. pyCHNOSZ is a Python conversion of CHNOSZ that allows these calculations to be carried out in Python 3 Jupyter notebooks.

Features

The following CHNOSZ functions are supported in pyCHNOSZ:

  • info - Search for chemical species by name or formula and retrieve their thermodynamic parameters.
  • add_OBIGT - Add or overwrite species in the OBIGT thermodynamic database by supplying a comma separated value (csv) file with custom data.
  • mod_OBIGT - Modify species in the OBIGT thermodynamic database. Optionally, supply a Pandas dataframe containing custom data.
  • reset - reset data to default values.
  • subcrt - Calculate standard state partial molal thermodynamic properties of reactions at elevated temperatures and pressures.
  • basis - Define basis species of a chemical system.
  • species - Define the species of interest in a system.
  • equilibrate - Calculate equilibrium chemical activities of species from the affinities of formation of the species at unit activity.
  • affinity - Calculate the chemical affinities of formation reactions of species.
  • diagram - Plot equilibrium chemical activity (1-D speciation) or equal-activity (2-D predominance) diagrams as a function of chemical activities of basis species, temperature and/or pressure.
  • And more. See the documentation for pyCHNOSZ

Requirements

This package must be installed into an environment with an R installation. See these instructions for installing R with Anaconda. Additionally, the CHNOSZ package for R must be installed (see instructions below).

Installation

Installing pyCHNOSZ

Install pyCHNOSZ using pip:

$ pip install pychnosz

Usage

Import pyCHNOSZ in your python code with:

import pychnosz

In the following examples, pyCHNOSZ functions are imported with:

from pychnosz import info, add_OBIGT, mod_OBIGT, reset, subcrt

Search for chemical species

The info() function can be used to look up chemical species by name or formula. If names or formulas are provided, database index integers are returned. A list of integers will look up chemical species by index and return a table of thermodynamic properties. See the info() function's original documentation to learn more about what this function can do. A few examples are shown below.

Look up the database index value of Fe+2:

info("Fe+2")

Look up multiple chemical species:

info(["HCO3-", "CH4"])

Define chemical states:

info(["HCO3-", "CH4"], state=["aq", "gas"])

Search species by index values to look up their thermodynamic parameters.

info([13, 872])

Nest info functions to look up thermodynamic properties directly from names or formulas:

info(info("Fe+2"))

Add or replace thermodynamic data in the database

See the original R documentation for add_OBIGT() and reset() for basic useage. A few examples are given below.

Load the SUPCRT92 database.

a = add_OBIGT("SUPCRT92")

The variable a is assigned a list of integers corresponding to the indices of chemical species that are added or replaced in the OBIGT thermodynamic database used by pyCHNOSZ.

It is possible to add a custom table of thermodynamic parameters.

a = add_OBIGT("my_custom_entries.csv")
info(a) # confirm new entries have been added

The entries of my_custom_entries.csv would then be available for thermodynamic calculations with subcrt(), for example.

Reset thermodynamic database to its original configuration.

reset()

Modify values in the thermodynamic database with mod_OBIGT():

mod_OBIGT("HCO3-", G = -140283.7, Cp = -9)
info(info("HCO3-"))

Calculate thermodynamic properties of reactions

See the original documentation for subcrt(). Useage in pyCHNOSZ is the same, except python lists are used in place of R's vectors. The function produces a dictionary of results stored in pandas dataframes. An example is shown below for the reaction H2 (aq) + 0.5 O2 (gas) = H2O(liq) at 30 and 50 degrees C and 100 bars pressure:

subcrt(species=["H2", "O2", "H2O"], coeff=[-1.0, -0.5, 1.0],
       state=["aq", "gas", "liq"], T=[30, 50], P=100)

Output is a python dictionary of dataframes:

subcrt: 3 species at 2 values of T (ºC) and P (bar) (wet) [energy units: cal]

{'reaction':       coeff    name formula state  ispecies
 62     -1.0      H2      H2    aq      62.0
 2612   -0.5  oxygen      O2   gas    2612.0
 1       1.0   water     H2O   liq       1.0,
 'out':       T    P       rho       logK             G             H         S  \
 1  30.0  100  1.000017  43.855086 -60832.380282 -67420.887872 -21.89070   
 2  50.0  100  0.992305  40.834419 -60379.262657 -67882.530994 -23.36663   
 
           V         Cp  
 1 -7.494052 -24.126268  
 2 -8.259704 -20.941879  }

More examples:

For more examples, check out the pyCHNOSZ tutorial notebooks available from the WORM Library.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pychnosz-1.4.1.tar.gz (1.6 MB view details)

Uploaded Source

Built Distributions

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

pychnosz-1.4.1-cp314-cp314-win_amd64.whl (926.8 kB view details)

Uploaded CPython 3.14Windows x86-64

pychnosz-1.4.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

pychnosz-1.4.1-cp314-cp314-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

pychnosz-1.4.1-cp314-cp314-macosx_15_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

pychnosz-1.4.1-cp313-cp313-win_amd64.whl (918.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pychnosz-1.4.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

pychnosz-1.4.1-cp313-cp313-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

pychnosz-1.4.1-cp313-cp313-macosx_15_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

pychnosz-1.4.1-cp312-cp312-win_amd64.whl (918.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pychnosz-1.4.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

pychnosz-1.4.1-cp312-cp312-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

pychnosz-1.4.1-cp312-cp312-macosx_15_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

pychnosz-1.4.1-cp311-cp311-win_amd64.whl (918.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pychnosz-1.4.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

pychnosz-1.4.1-cp311-cp311-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

pychnosz-1.4.1-cp311-cp311-macosx_15_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

pychnosz-1.4.1-cp310-cp310-win_amd64.whl (918.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pychnosz-1.4.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

pychnosz-1.4.1-cp310-cp310-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

pychnosz-1.4.1-cp310-cp310-macosx_15_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

File details

Details for the file pychnosz-1.4.1.tar.gz.

File metadata

  • Download URL: pychnosz-1.4.1.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pychnosz-1.4.1.tar.gz
Algorithm Hash digest
SHA256 ee035058213c4220cdc91e3fb97f52f3e3044222581377ea4feba57d540e95de
MD5 2dbe4a440b2795c96f7dd83c8dd075d7
BLAKE2b-256 dd6a0df6ad65578ebee9e15992bb0173efb6d66a7d1ba22c4011890232c30ca7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1.tar.gz:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pychnosz-1.4.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 926.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pychnosz-1.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5e3d9b41eb7383f82977dbc11a261c50a375df1cd17536f95f7695894fe2e074
MD5 be4e858fcc5139dc1cc909940c2c312a
BLAKE2b-256 8f0aced5e56606741b7da7d1538bf2c35ac224bac03e817ce8d7cbf0a9209534

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp314-cp314-win_amd64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b85914342f7f6625e28f8556733daa42eff4602671001983553403ac8a524828
MD5 40d9e68b641f27e518321375fd76a3db
BLAKE2b-256 5c9c0683c33ce6fce1ce8acabae81ea3bead640b221055b67e34ebe6d85bae31

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.1-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 460f8dd8de9c33ab568d294f6767f66f34a89efc21c11f32d33eff7d189e6923
MD5 020a0033f1b48030b34ce65697c03b29
BLAKE2b-256 be0ebeaf3dbb4763c1519168a2b816d33aa74b64f4010830d34eaa039bd2bb64

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp314-cp314-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.1-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 63adeb0c7869180b822f0598921ee552be2f46afadc8a9dae19cf4b8ccba3f39
MD5 7acc1eb2a1cbd81efda91c95acf864cc
BLAKE2b-256 b4f3497d29d34d0a3f541a0ed9440afcbb87943225b8a1226916e76a5ee6882b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp314-cp314-macosx_15_0_arm64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pychnosz-1.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 918.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pychnosz-1.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7ccca49149f333b6d86e8a82daf76a309af2bfa35c10bda2cd2ab068719d4fc7
MD5 883671b2ea36d3a1b33460c0b5b8ff06
BLAKE2b-256 4f39991b883b62cd9d87070f6a737b99a417c220147f0baa252394da142c61ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp313-cp313-win_amd64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a740c8d155f85b72d8ca0cb65cae13aaec9bc3c931cbe18bc6663cba3a47ba3e
MD5 3db8c3ce49e01e10d372b4013c21c86f
BLAKE2b-256 99fb2e1fddf6f1b2ab8de625cc043668b23457898505b677d88ec7f3f03365ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.1-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 612170101820b9794ce882aafde21f1762381948e5030ed6f91c12e686333b0c
MD5 d787e38b8802c038e4c2fd2470c9bbbf
BLAKE2b-256 b2fa841787d24afb6cda097db17dbd341aef872f3dcaa6faa968036802b01090

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.1-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 96438bb761ec55503085f24309c3a8bbd259f8d69c2064dd77e0e4da31c30897
MD5 95d2fbcca6b8b5d1da477e9d0fc08934
BLAKE2b-256 cc65c90ed4377b02134f5cab191a2bcf4a52ffd263a871ab4c4e8701dd46a428

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pychnosz-1.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 918.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pychnosz-1.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2b2a2f59cf316b3e32cbdbac1224e4b1beaf6b1f810b41af63ab24150156f137
MD5 866e142718cdc8dc3260ddbc1d9e9cd1
BLAKE2b-256 31f3ff8833d354762c295a69d7aaee17dd02f963dc33ceb1c4f133a5e4ca0672

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp312-cp312-win_amd64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97b67b406f77e32f655f5538fd2e29c55e76d47c34e6fa5a76eac8fc143832dc
MD5 eda23777dbd2dcaceb48b1f6d6e446aa
BLAKE2b-256 813b3b6ab1db96e112302b7dc3fafa6814cbcfa5316172410fb0752079bc00ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.1-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6ccd76278d4e0be7bcea46255e64bfdb5b34365846f1ea8fec9845b9d1d30148
MD5 027e9b98ff9ddf5b1fbfc935a78faac4
BLAKE2b-256 de55c59283b482f337740ec21fd5e47d0564aae132988ab260878b91890e55dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.1-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c3e3e4acf48c52fdbd86a127acf292384c5a29cb9755c2336ec81b2ada6d0c63
MD5 e5ec53cc21457d13590245ddc47f8631
BLAKE2b-256 0f379a130dfab93f0900477b0e4097c24471709af42c1150c5409886fc953f10

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pychnosz-1.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 918.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pychnosz-1.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e9b927ddd378e56e393c20d6f22da4fd110bb6df682d2c04612b60b929bd13e2
MD5 fd775e052b0f2345a6e5490f8ae1d82c
BLAKE2b-256 23d5094758b556225c60e64c8ebc70359d900747c643cb3d07ca8fe5d3f45ef5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp311-cp311-win_amd64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ceb6d4c62751d1859a7d57345e63afbc9eb1590543835b43f4fd3b68dd4a6d8
MD5 7776710ca1a2f51deb9dd355a5438de0
BLAKE2b-256 7feeb0c62e1661967a2cfbb7ddbf8fbd4f099c6463827a2e9468c00a2cd63852

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.1-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a1cc93e61e4df2fddc89388def1a21d3c7b5d5251ae861f42e4edcfeaaac433f
MD5 db78ad2b7159f156984f6f85cdd5a3d4
BLAKE2b-256 a3d7c84dddaf609fe862158dba23ad796e69c58fdbd442c914555d1e1e03e32b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.1-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1edc6f23b1acf4b1bc0d2d94e44d4bf00068b1749d0cbb12401c44534913236d
MD5 dfc0c92bd172b04a803cb654f4d753b0
BLAKE2b-256 9fb04c5f8b6346e7eb8f8533ed6abc00fb3b09f88bea70fec2493d10558440ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pychnosz-1.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 918.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pychnosz-1.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7b36d42f2743136ecb2255e3b6bdf85d17f86309b89f1fa0dd22e132ae2f8045
MD5 5dad36f8af2a91034789cf755c516f05
BLAKE2b-256 a96acb05933983365c2b477690b9f24706521077e88faf8db480d3b6416b264f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp310-cp310-win_amd64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4c126301828f2ce1b9bd9dde2b63fda6997605bd322b1f7394996cbb2fdd3ec
MD5 87a12b88ee8a58b0de2acfcd8c6b6fed
BLAKE2b-256 71584498f92e63253b4544b3ba528a6ec6649de079cca6d4d87d66d9f46fdfa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.1-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b0f854cfefa3ba16c0ca48011f6c5fb778d8a1645298674a2872f3d45d3bc88f
MD5 05af2e6a2bd3cd43aaa2626bbfae5a47
BLAKE2b-256 355e3ad4e3ac04696b48d564a43bead9798470a22aabe34efedd4142e77d8f88

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp310-cp310-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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

File details

Details for the file pychnosz-1.4.1-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.1-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f4fb5b3019a62593db7e3739c6b81a1ee2bbd3ac108f8882410917096054a689
MD5 2d3b470861cdc982fb0e40f262f9d3ba
BLAKE2b-256 eeede81cd58b898ca23fbeaa1a4d55fe7899eeae86d3a3d89411f746d37eb9ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.1-cp310-cp310-macosx_15_0_arm64.whl:

Publisher: build-wheels.yml on worm-portal/pychnosz

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