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.5.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.5.2-cp314-cp314-win_amd64.whl (936.5 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

pychnosz-1.5.2-cp313-cp313-win_amd64.whl (928.1 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

pychnosz-1.5.2-cp312-cp312-win_amd64.whl (928.1 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

pychnosz-1.5.2-cp311-cp311-win_amd64.whl (928.1 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

pychnosz-1.5.2-cp310-cp310-win_amd64.whl (928.1 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 15.0+ x86-64

pychnosz-1.5.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.5.2.tar.gz.

File metadata

  • Download URL: pychnosz-1.5.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.5.2.tar.gz
Algorithm Hash digest
SHA256 57b0ee6910df0581389a71f1435bff3aa158a77ad1df7b287110d0a55176a7e0
MD5 96b1f9edebaa3eab538c5aad25744ada
BLAKE2b-256 d8051d123fda401930526f2dc05473a01834a210a89654942b54de426c900a88

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.5.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 936.5 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.5.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f2b8359a7cd532e3721a61e1424d26bc25f244bfc7de2f321afbaf20ea2dc9b6
MD5 aba75c93dde440b9c426f56d3c4332ce
BLAKE2b-256 c99f8790aa817319fe93d29d2608f7608e84249b97eaf10d98a06c3764f3cc66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ad3b6b32295934b3622e2432eee5013da956a3d3b5839f1b0b892dc0835a053
MD5 826ff3ad84e8cee33f40a9c001ef7d84
BLAKE2b-256 cf98862f70e4ccbbe937c7b93774e15f8f4820716d8aaf9db4757011d9954129

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.2-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ee6ab4c993d5073389bddd568577c20f874865144dab4f75a72daf0314fde7cf
MD5 d94b3f23dc229093554d3e160cf29479
BLAKE2b-256 860b6efae8e9efd897e42217d75a269c625ec43a0e1e95add789d368ddc55907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.2-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 654e779adb11ab0a84b938e33299842e69361e5bf5a76933da227d9a4f21a227
MD5 e84ed138a1d709857c7f4c38616634cf
BLAKE2b-256 4d00e2ffd80e404fda88378d82aad0cfeafda4263600664f0917d63bd7439869

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.5.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 928.1 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.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b483e223ae9abf15abeb02ff3fdb383909c5312a4a82b7293308fe986903af2e
MD5 fb26de4f47f69f865439b87fc8662dc4
BLAKE2b-256 0f628e6488c0801c189e6aff7658720564391c4a9f73493299f6caa2bc355a9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eba65e56f279ac399786d0459dc0c563562b6507dd43d261cf7459d1781e89e0
MD5 cd266711070c51e625e5e2d7494ff99a
BLAKE2b-256 9c2993985a8797111548b58960cb6a9836e5a614eb018c03cffde02eb642cdd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.2-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 786c12d7c2262dda090f597f487424db2775d872f469ef1cb2507f10dcf19b8e
MD5 c7a6b1e505acb1cb6b24733df691e5d8
BLAKE2b-256 635ffa6aae7ea64a4e705b6fa4004a6e2f44c41d28a1a0bf43adbc68655e280a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.2-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 59b45759913570c700b8530d385c47b5d7f7345836894aed806c9eddd0c07dd7
MD5 33704b1c3b687e28382cc0239e76737f
BLAKE2b-256 1563895c684faef03afce900431b2492b92c046fd1a32222b730e37b50e1b878

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.5.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 928.1 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.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 917b369b453e446334277ed458874a48c1c8d6607cf232c9d4362221d98121cd
MD5 efbf136eb4b7a1249f2e872e0c60f86e
BLAKE2b-256 d33f67be9cfef0b3088ead7b7e1ee03d60b13766398e34edbc049fed3525f5c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f1321a7ecb914369d4285422e2c47ea54ae2c7e9bef3c13c77fde205fa518ac
MD5 89bf0c1e72d5988999cb0d2c280c3128
BLAKE2b-256 51ae1112b8a007aff039533988b4aad8a94b88b291784e6e5d4d808931f1b7b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.2-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 55c6c935ebf43cf6e0698e993e1244c0ffaa89428ed7535ea5064d8cc943eb1d
MD5 b73bc986bea59b7928e211cdeab3a381
BLAKE2b-256 ec101af8a24c65c371e74eb0c0ef47940bfa1cbb03d9b68c4d6041b653f5bddf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.2-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3ad69032bdbd606ac07da257ae81ff579e051cfa5e13718cae3d8ba545760bd4
MD5 5f31ea7798b80d1b70fad9722b48c5c2
BLAKE2b-256 41b6c0bfed9ca753f380cb4d94c27c266816eb0027edaa665756a033f52c2168

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.5.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 928.1 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.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7594141c7ddbd9e523ec0fb8d08ad8697e88af02966c98ffa709f9ee71608f86
MD5 48f44e85b7ff63149936abf1b34d097e
BLAKE2b-256 ee4c760e17182a9eb9e16f0c5b2ce287cda297850adfcdeeb45aae5a88547458

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19380f73fee28e733e4e4dd359056b29603f7752f01ba7dc624344a903d26bdb
MD5 120bcf002e6e4c694668fb769106806f
BLAKE2b-256 223fd91a2b2525073b02b0e7ee6ce84fc29ae570f74d6c772082f9c41b728dcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.2-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e2e5c9d830f462af7c1b9fac38976857b267b32ca2fdbd17ff83dba5b83913b1
MD5 2de24c2035ae43e5f665fc75917e3ac6
BLAKE2b-256 1b8c964e9de8920481b8f7b0d1947de923dae2c69f6df9ce7fdec56c19017437

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.2-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 11dffdf72519e513ef1d75f4af52858147f8a78399bb93bfa2de2f58e9673e53
MD5 87c5db368c920fa3414d43adf7dbc935
BLAKE2b-256 19187920fd60e1081e5efd47292a0e7e9e66fec646fe862d60162031ad8e3ce1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.5.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 928.1 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.5.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3c6ba691a07a0faf20b9d138507792e06162f341bd982736710bd7707f14ca26
MD5 017fd80601f2875984b12de19722471d
BLAKE2b-256 7088cb4323fddf878c3eb737e1de8b8d46a226815a3d179ee628ab5b8d9e7668

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05e34a0116ecca0c847e13f912628d32fcb1b75a3ebca13d498f8fd2cd5dfe7a
MD5 0f6fbfd912622843aa8b2507dcc64f69
BLAKE2b-256 eb25c780c1fbff2ca2821759633b429520874310493c35b7c5cd31ba73b4e788

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.2-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 67af67382f50712c17ac5ee1fbb3b29f75ae71f4053a642b91f3d634dc48f964
MD5 4bc5c0d59955228c77165b9ccc34f94e
BLAKE2b-256 c4fb56ac262fa171111eeb00b6c782c14dc50ade1fc06b518d0dde96d1fafa4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.2-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c09ad92e46a0d9e209a841b3a711866cfa8bc185ba0e6d8552c989a6a54ba5c8
MD5 2a0c389c848a70f13822134cfce28abf
BLAKE2b-256 d898e3a8a9fda5c550f13afddd3e86afc14c34a8d7017fba02b12f09e4c08bed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pychnosz-1.5.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 Sentry Error logging StatusPage Status page