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.2.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.2-cp314-cp314-win_amd64.whl (929.0 kB view details)

Uploaded CPython 3.14Windows x86-64

pychnosz-1.4.2-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.2-cp314-cp314-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

pychnosz-1.4.2-cp313-cp313-win_amd64.whl (920.4 kB view details)

Uploaded CPython 3.13Windows x86-64

pychnosz-1.4.2-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.2-cp313-cp313-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

pychnosz-1.4.2-cp312-cp312-win_amd64.whl (920.4 kB view details)

Uploaded CPython 3.12Windows x86-64

pychnosz-1.4.2-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.2-cp312-cp312-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

pychnosz-1.4.2-cp311-cp311-win_amd64.whl (920.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pychnosz-1.4.2-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.2-cp311-cp311-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

pychnosz-1.4.2-cp310-cp310-win_amd64.whl (920.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pychnosz-1.4.2-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.2-cp310-cp310-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

pychnosz-1.4.2-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.2.tar.gz.

File metadata

  • Download URL: pychnosz-1.4.2.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.2.tar.gz
Algorithm Hash digest
SHA256 49cf0f5dd9eb69dc3c1fb81d325d248abecae6932aa112fff0df7f5c2cfe6bfe
MD5 cabae8ea9ce9168cc0695b5539c94006
BLAKE2b-256 98d2db8dd55aad87617e41c06fb109ab532ad537e5deef3b994833a3490be5e0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.4.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 929.0 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b613dc842e340532d82cc909a59932a85faf04be73933f9063dd6149fe0df855
MD5 32bdd03e3591e0f81d90ed5c23b48e19
BLAKE2b-256 b555c15f21ca22cc4fd4cc59f8f91d44bd03bf711fee26776691e200f65963f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.4.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23e90715678cae12c9db0f463bc7efd42131fc19ab7e6fb5c8a6fb39616faeb2
MD5 ad46deed43c3424629f63f7de5112bd8
BLAKE2b-256 683974d4e50cb6f523a26ff0baf03ab9dda7d5069256d7afc5b7adb8b2f34eef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.2-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.2-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.2-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f04dc9258da863ef8d59909b4c37f02d08f4c9227415d0421ccdcf6b6fff750b
MD5 4077ddbc446c31f4e9b56d53ca5881d7
BLAKE2b-256 dab8e18315498f62a7db60b35490197151a1ea22ba8caef5e2bab4316aa60888

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.2-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.2-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.2-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 6cc17981a439cf6c48255bedb906675ac11df89210d528788c78e09b1c1858c2
MD5 a33627648d4adfbed42a54eaac56f50e
BLAKE2b-256 9599ae670f1e8ac3be53bb15b545eb0b13a5bf9c1c8c7ea41350b6f89a57ad17

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.4.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 920.4 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c96056e73e560defeaec1620a76caad156eb69c91c78d2bcec0a44e9138256f7
MD5 3bf5a26bfed34d19cd6775b36022ac61
BLAKE2b-256 35dc624c9b87ec0c66c0f1f31def77f0f55fd928e0aacf33ff6cd38266488b3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.4.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e7116c618e4acb0ebc92e00d428aec7c2b663f53ec0427310dbcfb5849bebe9
MD5 7ecc23d22e8a4615c235ddcf9222b2e4
BLAKE2b-256 2aac2c0978f609be827b38fbcad101975a0b4f8d1568e987afeb487686f11fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.2-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.2-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.2-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2b5321e13e46fdd50eecf67943d808ca3d470726fd4590b1daccd3862bb2728e
MD5 dad24209ba1ac56401473540ef87399b
BLAKE2b-256 0967cb063b9681ab2df0b6c24503d28dce2095836dbd8c30fd166d964b7d44b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.2-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.2-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.2-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 59edd81bafb94425df5aa7d551f7a4838b26ea53d5ecfd3b8196f6a3d7b9240f
MD5 c4f9719d962ef771709d267b7b3ccfb9
BLAKE2b-256 762b3c6569d1f8ac7efcc2d69ff4219b92510c2c42217a6f05ed94e60a06b965

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.4.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 920.4 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a4648aa20de9db1625b5f2a988830b47afc11a02aa8b4c9ad86559895e9c9f8e
MD5 72dfe0a0cb2e8a0bdd6cfd058bdb921f
BLAKE2b-256 8abf2498e02ba12e52e08a03ff95295f7f7ab1bc26fe9282e4e2789eae2ac8a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.4.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8860b3767f499742a7ae61a0318b1437882713cfcee5592e885a2db9fee82b8
MD5 cae49c35151a6cae348c171ae85747f5
BLAKE2b-256 d06fac5ed38f3e9d89cfa008a91b3f1f83504b0f8bb8ef1c41d301860ebf50c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.2-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.2-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.2-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 49b9b34ca3d7a7ddc8ae7bf9accb0eac02ecaea94d429d326d602a1ee32b7c02
MD5 d0903a543c17c453f9714b11c61179ba
BLAKE2b-256 d369c0b140396a7df63adf68db369068d6bbb3ffde499518c6737d9f35ab7d50

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.2-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.2-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.2-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 0e2b41ee1667659a665f19c590beea18afa022169f39e31d1223a3f0aa643f54
MD5 455fae031a21c45df08cb03ef3a9557e
BLAKE2b-256 bc7d49fad5552f9be2e1a42fdee641a7b95ce26652d3b92d0012d546f4f545fe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.4.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 920.4 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c7986bdc105c04d38b3a9158439bdcca9cdfda8068bd2234b1a127ec769dffdb
MD5 4778ad7c570e5c06d45a54420eedb3c5
BLAKE2b-256 1846f65b6230d5d4bd1e6336fbce88255513e22223be16985dc95ec216d968ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.4.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5cd024b2ae08d678db1453efe9822dd27f24d99d53b9f6836bd4978902e1642f
MD5 83b20e9edcc5df4614e28bd7e46e3f27
BLAKE2b-256 46be2b85288cfed98e5586fb632f7e8441517970b1681e356811ded1ee9db3af

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.2-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.2-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.2-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b5a41c9ca6fa9a3bc9d9be9187fc0d9946975ec0f501093b5b19fdb1a315fe1e
MD5 e53f1950a8125945a4865230ac2dde16
BLAKE2b-256 2710cadfe607d262fdf86624dc7f3e93b3c25828525d204f1e8faa8561b106de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.2-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.2-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.2-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 aeb4817054b658cd61d6f203003890bf5acff7638969f7aebff613fcdb503dc9
MD5 36182403816e3b0d5460671dd23d5479
BLAKE2b-256 9d9e77f788cc8be30a32ed2d9669ec6fc586b2d69d876e7c4a43558ae557d636

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.4.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 920.4 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a2b205cd66a378ab2eb79ad1a6d96cb97c8a388f80be7792db4f88228842e817
MD5 a83961781730832312fbf281a90aad4c
BLAKE2b-256 88f5eac755512f2d98f4b0ec8775e87dc27d119656b520ea012c67a5bb12b11b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.4.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 913ddf8fdf49eedd4feb48e4ac9dea411d7ff9947e5ba0dc31e38ea098ac97f2
MD5 66d442de4c6d3870b7f7faededffc185
BLAKE2b-256 b8366e8cc7d8361aef88f0cc72f9c73b3228907d43ec3c622e46509c27fab51f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.2-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.2-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.2-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ec49ad1a2868272ba7fad62c91d6c82abb6dd8fd6eadedd4dc54d492e59138e4
MD5 44b00383b7c018ec883faa963138b9cd
BLAKE2b-256 ef4a601cfaba24ac9d5d7c4ba7c15542a60020bb2ceeb8c26c927ba0a9f2adda

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.2-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.2-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pychnosz-1.4.2-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7d99061fd96152d747b8ac73ccc09e42c175a5ee060e8cdb43263fa29a7272da
MD5 70880076b97aecc89bf3935073eecc8a
BLAKE2b-256 ab69e5e179767acde1e974e34f642c50f1bf467915256aba6f762df8ae1d4e2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.4.2-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