Skip to main content

Python port of the package CHNOSZ

Project description

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.

Project details


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.3.0.tar.gz (1.9 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.3.0-cp314-cp314-win_amd64.whl (911.9 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

pychnosz-1.3.0-cp313-cp313-win_amd64.whl (903.6 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

pychnosz-1.3.0-cp312-cp312-win_amd64.whl (903.5 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

pychnosz-1.3.0-cp311-cp311-win_amd64.whl (903.5 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

pychnosz-1.3.0-cp310-cp310-win_amd64.whl (903.6 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 15.0+ x86-64

pychnosz-1.3.0-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.3.0.tar.gz.

File metadata

  • Download URL: pychnosz-1.3.0.tar.gz
  • Upload date:
  • Size: 1.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pychnosz-1.3.0.tar.gz
Algorithm Hash digest
SHA256 3cc3966290669f11553a8e88a9ca400f13871ee9b7e5d8bfffc8a85ab7ce67c2
MD5 01bfb06b1818832981e763cb9183a462
BLAKE2b-256 b4f83d331a66f37b5a346bf484250ef8d1377216a2bfbcfe92456b426f5dcffc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 911.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pychnosz-1.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d8543af57d3a2aefeda5a1b3e661b338a534cd7c566a3f29aa1b8e3321c1b8d8
MD5 f81f31e10788080c06233ce275f4ed60
BLAKE2b-256 9cea7222d7266aa8225534aa4a1b257bd2aec2455f9dd660a5d6886e5a74a3b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8db412104a129b82f7a32dba5b46e8a31e173ed53703d1c45109bc524d781f8a
MD5 01bd471c3c2e5c51709673dfec9971f9
BLAKE2b-256 3c4dd321e0dc28421d2578f16793d722f2aa85d9ce4cf65d4488afea7de2e9c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.3.0-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1287dc859f7e5696753831b65b9dcf140e5b097a0e2a7131a744680529a35711
MD5 3df9655056ed7a0869fd9804759ed369
BLAKE2b-256 3d5881666a74ae497adb7b310bf2beb60fd4fde79b397990b02600208bd17ba7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.3.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 70247f241dfe2dc5260866a1c1e90352b9920788d379991093c9892dae961794
MD5 56c73133209d1c49ecfe265c502314b6
BLAKE2b-256 749314b88c8309b7dfe7cf3264a02472aa5f7212d9d4bad521bf9b30e0697b73

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 903.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pychnosz-1.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 15448b34ef8f4d5328d5adfed527b88cc34216100752b780aabb24681133e556
MD5 51b22bdcfe5313f293208d129c28a0b6
BLAKE2b-256 b3b51869ce904ab5fb12c19f5e925e5ac54fc86e1bd655160f7d49977e233902

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7351085916dbf5c06c9b86075a70a4a5c7e7f5c41bf2d06240f464bf79f6fa50
MD5 a26465f024aff15232b6324e6ac1addf
BLAKE2b-256 2e6223b5c2c1881ff76c2d205e17e74b40e599061bca5eef61a664c9a10f4443

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.3.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 87b9a9a144d30d342fcc7fb17df0aaf578b005c17d8edb2bb0b6b13019d9d113
MD5 c30e3faf4dfc8f708fe810aad58d47fc
BLAKE2b-256 3f9116f0adda64fe0fe6bce155fe7ad032f4673d90d98878b10236646eb21922

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.3.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 42c5e67b5cd68ebb8347bfc82b0e435cbe3422d333c68543b9a26a5a99b1da00
MD5 c8059e8ce656d12ea1f5f9bae4d15e8a
BLAKE2b-256 8a76972162811896658aee8254da074d23aaa2a246c32120ce3ba8992f7e83fc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 903.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pychnosz-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9af7d6a58b2710990b6950b54a1d92b4fc35bfae120395867ff117d15b9c7061
MD5 2478c0429d195ec93cfbef26f07efeda
BLAKE2b-256 1be70d064932c638998e3d7e1f7a14b35ceefe98177a888f3bdcbaf6f5bc5851

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce098d8aebaed93dfc33acad69605741f90bf2e53320cb63581bcc92b730d44b
MD5 45912c23f1e6df8e25cfa35603487460
BLAKE2b-256 7eb37b6e662586bbe75d368a5a73e11c2e47563f19bec13cd12cd4045026f55a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.3.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ee419877bf05cbbff9bc64fdccc59c58096cbc192f02523f60b99d4677a793f1
MD5 d59ae9bf87c10ca827c0e958e712e420
BLAKE2b-256 7ba33f75782e610013f1a12bf7f3d4d9da4a7dca7dbe3ba361d3840fa0857d96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.3.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 bceb5640b169e4e1c171c3da02627acd677081fc212e2b3262606e5bc4e9d671
MD5 de56402dec93eb07ab73f10f2ab196cb
BLAKE2b-256 2e56f643ed08c7dc7bb22488ec991b56794f2edaf6a98c6db51920b37d8c331b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 903.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pychnosz-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d12f8163d8f27b7a024c9b5dc54fb7b3231168f678518d1737b861f1b2d91133
MD5 aafe0b01abbef34a9477389f22f2b033
BLAKE2b-256 a20001816ffd18a78b6ac69e9a77472b7f2b2b97fd5a07e6eaec651ef0421254

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ab2919f7abc8e5f6bf05683a49abf5a4371bb27ecc71234d415289bd7d2772b
MD5 cc6a7a5f0b24190aa6da9c766e3f52e1
BLAKE2b-256 2c40c7a051579847d02dd0bb73e65305505631bd220e2fcb6898ca138c12d926

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.3.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 88e3172e61ffe3376da119e30db7905fcd58cef29ee4078fd8399b4e2b7fe493
MD5 4885c9cb937dc6a2eb25ff778ab0df0f
BLAKE2b-256 a612ff0c6e4bdc21f6e64051e1ad5007163c1f6ece94873ecbdf38adc07fba68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.3.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b05db51a9ff6395f11915f9277e6db17bad40dec6a3a7bcab251c32ae187d20e
MD5 e6341b5479d40fbe6886191085b6d8f7
BLAKE2b-256 b50793674c7c07a6dd424705ba80f6834e0550370d6349cad59fee04b66eda3b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pychnosz-1.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 903.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pychnosz-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9b1a05f2efaa152c028a485fcc4aeda4801e4bb6ad772e2e62285e80b24b6ef0
MD5 d1e7aea61a4780a46cd2f84ef7fb72c0
BLAKE2b-256 023acb925d741fa414adf63891668c3bcee4877af67d559e8b6ae8ed0d8d7521

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42dca1c8fd29245ed2d839e77baedc1874257494c539968206f8df2f9698a301
MD5 d4fdb689f935d9ac64af335e85d923cb
BLAKE2b-256 625b13d63e8daca6bb3ddbac40485aaf18e7e3832723f4594cd3f5628640ebb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.3.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a6a2a61e6309f18e302c1e64309af37d040e2d218e7b4716d1cd551aa8a4c90b
MD5 282208630e46a58da4ef96be34250c21
BLAKE2b-256 30f306d688456842c109b362c7667075caf49296607e00907f634c52b01cb50f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pychnosz-1.3.0-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 35a7f26a3274d29b3a2a0704341c7b4ce2a1846df86ad1248097cea0aad0529a
MD5 a1fa2e38853007e1ae0d75a31115ee06
BLAKE2b-256 b48ab8ec725d5191a8455f4b4e4943ee9f5fbb0e0e5d482b1c7f83bcf24f659e

See more details on using hashes here.

Provenance

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