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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

pychnosz-1.5.1-cp313-cp313-win_amd64.whl (927.6 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

pychnosz-1.5.1-cp312-cp312-win_amd64.whl (927.6 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

pychnosz-1.5.1-cp311-cp311-win_amd64.whl (927.6 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

pychnosz-1.5.1-cp310-cp310-win_amd64.whl (927.6 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 15.0+ x86-64

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

File metadata

  • Download URL: pychnosz-1.5.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.5.1.tar.gz
Algorithm Hash digest
SHA256 24f04ed093f416a0d960858f3d45b71d0490877030947dafcefb1204f776af4b
MD5 c7c2da784005f90d4eb8dfc9554e1425
BLAKE2b-256 e8d58a8d63b5ba7a305be4b86ff2a38964f34b936dda82f879ae79ea8920f8a5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.5.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 936.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.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 eaa0b3d487d46765e7931fa9ebfacfa26f279e2368b3fdad5d8913adb5220237
MD5 f7c7905d3796e2b2b4c039e1f9db2d77
BLAKE2b-256 b9eee003ef6f3c0d752790de8053091638452987d66f58380b31a77259915cc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 57ceae4da013bc622aa22b41eabeba0b9066443ad0b18358d057f76a7ddb7cd3
MD5 5fdffa3a634813397625f9e4c0bbc3ef
BLAKE2b-256 45f5dcb8335bfe572cfcf2c37f2e3e3c4fe735dc0ea82db8a41b8e379746e15f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.1-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 75e9468ccd3eea4fdd21220f254d1a4b58dce6ec93da042c3bccf876afacf781
MD5 2f288fa116befb04b61f201652580272
BLAKE2b-256 ac033dea012944203cbe6175110b2cea40ea8d4574f8c4adfc93cd09ee106b15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.1-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 76f3867305cfb9ccd25b139fd49749c0e0dbd15936e0e6545ead0502acf46e6d
MD5 a3adae8ed5b82344a8e3740d6c56370a
BLAKE2b-256 800e1cef62576011a5719dd512264ffccb106878aeafd6622eb943b25bcb99ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 927.6 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0848e6c1e595aacfa16fe360fb5710c012bef23a7cce82c67a033abece1a7b99
MD5 de624110f5b84d927f29309b45136a57
BLAKE2b-256 b60fcb191a9f1aeaed9decd45a5fbac9c9f6290e2139c06c0ccc3e4a04445428

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 daec2f7fb74f26b073d5dc3c00ef74872852d42c3bcb25b78fb363d6a22e07ea
MD5 2711b2a593dd47cfe9366649bd673137
BLAKE2b-256 b731a98e6cf86714f4fc8244bd8d34ccd4fab5103b9566d5955eb988c309ca23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.1-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 fc9f32316f06a8ecd912430c09ba61e6c536f4e26828e8d5509cb366e0853e7c
MD5 42600c65b6e0c344075a9e9475095d2b
BLAKE2b-256 c2da1609d5bc94ea0dd25c5d845a7418ebf0deb3dedaeee072f998034fe05c65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.1-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c207f19b96b8594ff7420a622067bf696f14909bfa4ca75725825e0889f9ed2b
MD5 d657943be6f6e61ec4194d0bdebcd86e
BLAKE2b-256 71db55c1187ef4ed2d6ac73660988bc6831755c9691fc3bb592ebde9fcfe4cae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 927.6 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4b0340caf84b65034f874345447e6f0cb549b72e8794e462727e545fa74b8ef5
MD5 de1f7c7e3416f4a762215522b26631f0
BLAKE2b-256 bceb9441d34d4fe8cbc65848f8460053c0e298931b614acc433bbf878b541e0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8de5614d731732b9ca04cfdfee9d0a6e91a220f24f230125d53269c56e503ce5
MD5 69a83c7252db8a18e5e7cd7070268009
BLAKE2b-256 7c85948693d53b3a0703e199cba937f17f78dbff7358e5f20c089b22365d59f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.1-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 fa54bd7b6224e42c22c4c234f3e30d5830c2f4f8d7334d5db012d024d797b50b
MD5 91e122ca184f4169db55173c2155e6d8
BLAKE2b-256 0dd18a30df07643ad15d94a5f5ebedd59d07c098525eba63fe35e0aa553c3825

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.1-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 0c96395fa60f0e4a12dae54dbb481e5cd6415e05b3be70f8c5dea4c7dfb10924
MD5 9e88c332d4dfe1a1ff9f0e90f2ac9a04
BLAKE2b-256 7db1bb30f0eb112cc0fb88552636f56fd28eff36a722c75208901f88df8873f4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 927.6 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b5139e827dbc0c5ef007133dc0d9b2f95fd15be553e473152f47f2e032b98314
MD5 20ed497415baf6c2ca7de3ae7f282536
BLAKE2b-256 6ceccc7645d3ed5528868c54188a25f6613792de5643b54fa9a47dacd6f87afc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e182a4f2981c085152908057ff0c779db53c9ffe56657d44698447dd1aa0d4b6
MD5 325c37334fe732c951aaa8aea1b85953
BLAKE2b-256 f9982a5c8c58c0e6bdc96cb70a11ffa7cbea8327b771aad5376c2eb64fa5c025

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.1-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 0319fc4df9df11067e51463ec1ee71cfe4432fc5a72006f3e9fd24726386c884
MD5 11ff86e3ba35be8b2eb9cdd60803d341
BLAKE2b-256 0108d63f1710e3a5129e2d36efc40abf7d0957faf3e606d7e7034675de1b99ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.1-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5b8d8c86032780e641d3505ec21ffadb666cf9b294afabef4de34e1486542236
MD5 5d63c4ef25270792c99988f5043b386a
BLAKE2b-256 af05fb3cb1c812ebed02869ed1978fc32504cab0e708cf4309e73fb498d6f91d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 927.6 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 60f461f09352c937321dec707c747889921fe990e32cb434f1767ee7acafc308
MD5 3856473a0db4bd0064e445bd0eac3c06
BLAKE2b-256 b5326ad6a495e3304f9dcf70a68096d47b081491e03a4ab33847a82de87f5dd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17da7addf68dd98c504cf9904c5816cd39cddcb25900e8d10ca237dc039ec392
MD5 54f3294af642c29833d8f3d63eaf0727
BLAKE2b-256 c059ce6167b8c84c437b3eea12403d0d7c0d3add176f7f79b7c6e3f55ce77cba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.1-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3aca718fd9113e33d5325ee62911ddcd8ea50d37121a2c3e90c2530a945e9dd1
MD5 9040bf9247345a8a7f197ed431ffa461
BLAKE2b-256 cca0a619d2984146b6eb0fe2a00d421244d9c3b5bcf86bf4d1532cbd071e86b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.5.1-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 bab3856824b0ff8c09388dfb006dd65dea159ba41c72b6cece287571ab9e087a
MD5 b771175bd6b75eb59f6839c068367a51
BLAKE2b-256 045ea313d015e476778e9e9b3ab14b275adba8a5c8949385cf50bb3468435c30

See more details on using hashes here.

Provenance

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