pyCHNOSZ
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.
Release files for pychnosz 1.5.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pychnosz-1.5.3.tar.gz | 1.6 MB | Details |
Built distributions (wheels)
Total release size: 32.6 MB
Release files / pychnosz-1.5.3.tar.gz
| Download URL | pychnosz-1.5.3.tar.gz |
|---|---|
| Size | 1.6 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
00cf0d8ac26490aa7e1537dc53c40df321db4a23cec4e15235bed5eca9c4a5a1
|
|
BLAKE2b-256 checksum How to use checksums |
48007165458c6e62ddbc32d3a872c93fcb1962e3a5886d67462844445f16fb94
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp314-cp314-win_amd64.whl
| Download URL | pychnosz-1.5.3-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 941.7 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
ce10f96ce8bd050d25ffa3180bba2d31ea11aa3fb29d3288e003d2902d908fdd
|
|
BLAKE2b-256 checksum How to use checksums |
718183f5598423518a66b492f75b9b9037d5804add34e08f7b021fcb2512b817
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | pychnosz-1.5.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.7 MB |
| Tags | CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
a4d6b7285f93510b9ae46d051f21cc0e92bde730640d2ed65e4fff7305b93901
|
|
BLAKE2b-256 checksum How to use checksums |
8b89a3dba006c69b2ab21dc6e65fc71b5c0ac3ff5a3511fc5dd93cf66a3ca955
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp314-cp314-macosx_15_0_x86_64.whl
| Download URL | pychnosz-1.5.3-cp314-cp314-macosx_15_0_x86_64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.14 macOS 15.0+ x86-64 |
|
SHA-256 checksum How to use checksums |
59e226e202751629d12d1b1247c24fb702534aa3d4300db2bf786dca2191c3b1
|
|
BLAKE2b-256 checksum How to use checksums |
256f150d8cdcae37fb58285500bb4396fd050e892d59c7c8ecb2c6f4a539430e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp314-cp314-macosx_15_0_arm64.whl
| Download URL | pychnosz-1.5.3-cp314-cp314-macosx_15_0_arm64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.14 macOS 15.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
3de0a0af34fb3fd661f5670673ae644855f2ad6cd632c58766da71e1fbbfadfc
|
|
BLAKE2b-256 checksum How to use checksums |
b38f57129fe625951917d8916cab52167816f0789a17755818c0de0168a83f70
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp313-cp313-win_amd64.whl
| Download URL | pychnosz-1.5.3-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 933.3 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
9a844440929dbf73dd6b92dc8902276e11431121e8603f7b1103c86522bbaeae
|
|
BLAKE2b-256 checksum How to use checksums |
1c8bb1ade409e4a9641e99c33becf1dc4e07f36aab4962762c440733eaa9dbad
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | pychnosz-1.5.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.7 MB |
| Tags | CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
84d539f3e5b2951016e5ee5d2ff3e91faba3337b0acf7356d334d84b7a9279bc
|
|
BLAKE2b-256 checksum How to use checksums |
11ebd75ac9e63ccc43dccf112f1c3b9d27e21797fffda99007cca6dab4e81ce1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp313-cp313-macosx_15_0_x86_64.whl
| Download URL | pychnosz-1.5.3-cp313-cp313-macosx_15_0_x86_64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.13 macOS 15.0+ x86-64 |
|
SHA-256 checksum How to use checksums |
a8cad4ffa2b307f33eb38147f5c0551a1cb0a8d40c8c8d631e207329e0d22b65
|
|
BLAKE2b-256 checksum How to use checksums |
25c06af1add127ed23b3fcf1e967260bb048d13cee321b215ab8a8d9b7f3a90f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp313-cp313-macosx_15_0_arm64.whl
| Download URL | pychnosz-1.5.3-cp313-cp313-macosx_15_0_arm64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.13 macOS 15.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
c29b4aaffec74a60ec0143238481ac0a23c9421a08d2c07886929a0247ee13d8
|
|
BLAKE2b-256 checksum How to use checksums |
45b51ede8934b7f50f5c8a2bbe8d8c9a5bb580748c36107e9535308f3c66cffd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp312-cp312-win_amd64.whl
| Download URL | pychnosz-1.5.3-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 933.3 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
a0be911f0b981ef779fa34c7541dcce485cda6134456ae470fca767e3b6b6980
|
|
BLAKE2b-256 checksum How to use checksums |
7b63a6d6d2bc9e9856bbb11aed2d8caa138a5e66dd602de5a3dd8859d659a8b4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | pychnosz-1.5.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.7 MB |
| Tags | CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
98a990143e6a2798854b766c1e5329a30da31834e14de67fbcc18a65ded078ad
|
|
BLAKE2b-256 checksum How to use checksums |
b016b019e9647476793aead98363940f8e3172f84b01496ae46acf9c2b6dcfda
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp312-cp312-macosx_15_0_x86_64.whl
| Download URL | pychnosz-1.5.3-cp312-cp312-macosx_15_0_x86_64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.12 macOS 15.0+ x86-64 |
|
SHA-256 checksum How to use checksums |
a213db4a5dbfbfc59b0e3eb00230a67c3ca1dcf2a0ce246375789f4c65e5d106
|
|
BLAKE2b-256 checksum How to use checksums |
5a4e898bd29c54a4b34429be3e97a6eaf31e3b6dbdd15a2e9cda58ceba5718ad
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp312-cp312-macosx_15_0_arm64.whl
| Download URL | pychnosz-1.5.3-cp312-cp312-macosx_15_0_arm64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.12 macOS 15.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
2f539bf604239a0597ae940f8814dbef6707ad93fc457db25d2d06d95a898005
|
|
BLAKE2b-256 checksum How to use checksums |
f5e5eccd27fe2d57bcfb5f696016130cb7a897d2ed83c16a08ffe25f198120b1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp311-cp311-win_amd64.whl
| Download URL | pychnosz-1.5.3-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 933.3 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
71dea01ffe62c9f3ed4e00d0fec719203db2b59954c745d1f8dc3e57a6ca0d30
|
|
BLAKE2b-256 checksum How to use checksums |
e67c0c2fee5a4403af31e666ba8f0ec5e5f99f5e9a52966827063ae877d26842
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | pychnosz-1.5.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.7 MB |
| Tags | CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
2a8f8169b3137b8e256692cc6fc13e35dd22cf7d74256753b6685b8591d54c39
|
|
BLAKE2b-256 checksum How to use checksums |
668b8cd36f53f3f57c00aa64a5240d23cc1278c8c0b37979f76371419370dd51
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp311-cp311-macosx_15_0_x86_64.whl
| Download URL | pychnosz-1.5.3-cp311-cp311-macosx_15_0_x86_64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.11 macOS 15.0+ x86-64 |
|
SHA-256 checksum How to use checksums |
898caf5fe9c094aa4e1cd49983e16e4efee60807b116ee6f04d2bfd7b9f495ef
|
|
BLAKE2b-256 checksum How to use checksums |
7e4a08dec840a20bd0c0287355aace58bf23aac398937f9b1e29f2de7f844437
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp311-cp311-macosx_15_0_arm64.whl
| Download URL | pychnosz-1.5.3-cp311-cp311-macosx_15_0_arm64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.11 macOS 15.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
36566bea1afef6bf4cebc479706831f5fb80eaabdaf606e88f60cdb94d93c4ba
|
|
BLAKE2b-256 checksum How to use checksums |
53730f11c04a4ebb47a53197b23523bd64013aa788c5b4000e8714f6a0a27b2b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp310-cp310-win_amd64.whl
| Download URL | pychnosz-1.5.3-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 933.3 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
363b8ac0a42da91378e3a77dc6bf77093adc027295e364ec64fa7842ee1569d2
|
|
BLAKE2b-256 checksum How to use checksums |
dbb295ac8857bc6cce5fd8b97d4abbf8f09c9870791b6e4b230f311ab76cb22b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | pychnosz-1.5.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.7 MB |
| Tags | CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
0463e7f283d473c28ff5a8da4c13534595074600b3a7fbb9d772f38fee0a49e5
|
|
BLAKE2b-256 checksum How to use checksums |
6abefc135264c2ef2569f19035e41256d9d40989d185e5d9f7a96767a562d30e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp310-cp310-macosx_15_0_x86_64.whl
| Download URL | pychnosz-1.5.3-cp310-cp310-macosx_15_0_x86_64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.10 macOS 15.0+ x86-64 |
|
SHA-256 checksum How to use checksums |
f7d40a42a9cbd35bb80b8b338ca60652b9130c1f4d025cd1e1030b3b80270892
|
|
BLAKE2b-256 checksum How to use checksums |
8210ca33ff237ae8798ba07cea9b80bc3529737a28a072c714dbea0bc6ca2a08
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / pychnosz-1.5.3-cp310-cp310-macosx_15_0_arm64.whl
| Download URL | pychnosz-1.5.3-cp310-cp310-macosx_15_0_arm64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.10 macOS 15.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
6f97ca0a99b8ab61b09ab918ff53e33a4699b297fd542ce616bfba276e65be4d
|
|
BLAKE2b-256 checksum How to use checksums |
a72c025c121e5f903b2d8a6a919676f38373e02bed38f4a91b4bb2ef0802297f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency log