Skip to main content

Easily share conda environments.

Project description

conda-share

Have you ever want to make conda environments sharable? Well this is the package for you!

After years of waiting for someone to build a tool that exports conda environments that can easily transfer across computers (and operating systems) while still keeping the package versions, I decided to build it myself.

Why use conda-share?

TL;DR

There is (at time of writing) no conda command in existence that exports only the user installed packages, with their version numbers, and also includes the installed pip packages. This is what you need to share an environment consistently and effectively.

conda-share makes this easy.

There is even a single line you can add to your python files and jupyer notebooks to save an updated environment every time it is run (so you don't have to keep track of it).

General Goals

The primary goal is to generate a shareable environment YAML that is closer to “what you explicitly installed” (via --from-history) while also including version numbers and pip packages.

The secondary goal is to provide a programmatic API for Python applications to read and evaluate conda environments.

So why not just use "conda env export"?

Well, it outputs all the operating system specific packages too!

So if you export on your lab server that runs Linux and try to install it on your MacBook, it won't be able to build. That is not because there is any difference in practice if you manually install the packages, but because of those extra operating system specific packages.

Guess how I know this...

Conda-share solves this problem by only including the packages you specifically installed, just like conda env export --from-history

So why not just use "conda env export --from-history"?

Because that command doesn't return any version numbers that you didn't ask for at time of install. It also doesn't include any pip packages.

This means that if you were to conda install python=3.13 numpy at the beginning, then only the python package will have a version number in your export. If numpy has upgraded 5 major versions since then, then when the next person goes to recreate this environment, they will install the wrong version of numpy.

To solve this, conda-share only includes the packages in --from-history, but it includes the version numbers as well. Additionally, conda-share includes the pip packages.

Other small benefits

There are other small benefits to using this software:

  • If you happen to make a typo when writing the environment name, it will tell you if the environment doesn't exist. I'm surprised that the default conda command doesn't error in this situation.
  • Convenient functions to get info from conda environments in Python.
  • You help me get my name out there. :)

How to use

This makes it super easy to automatically keep your environment up to date for a python file or a jupyter notebook.

First, make sure conda-share is installed in your conda environment.

# Make sure to replace <env_name> with the environment name
conda activate <env_name>
pip install conda-share

Then, just add this one line to the top of your code.

import conda_share; conda_share.save_current_env()
# You can also save it to a different directory with a different name.
# import conda_share; conda_share.save_current_env("/path/to/my_envs/env.yml")

Voilà! That's it.

There are also other functions available in the python package for viewing and sharing conda environments.

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

conda_share-2.0.1.tar.gz (50.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

conda_share-2.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (820.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

conda_share-2.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (859.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

conda_share-2.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (882.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

conda_share-2.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (781.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_x86_64.whl (617.6 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64

conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_s390x.whl (650.4 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ s390x

conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_ppc64le.whl (756.8 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ ppc64le

conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_i686.whl (659.1 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ i686

conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_armv7l.whl (611.9 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ ARMv7l

conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_aarch64.whl (599.7 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ ARM64

conda_share-2.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (815.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

conda_share-2.0.1-cp314-cp314t-musllinux_1_2_i686.whl (855.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

conda_share-2.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl (878.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

conda_share-2.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl (774.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

conda_share-2.0.1-cp314-cp314t-manylinux_2_24_s390x.whl (646.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ s390x

conda_share-2.0.1-cp314-cp314t-manylinux_2_24_ppc64le.whl (750.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ppc64le

conda_share-2.0.1-cp314-cp314t-manylinux_2_24_armv7l.whl (609.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARMv7l

conda_share-2.0.1-cp314-cp314t-manylinux_2_24_aarch64.whl (593.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64

conda_share-2.0.1-cp314-cp314-win_amd64.whl (461.4 kB view details)

Uploaded CPython 3.14Windows x86-64

conda_share-2.0.1-cp314-cp314-win32.whl (438.5 kB view details)

Uploaded CPython 3.14Windows x86

conda_share-2.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (815.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

conda_share-2.0.1-cp314-cp314-musllinux_1_2_i686.whl (854.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

conda_share-2.0.1-cp314-cp314-musllinux_1_2_armv7l.whl (879.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

conda_share-2.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (777.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

conda_share-2.0.1-cp314-cp314-manylinux_2_24_x86_64.whl (612.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64

conda_share-2.0.1-cp314-cp314-manylinux_2_24_s390x.whl (647.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ s390x

conda_share-2.0.1-cp314-cp314-manylinux_2_24_ppc64le.whl (749.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ppc64le

conda_share-2.0.1-cp314-cp314-manylinux_2_24_i686.whl (654.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ i686

conda_share-2.0.1-cp314-cp314-manylinux_2_24_armv7l.whl (609.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARMv7l

conda_share-2.0.1-cp314-cp314-manylinux_2_24_aarch64.whl (595.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64

conda_share-2.0.1-cp314-cp314-macosx_11_0_arm64.whl (544.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

conda_share-2.0.1-cp314-cp314-macosx_10_12_x86_64.whl (561.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

conda_share-2.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl (815.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

conda_share-2.0.1-cp313-cp313t-musllinux_1_2_i686.whl (854.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

conda_share-2.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl (877.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

conda_share-2.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl (774.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

conda_share-2.0.1-cp313-cp313t-manylinux_2_24_s390x.whl (646.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.24+ s390x

conda_share-2.0.1-cp313-cp313t-manylinux_2_24_ppc64le.whl (750.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.24+ ppc64le

conda_share-2.0.1-cp313-cp313t-manylinux_2_24_armv7l.whl (608.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.24+ ARMv7l

conda_share-2.0.1-cp313-cp313t-manylinux_2_24_aarch64.whl (592.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.24+ ARM64

conda_share-2.0.1-cp313-cp313-win_amd64.whl (461.1 kB view details)

Uploaded CPython 3.13Windows x86-64

conda_share-2.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (816.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

conda_share-2.0.1-cp313-cp313-musllinux_1_2_i686.whl (854.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

conda_share-2.0.1-cp313-cp313-musllinux_1_2_armv7l.whl (879.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

conda_share-2.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (776.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

conda_share-2.0.1-cp313-cp313-manylinux_2_24_x86_64.whl (613.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64

conda_share-2.0.1-cp313-cp313-manylinux_2_24_s390x.whl (647.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ s390x

conda_share-2.0.1-cp313-cp313-manylinux_2_24_ppc64le.whl (752.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ppc64le

conda_share-2.0.1-cp313-cp313-manylinux_2_24_i686.whl (654.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ i686

conda_share-2.0.1-cp313-cp313-manylinux_2_24_armv7l.whl (609.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARMv7l

conda_share-2.0.1-cp313-cp313-manylinux_2_24_aarch64.whl (594.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64

conda_share-2.0.1-cp313-cp313-macosx_11_0_arm64.whl (544.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

conda_share-2.0.1-cp313-cp313-macosx_10_12_x86_64.whl (561.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

conda_share-2.0.1-cp312-cp312-win_amd64.whl (461.3 kB view details)

Uploaded CPython 3.12Windows x86-64

conda_share-2.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (816.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

conda_share-2.0.1-cp312-cp312-musllinux_1_2_i686.whl (855.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

conda_share-2.0.1-cp312-cp312-musllinux_1_2_armv7l.whl (880.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

conda_share-2.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (776.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

conda_share-2.0.1-cp312-cp312-manylinux_2_24_x86_64.whl (613.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64

conda_share-2.0.1-cp312-cp312-manylinux_2_24_s390x.whl (647.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ s390x

conda_share-2.0.1-cp312-cp312-manylinux_2_24_ppc64le.whl (752.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ppc64le

conda_share-2.0.1-cp312-cp312-manylinux_2_24_i686.whl (654.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ i686

conda_share-2.0.1-cp312-cp312-manylinux_2_24_armv7l.whl (609.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARMv7l

conda_share-2.0.1-cp312-cp312-manylinux_2_24_aarch64.whl (594.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64

conda_share-2.0.1-cp312-cp312-macosx_11_0_arm64.whl (544.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

conda_share-2.0.1-cp312-cp312-macosx_10_12_x86_64.whl (561.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

conda_share-2.0.1-cp311-cp311-win_amd64.whl (462.7 kB view details)

Uploaded CPython 3.11Windows x86-64

conda_share-2.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (819.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

conda_share-2.0.1-cp311-cp311-musllinux_1_2_i686.whl (857.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

conda_share-2.0.1-cp311-cp311-musllinux_1_2_armv7l.whl (881.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

conda_share-2.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (779.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

conda_share-2.0.1-cp311-cp311-manylinux_2_24_x86_64.whl (616.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64

conda_share-2.0.1-cp311-cp311-manylinux_2_24_s390x.whl (649.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

conda_share-2.0.1-cp311-cp311-manylinux_2_24_ppc64le.whl (756.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

conda_share-2.0.1-cp311-cp311-manylinux_2_24_i686.whl (657.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ i686

conda_share-2.0.1-cp311-cp311-manylinux_2_24_armv7l.whl (610.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

conda_share-2.0.1-cp311-cp311-manylinux_2_24_aarch64.whl (597.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64

conda_share-2.0.1-cp311-cp311-macosx_11_0_arm64.whl (547.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

conda_share-2.0.1-cp311-cp311-macosx_10_12_x86_64.whl (563.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

conda_share-2.0.1-cp310-cp310-win_amd64.whl (461.4 kB view details)

Uploaded CPython 3.10Windows x86-64

conda_share-2.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (818.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

conda_share-2.0.1-cp310-cp310-musllinux_1_2_i686.whl (856.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

conda_share-2.0.1-cp310-cp310-musllinux_1_2_armv7l.whl (881.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

conda_share-2.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (779.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

conda_share-2.0.1-cp310-cp310-manylinux_2_24_x86_64.whl (615.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64

conda_share-2.0.1-cp310-cp310-manylinux_2_24_s390x.whl (649.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

conda_share-2.0.1-cp310-cp310-manylinux_2_24_ppc64le.whl (755.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

conda_share-2.0.1-cp310-cp310-manylinux_2_24_i686.whl (657.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ i686

conda_share-2.0.1-cp310-cp310-manylinux_2_24_armv7l.whl (611.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

conda_share-2.0.1-cp310-cp310-manylinux_2_24_aarch64.whl (597.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64

conda_share-2.0.1-cp39-cp39-win_amd64.whl (462.6 kB view details)

Uploaded CPython 3.9Windows x86-64

conda_share-2.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (819.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

conda_share-2.0.1-cp39-cp39-musllinux_1_2_i686.whl (859.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

conda_share-2.0.1-cp39-cp39-musllinux_1_2_armv7l.whl (882.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

conda_share-2.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (781.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

conda_share-2.0.1-cp39-cp39-manylinux_2_24_x86_64.whl (616.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64

conda_share-2.0.1-cp39-cp39-manylinux_2_24_s390x.whl (650.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

conda_share-2.0.1-cp39-cp39-manylinux_2_24_ppc64le.whl (756.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

conda_share-2.0.1-cp39-cp39-manylinux_2_24_i686.whl (659.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ i686

conda_share-2.0.1-cp39-cp39-manylinux_2_24_armv7l.whl (612.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

conda_share-2.0.1-cp39-cp39-manylinux_2_24_aarch64.whl (599.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64

conda_share-2.0.1-cp38-cp38-musllinux_1_2_x86_64.whl (819.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

conda_share-2.0.1-cp38-cp38-musllinux_1_2_i686.whl (859.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

conda_share-2.0.1-cp38-cp38-musllinux_1_2_armv7l.whl (882.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

conda_share-2.0.1-cp38-cp38-musllinux_1_2_aarch64.whl (781.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

conda_share-2.0.1-cp38-cp38-manylinux_2_24_x86_64.whl (616.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64

conda_share-2.0.1-cp38-cp38-manylinux_2_24_s390x.whl (650.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

conda_share-2.0.1-cp38-cp38-manylinux_2_24_ppc64le.whl (755.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

conda_share-2.0.1-cp38-cp38-manylinux_2_24_i686.whl (659.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ i686

conda_share-2.0.1-cp38-cp38-manylinux_2_24_armv7l.whl (612.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

conda_share-2.0.1-cp38-cp38-manylinux_2_24_aarch64.whl (599.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARM64

conda_share-2.0.1-cp37-cp37m-musllinux_1_2_x86_64.whl (819.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

conda_share-2.0.1-cp37-cp37m-musllinux_1_2_i686.whl (859.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

conda_share-2.0.1-cp37-cp37m-musllinux_1_2_armv7l.whl (882.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

conda_share-2.0.1-cp37-cp37m-musllinux_1_2_aarch64.whl (780.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

conda_share-2.0.1-cp37-cp37m-manylinux_2_24_s390x.whl (650.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

conda_share-2.0.1-cp37-cp37m-manylinux_2_24_ppc64le.whl (755.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

conda_share-2.0.1-cp37-cp37m-manylinux_2_24_armv7l.whl (612.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

conda_share-2.0.1-cp37-cp37m-manylinux_2_24_aarch64.whl (599.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARM64

File details

Details for the file conda_share-2.0.1.tar.gz.

File metadata

  • Download URL: conda_share-2.0.1.tar.gz
  • Upload date:
  • Size: 50.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.2

File hashes

Hashes for conda_share-2.0.1.tar.gz
Algorithm Hash digest
SHA256 ba8065c20185044247062f6d8ee42a427cd0dabec8bec81e6753253ced0769ef
MD5 30cca04565ad82bf9e07080555baafb5
BLAKE2b-256 45b6a607288a7c3e1d09a3ab718be06358bb2174719fe7e52f92fd6176290962

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc002fb42bef8a1d2446dbe9acd80c767219710655dbdda361f8f5cb7e72eb87
MD5 af348b94b03b20c8a971326923532ac3
BLAKE2b-256 fabfca247192e062b3cdf3bf3364c96ac3140379cdf514656f6f357a9563c77a

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3bb7864bc9cc39dbc543479ab81a5f4d23e967c9bf6420adb54a1281cbbb9123
MD5 e534e85ff9017b864e5385cecc48fdea
BLAKE2b-256 68f8be55aefac691c184302b657c64e0365086c672268e126e9806ea6191fbfa

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5e4b94aa10c94be726d4993c628c808b33bbc4cffeadb93bdecd77321cb8618e
MD5 3f5b475199f97b174ee7346def72594e
BLAKE2b-256 207446257cbd65e3ec573be3768e9ac88e44c865421b7fa08d9190d4a87a304f

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 327f8c804a00e5ce36b7e0732f7c13fbc4bdf3e932692a6d5e894458959d8c01
MD5 d3ead983864a59a82ce1dfd631ea894e
BLAKE2b-256 725baec8714bf42975d5c2c8a1a192a8feea73180ef3c4ab69e2202b43beceae

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 aac357335bc0b6a7f1cd17331887765999147c4dad8151b5b75128069aca4da2
MD5 1031955ad7b8af6a3a6d4925def88354
BLAKE2b-256 7eeddf33d73925c1c4bb9a44b92854c967bb521f775cc49391ce72d0932bfe74

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 940a631b1969c0bc6102dc8ff18c1dd07a509654a506af48af0edf845fdb385f
MD5 85d54a206ed17fd4b60b63c940f736c2
BLAKE2b-256 3ec09d66448230dcac7de20c66ea12e3e1c424c21051a4055b8e590c75cb2b6b

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 5319a13ce2078262401838a16c7cd16c3e1b1da0296a893151ef67c12ccee710
MD5 f8569e9acc7370877c38eb74803f7753
BLAKE2b-256 20bc1e0299ef4c8f2e4298aad27cba1ad511b11dfe1c8a973a7a4f4950302253

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 7be9234418dc3a133426d63d1e65c20b5fdb319c48e70ad2404dae1d1c972f66
MD5 4a3798270215ebd608ab593b153cbe3b
BLAKE2b-256 a3b9f661385cad8c0029ed3625e6759f1e422e44ced47480ea2230975c13deb4

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 357171662c75bda416b4ec3e92cd822bc1a30b14302189623d85b865f2ee0bb3
MD5 89951d8d012043cc94c7b205072aa5a1
BLAKE2b-256 10de7b77fe7664d1e1a0e62e44c3516cf816c6d7d96d6358c93912632b6650ae

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-pp311-pypy311_pp73-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 996e59117f26cd1fa6bc0f9682c2720725311a93b304784cf57d1e7f882cf8d1
MD5 e9306ec372a966cce6a8cf627cb345a0
BLAKE2b-256 f3e0054ce4cca8bab4e8fd53f6538d1dcbf42ff5371d16de07a0013585d21692

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89d6697c790fba9bf8b7fa65e35cc98959361daa577eef09eef44d4a994548ad
MD5 d48d0359fc0645f501b8ebe3ae2b6d5c
BLAKE2b-256 e03a5b4a043c0573052e065523486a0561b2aa1545c39dc627712fb80855d6aa

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed9fe326a2247ddd8610ff8b674b32a355855922299bbf683c6dac173692bc9f
MD5 69046eba6369bc09b6bac735beb04c91
BLAKE2b-256 c9ad890a86316ba6ae3114edab9d6e9f5ddcfdf8dc819c616b06f352da3c8f10

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c6ab2c060ffa0d6a21162fd663197963235ad8ccd97ee272d6a3d1bc686a46fc
MD5 772d495bd2ae658beef2f2d0fdb9b459
BLAKE2b-256 b561f99dbad96a3a25bbc59ba7a234a38a18fd394829c4bcdc485a974f69c244

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b804b132ff96117d19275cbdc1ce5bb519cada51d60367336465e0083e0f483f
MD5 7c653087ac7dbc37447b0626482919b3
BLAKE2b-256 2fa28f899ada19dbd4c9a4a2ac8aedaca153bfa84c0b27e648839143cd9c1424

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314t-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314t-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 5e34e824b1dff9dc7f30363bc93d4c3958ed45e1d638b5fea95d7b3f31ae174e
MD5 ac4cf9d84dbe08f8359d967a59e6430c
BLAKE2b-256 a7d5304a68256c51a5f9ac71617b926a85e7f2b18808681090b623db90e11bb2

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314t-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314t-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 ba0fc45286b8215f54adf577cec7d8b2fe5b6513a92d8cc03cb12407f97256ce
MD5 87ba00a83c679e542dbdfdd4c64e4913
BLAKE2b-256 93a6e4111096b9c4fe3e2d0223f431465256184803dd7b3ed03087189e98cc68

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314t-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314t-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 dde199c2be18d407d5651c1fee0403ce222181820735f7e17a5b4296e0f68f87
MD5 1716f7684116f0e183866b9b03d03a20
BLAKE2b-256 3dd39a7ac64a8298034c86de4c88182c7e9b7c588954022320ca76a8d90fb06c

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314t-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314t-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 53da0ed2e111c68b84a32c6b9e21a03f0c3833658a4d950128a74c4cc7c4545b
MD5 8cb0b3a520202e1202d98a1e40a07b41
BLAKE2b-256 27db944d95aad21d32a5411313e548d1bf06c50d76bb6e8773109040e1f3fb1a

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9b2247dc4dad0a5d1081efdab76e0e6b9cf1a1a6e086ad65a5f08df7c0074958
MD5 51d91ed4aa8e265662f8b6c7ee5d86c4
BLAKE2b-256 f247b41960b9e3a25cc2cbd61244a9c2e5844ec8c239173fa801bd9cdde62786

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 04dfe4bf0cf2b6e1cc2bc1cc2653c729f78572e54d6a4ef9ed97e9552e84a493
MD5 e838dec4927b1504baf60bbae54f045f
BLAKE2b-256 3db1928c66f5a38989a29d52b031efa7c9de416f3374f5ede5ac1e2aeef576dd

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3387840969631d31dd020cf6bdefcaf9831183c6a6bee272b3b2e1d5066efcf2
MD5 2c42937b44167f82168725424aac6039
BLAKE2b-256 31855ca21361b3d6afb798eb120d7ae5ead4de78c8501ad50b542a29fdb480ab

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25706abd240357e4b19def7e1f9aef6c6e52d3fc98d0c79b866b58e2c69eba4a
MD5 694682000fca5d7ce5dde6814ca29c7f
BLAKE2b-256 ed1b99239948dfcf95b3e8687d3235fdb4c4b76b7dad08eaaaacfa53974502aa

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32453ca801069bfc861033cb0b8c8bebab38e53481c3b3f37660bf0889e84863
MD5 7ff99951bb4756d17b790f445c4fe1a9
BLAKE2b-256 252c4c6d6027a8baaf4893042cbd88d0bb0693bb23f42d210b54284f61649239

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92c49d0f0f7952a7a44ae5399e18cb56c17a7e5f954b49c98e411fbaaeb4ee21
MD5 43857efaf108c80e72b290193be6cee3
BLAKE2b-256 7ca593a39a16e26c80337010120328aad2eb37f90342f04080b29673cef2aeda

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 0071dc9d17546117da072ea035858649eccfbee59ca7f1ed727f57a0cec3b535
MD5 7c141849ab5e5fb20afa71cd0478d39b
BLAKE2b-256 51a0ecec35113a982a625fcaf84264328a8860017b6085c56efcd2a6e481069e

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 4e8f3e17744012b09bd6e7f23ecbcc8daf41ff3822603ad05ef0bd16f5c5cb0c
MD5 5afb603d966ca219025ce59d26904516
BLAKE2b-256 bdd229a7d8b3a635076b3b9d7a5b4540709b177c39db94686fe970ef4efc5870

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 a0dfdb2e25304e62d2d2c65383b45361f90b10bf3059c2b297c77c8b744f27f6
MD5 4581f58e1996964d2ddd728335fe13a6
BLAKE2b-256 92d34f496cbd944269c05eafb7ec6268fe2e3ed517d3ada817d5fb646feeb2f7

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314-manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 d088d7630b08014babda6ff2318d5e32d18dd8725bb5be004f3b7fc85621570e
MD5 b243bb27e8bf99f4c03debcd05adca5b
BLAKE2b-256 9656a3b562323abd1625ae3cdf8f9f5ba90003c5231f3d04f3bd33cbbb67f7c1

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 2a7b8ba4d28e934ebfef887e192ad7572494f2afb8f2ade446bc03b57b747c41
MD5 cc77d507a394c50b92991073078c8a4d
BLAKE2b-256 db48e02eee22ac83353e243d4ccc37201cb1228478bc08df2ead94888b7b1c10

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 6344051b9a090b36a90d2b65d9ce234e60104c2d3dd40b38f9cb75ac6f43d394
MD5 8f5f2f2f5063fa61b22f81f28c3411b6
BLAKE2b-256 4bfdfec58fbfbc012e1f5aa783f645ae9177d1439a64e5a1762f08fb9fe17abe

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13bc4a28e053d3303a95e4f7ba4fe154dbc3d2b2b53afbc75f5a59f5cff6de25
MD5 27b6b8ee50527bc0c5b4dce62695597d
BLAKE2b-256 b7e38304731449a1c5dad00ae8633119de3da97f0af4528f205b2847ee61fcb6

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fdd01b282c6d026a3ad16e6099470edbb240c1c9ba44b65a8ded3478428cca70
MD5 691f98646110e0d7539eddf66304ae29
BLAKE2b-256 4a16ec3e7ba50787f458990b38900a689e02eb3ca584cbffb99fc2b8e4627b25

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b761398fd623650d83ba619d688693e2deff0fa7686d93da271c416b79fdee7f
MD5 853ab2f21f957d417bb303dc0b8d7613
BLAKE2b-256 6d94978ecb12e04173aae31187a72e218d93cbb81a405126e10948653dc0d97a

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d8db2c30d68a97848ce28ba7d350ec0bd526e2fa3f01153be21b0aae6495c023
MD5 356e91cb0012b3256251d311129d2eda
BLAKE2b-256 9788fae061199083314bda1de0189ca370d77871c4833d95123a3fab41bdc0f9

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4acf25fd2d840b427caf21dc5fa73802b91360e8195787bea4b5880c66278b4a
MD5 d2ceefd94bb38dc15c75254e70aab29d
BLAKE2b-256 4ed16c8ea7e4db745d8ad61d47ff48c7c525037a73f59461b29277d0868c90e4

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b2667134f3affed4da86bab3b2f48ce3e474d379fce68f206d1a349d0576379
MD5 c61b26d699d686f7616fad2173952e11
BLAKE2b-256 3497d37a6760acfdd063b29d445f0fb1a25efc36223cc735c04048d264b08ad4

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313t-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313t-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 cf3246d9eb9eaf8a2786d38b67de85f163392126e7c1ae6b0fb9033e94fa5883
MD5 c762dde69f0a28ff85524803e61a0fb4
BLAKE2b-256 edb38b04abd201870bef87684be36b858d9774edf2e6995cb121b13c754b0111

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313t-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313t-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 cca92997e2712692245e6a4e86cd295f357d26dc4b274eebfff1eb8d63cd8cc9
MD5 d232afb3b35e6ad51fce0d7806b9ee7d
BLAKE2b-256 3e76e7747bae02a46cdd858b4d9f3a78fdd5a44d036b73ffcf442470be2b6d25

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313t-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313t-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 bd9d47b3e53c20fc8c8f236a784fc92a40dfaab627f40fa8e3be65708b060b9f
MD5 9b97f1ecedfe00a79fd7a55909fd8db8
BLAKE2b-256 8c0a975bd2531d529524ad7cae1dbfae5dc1659db1bea5d32e33a12c528997da

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313t-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313t-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 cb1cc4f60ada649cc1b74a19185cbf0a589a3bbeb8f7260a08982d665e01d49d
MD5 23b13d7156fdd96886f6ea7725ff0755
BLAKE2b-256 5438f4c2113179a05580b0382011be8df58a9e7fd623ab69553ea506668e8826

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1eb4db8cf8a74bb055e74dbfcdf5db909dfe90d0f1a5fafa45004d49d8aafdd6
MD5 ad446b0d584589c56b71996b8177da8a
BLAKE2b-256 b8771ec9e57780d9bf164febeb1491f6bd7dc75b7d88ef3c86fb9c45c5462d30

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 405c13a98d54cd213abe09acbca4cc24b8e242f1b49245713968bbba9039689d
MD5 41e2a4377eeca29383ee8b74af62b7db
BLAKE2b-256 0020120bf184a0b41cf7828ad374717dd994d57e0eaa9bf4e9039a8601030584

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 19c046d98a331b31547b099241bac10c78a9cd4d7a514e1a684f53f5842ee954
MD5 da9ad32fb343dbc35268a124d90b3ea6
BLAKE2b-256 7e3996068bfe09886061009830f091324bbb75d313b784f993c3d2426590b152

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 23c25560a8dd7713c851aba20d6969743fc0a88d6758081c706a187317d42b1f
MD5 a63a4175f6f1cd63cd627b4e525f4aea
BLAKE2b-256 104794298dd597b89a8843f8d2dad4e381a510182b2ea3e1a72da524d5a86d73

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9b29597f478ce0e6b7ea3b5ed651f270c6de590972bb3ea0bd74bbe8a8dfeaf
MD5 d717119a96c40803757e3dc6da7f17c0
BLAKE2b-256 cd15baa2cdd83340d99673e9eb553b48d2b1a37f8984408cc2b1d795675200cb

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 c3a166d286f3226e83291a356c55c88f95b18469457dcda20226ee62188866fa
MD5 8b0f3d237e8663142d8ffce7783ddaa1
BLAKE2b-256 b9a8879eb903ae94f6ff916641461dee0890a63e9af87bccef8bd38d985df20e

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 83929b972bb780e430793b42a5b341db2afa4cb3f4e97e022898a0a0b9b3fc88
MD5 636fc95cce1547990ff97bc91b94c124
BLAKE2b-256 b2c07b8c2accfcb6bf72b8a19ef80758042b96bd9a53cdee53a2447b0761f7ca

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 752535dc803bb4e1eecae5de47eeb77262f399a0fb42ec49cae3302b10a7ca8b
MD5 11ea4ebfc8dd7dbc294c14dca4a38741
BLAKE2b-256 2f9d3cc140d5347587551428215d03b28fc87b637122bfa96d3f72c556ad1f35

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313-manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 4e5de8ad25c59930a37ac52fa8a9ffeee064a77a156f7a3c49b1b5c34925e2a0
MD5 66aabee8f09add66fca89821150320b7
BLAKE2b-256 bec08daa10ca9b557837ca50a63a8d607dd1f90b9d0eb816528e28707ebe7922

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 e81ab6cb8f3c06d055f2008b9c8b6a579bc0c6840b102cb8c277fb88250bd417
MD5 4fc3ffe0265ae666055ca762f7b91374
BLAKE2b-256 cfb2b0437c8fb3c17798c95dbe39836fa83d3473ef5fc7a6f18a729dd37b0f7e

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 9fd535349fb8feac921e3a7b4a3e05924e7da044d8c611ada918282b8f7cfb51
MD5 220343f4ba72420b9eeee5a3f8af4f02
BLAKE2b-256 519dbf6ec4388a7c85bb58ec7651c1a4fcd853414189f53c4f3d74c464682a88

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1e6104c3a54296634c380416d8d7b8e6b9f502fcafdc5ba1d7a19b494c2d790
MD5 7b26ab1d65b0af1b76403cbebbd99700
BLAKE2b-256 bf78d99ae5a9f032c1f398d746bada5cf1e8bf81b4a3ce9224c248ad1ab04eaa

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 437ad08c7a63816b43035a9f3e4d29df5d583c6f3f23112885df191d350601bc
MD5 00891410e91a6a7f345785f08571fbd6
BLAKE2b-256 a722898efa25d63223b14d1c3d0a65a9463804cf507cfed69917d6187259f0ac

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dc3ff91889d9e3a5dba1e35edce32de75cfd24900b8de15eb3b6ed0a040c3075
MD5 c03e4776f77931c983ad62b72f9379c1
BLAKE2b-256 439110a4b77c5a562a8370113746a76093d47734c454a995c764f633465e060c

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e639c56767107216f4dc1a2cf80629191394697f84d6ce07b1fbf3fa720226c7
MD5 95dce2f319c89210dad062ef9f176b05
BLAKE2b-256 1570d8e91785d50096bf50dcece73710de6c99d826f06cabeaaa733b71fc67d5

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c538c8c02c85bbbe52ca764500526a37b3ad2818a87a9eba0ce830097596b5e5
MD5 1c020ddd567ef71cfa04d3db6520a1e5
BLAKE2b-256 7a02b228962d9ee582c53067282d6fd89fac0f2c2d9e878849191290aa5b9703

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ae6b815f9e1aab037824d453539b3391289fd6aa09b411fb18bee3f1abfa61d
MD5 f31a374b16f0b75196dde3114f57bb7c
BLAKE2b-256 1e2b88e68c039a9aa4b297b5a35663cc33be6855c227aea5a2835bb59674735f

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12eb99eafa46d59f9e89d8833d87fac47fbddbe5116de9c8812e348c5e67f147
MD5 2f1ead83123dec2b2244aca9d79848ea
BLAKE2b-256 0656c03dca1ea4938a155bab5ba1c9a6acf3a65e6b5e7b21d5f9f862cbdb6a14

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp312-cp312-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp312-cp312-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 c9ba183237d39b9e10ab85db514fb3e020e255b4d2dbe0929e31c22e6e52c35b
MD5 aaf02122fd97e580e87506dbd9594528
BLAKE2b-256 64fbf3f72c4970d155ec4a63449c7030fbf2980ed3ca1702b5a5aae9b509e785

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp312-cp312-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp312-cp312-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 2bdfb19bf2e9b662a3fb3c1e551e00b6ce3ab901aa4c1b44e7e0a37d326c38fd
MD5 f96cd91c5383359eb0cf49223899f3c2
BLAKE2b-256 8cd71b95d6f0c253c7e59b4198aaaa73d4ca347aaff08ff928e78866ba60579c

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp312-cp312-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp312-cp312-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 0a7f97404292ac2e84d48f2eafd2c84fdca9124ea07293a303bfe7e67b419738
MD5 4f87b0bd0e24bfbe37b03e3db8566550
BLAKE2b-256 417d737afa2c4662353e0bb906796f4450e146179a000f22ff2429077e68e586

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp312-cp312-manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp312-cp312-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 505a9d709ab1c1821270d9b8f91d14d2d1564a04b71d2c40d87b471fa45c2721
MD5 7cae668ffa2b0b75dd7bd5857d80d685
BLAKE2b-256 28d0ce8c0ceb765f0ce62ee31fc34260dd511aac8bc00dfd4c7007955e6712d6

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp312-cp312-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp312-cp312-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 c17e9fa0db2ab9ccd40ff382d786d2843770167e7f82988c6258feea189890ca
MD5 65783c651a4707e10d348a419ca60eb8
BLAKE2b-256 d7fd9b7748d731f21c8c23edca384bbbe48293059ce7b111ff59143cd2268170

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp312-cp312-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp312-cp312-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 439a7fa69eeeb4e6230e1c0d311282171dd3e20bcd13b2fe51ba5ab13f926578
MD5 d0ad62b4749b949039949508dd1e5484
BLAKE2b-256 8ee809a0f3a5e6b1fd14ce5a192fb00d3ba3d46c5fb25f85f42af5d7db3897b9

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63d6d074194a137147e6072fc42692e30df106eefd1fe31364498ae53c32ea61
MD5 32425e69d570849b4de0f2945744cb91
BLAKE2b-256 b282182ea70c30559f6ca21d742010a8fc170149c84acb6679b0e7cd3fbc1f92

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c1e86f42431edd3705f1914dbd21fa1482b46858f8076974fa4b84c0ca850466
MD5 34f359e9509cb52e644654f43cec42f0
BLAKE2b-256 54695eea6ce32a8708c4b155ac36d2001a0658ee927288d747d76d2e08620a04

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 648a8aa28c7953a958a7ccd1009cca464dadcde182cf190e452cd3a3e38ea033
MD5 73ca3fdc07ad63770d4dd606af3dbc1a
BLAKE2b-256 c6c0b0dd3272529f8ac8d5f6a165d66c33748e73bef2efe1e9394d487cfb4975

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 901d6ec83663383b0cafe18354709833c021bb035d194236728ba449ec4cf995
MD5 2a649450ace979627020d122ce283826
BLAKE2b-256 c7dad089a63ebc4c3f4bf870af85c65d8dd1306e3a8e8b59d36acb33aa7a79d0

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 74050aa04e099de2bdbc2020df7bca405af643053117937659d7f05163f4f448
MD5 8da1cdac045037dbf79691734e314d08
BLAKE2b-256 c1a4871b108b997418b2583257c4c013975bfccbdd37889cc87e5ab21a2e0ebf

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f0733a71928f171e23a4a002c52f7007b21bbfb617ae07bf594d8bf435238d0d
MD5 e73d547e49fe967eb5e6c5b5f58ab97f
BLAKE2b-256 078547dc058ec3e904623caf7131136e9d028914b8c37870762233109b2864d6

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c70680ca8da664496b3d564e77bcee3ae87d88ecc52417da72447fca145f23bc
MD5 8983484094852d5a8a6adf688be0d9fa
BLAKE2b-256 14c0ba4d57cae691dba65619ce89a7901d7ef6b74fc18d1bebf42243ae530657

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp311-cp311-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp311-cp311-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 7e30c8dae0e5082078341287be11809a0869f70cd0a76ab64f26250e0a040df7
MD5 ef9f03ea29fcbde49e0a9ee842a615de
BLAKE2b-256 f12e724f8aff1129266abdc74ac729846b74873be7edb716a93a06e431b0fe5e

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp311-cp311-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 e7db6a8cf776c2a3e5abb5c95512da50c612196bc00ca1b8801050756838e345
MD5 de27eb27d0b75646e85e247fc53df3ee
BLAKE2b-256 dce4f072919e7c1b1e798a507f65183f5397ed017450636a1c87054bb4b97ff6

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp311-cp311-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 2abf902194c80584c2838e3080508be566b0f77371c8833d38a865a78cdfdce9
MD5 0ae59823acaff60bfe0b79faa4cef863
BLAKE2b-256 a41cb018a156769375fd469e1a12da44aad7bc60e40831fc4f7ee924577e7a0b

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp311-cp311-manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp311-cp311-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 6197aa4595fec734433b7d2049c6a8cb4c81418d00c55d892f5252223e8a783a
MD5 707eb5da4a531b90df318bf7a6601d04
BLAKE2b-256 23e945892d451512025c96a86a2a8a6e6bbe587c81f8f9551c4c974376de9f08

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp311-cp311-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 2bb5ddecf6460134bcd36692b2a0b1b8b86900364a38b85a7ee06ff7b6e5d181
MD5 47ba96ee7e235e86bc54ca8a58815803
BLAKE2b-256 59f1c3ed5ea7d8655786d98f03a5db8786a9733658faf5e917c5fb3bf855ece1

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp311-cp311-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp311-cp311-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 262c9fee9d39ed9cf2a0ae898021bec9dbfa1e5ea5875f2792a62fd1aaa33f26
MD5 373acebe49e40810b8dd233bad623a83
BLAKE2b-256 5b4e66f04c2681ed396e49934b0e95e6b4d6102b8ad105997d133b2f3aa1fa90

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edc869c9292c2e0f173b1759170e029539e03bd58ec4173bcd0e3581050680bf
MD5 2a2b931188ccbc8ef7c060583c4c369a
BLAKE2b-256 dfc16c3b6ebfd7f8afaa70452dc028456f29f84b7f49d44f5b8b9d08cd725b23

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0f30a37cf935552850bc4450118a2a050bf27f633f8189d079e0d83a27fd2360
MD5 88cb0a727dfe85385316c67942415fc2
BLAKE2b-256 a0b180f27144d9f96054cbdbb5dd869be1e2266e1695f96f5a48059bd3dfaa40

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6ec151dd388da6621dfee39502e8316d28ae345c27cf80463cd1f59996986089
MD5 23caf6f8f9a63c10f86815e1aa29f4ec
BLAKE2b-256 1cd5e3a740ac4447ae403977aa76fedf3624946c823e499b08ddb98b564646d3

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d79bd7c0439f58d3c0419c65eb5bbbcfb82d7fc4276d2b3ad20fa5d6a5c0281
MD5 cce78a470f0d9753ca8bfda2e3ccdb87
BLAKE2b-256 03f50544bc127030fdbe5e1cf11723d7f739e0f0c81aaa8507016675fa9e07f6

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cdaf7d39bc9ce5861b02efa8b5faccfcba88bdca5eb8e7f23ace7dea5b59dd83
MD5 aaf4829473c7e453f0e53b2fbf0333ab
BLAKE2b-256 54a42ab7ec8fb2b4bc976847649ba6e8ac291e200d4abeeab95f52591f79559f

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 895949b8728212a2e95a0bbb7be01218922c2fd561c4fcf55ddfdcfe7502ab89
MD5 98699412c9f7565c4ead14c7cff4eb31
BLAKE2b-256 4c2b5baca510514323d172c6669a0feef56db35212da43bda4ef0c0a395fe00c

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e14b1056c8edd5ed8e89b2fe1906115e82c8518d157f90b04166f2620df8c69
MD5 f03f8a42d758ad8c24bb781d1c819d1c
BLAKE2b-256 db5c88a0846ded7dbb71a48f1228d7fb28e9baaf71d3c695c0e9f6406fa088a1

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp310-cp310-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp310-cp310-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 25dc99d4c664c4ff0d10a6c5e0451e5458788199f47127267d652f1637de60fe
MD5 56f0f07d613191efa758d897b8268ca9
BLAKE2b-256 aad09dee3fb8d3a7bcc37e143b8757ff43d232d4eed6badac69cdd0a4963e8ae

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp310-cp310-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 f5d73e5c5e9fa7a4b09a285b0afcc59f4e0388461b969c300fa290a7ac222c63
MD5 d87a4de730ed60c052cb8b1a7f83a26b
BLAKE2b-256 5ec59a9a5287161de5f929376b4302dc13ab6917b5c1b588bf26597cb2b7215e

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp310-cp310-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 5f58fd64a65af9bd62c90492c69b0148184b7bca1e0e637d8cde07b4b75ffb85
MD5 8f4208c761fe6e2e5c68c09e29469473
BLAKE2b-256 94493c4c84777b17a820df0842bdfe9bb66ff9624f881f5dc1e0a0f9ad9134ce

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp310-cp310-manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp310-cp310-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 27b3f6a7cfdb25104585ff956c1b391541eadabe4aa803b0be0c3a709c8e9842
MD5 6dacd68caea0e24279e93ffa83e6517f
BLAKE2b-256 cccf3e3c093e7ec6dc60ba4f2f951d7492d5b403a4035e49237aa955a3b1d3ee

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp310-cp310-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 e15f5929501b7533c158b8d47956e887ba77ac3c34d6273d94f2e4f9f59c7fb8
MD5 67408530c2aed1dd0e0a0c05d49e35e1
BLAKE2b-256 e9f52549f9d4b14db974b361c1a6e22b8c2ede10e9e6f2e8849030da9552af7a

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp310-cp310-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp310-cp310-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 5d1f551eef72776102133bd15e3b7a09cf212e8485b8c49e6310aed7aa09bcb0
MD5 a8c28b20d25b4ddc4fa236c1f1a9c1cc
BLAKE2b-256 3ca7a448e11c03e1e03f8ee0fc9a096f3e6f8ed5c831b626006277475f61dcdc

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c0c9b9ee2dc350cbedefbc91610638d5beaf4882796cc8a99b6f36a7b7fecc3a
MD5 0eae958b0fe9c37299914429ca061c44
BLAKE2b-256 1a376e98bf252a56347caf0062c0f56ac7151192e0133173daaeb6434b3eb521

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5be541e8c56de57e74f4d3690fd8bfe247c9e9b6d272e34b4e23c5180717a336
MD5 4733e2ef8dd6df4a3dce188e92e89843
BLAKE2b-256 8cc7642b92fdb885b37f3fdbffb1436490d3131e72e473d57b5d24f8be9940f9

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed34c4a0df4f76892c713556211b54bf2eded5893133d0380f95e16dce49cc5d
MD5 a71f91c9b158c7b86e21f5a7ca6bd74a
BLAKE2b-256 80ba5670d8851d9115944827dcf14e91ff6c01a017faec61813a1cd063798e4d

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d011c2ff86ac6311a5430309a356b6c3d33b99b879b3679bacb9f0e255e3ebda
MD5 845c973898678f1c503f4fc602d25859
BLAKE2b-256 c02084a339cdcff5cf33699ba5d2f9b1bb1952eeadbab0c5b14795a45ca3930f

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87e7c91975bb6692294088aa42b50f626a8de045cba2168dc231d44766de8462
MD5 aa42a8986d78a67557abcb0bcd11d595
BLAKE2b-256 a365039ecec1100f5535d6df1f472abbc61d4668b8156a9de9d3b2dc2e9303e6

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp39-cp39-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 5d52e987a6932211703a07e5d36eb895773e051cdf9e8389655beceeebba6fc3
MD5 747c58338a2c23a8ea5719219a9a8372
BLAKE2b-256 cb433ba832f23da77374945722f2ed8660fc59d161287ca282d018ad2395fc43

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp39-cp39-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 8aff52aaa039bf22d36eaa0dd99555b922debfd38546b613ff9f02b53cebe498
MD5 0f4c3f940e9143e689b33fdf42d9e7db
BLAKE2b-256 7347b287b394802ee8182978b511eafd966ce4796a0e7d9204e0d28d9e80ed1f

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp39-cp39-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 0b25196593d123923e3df61674424737365368a1764cc678cb0c78803752f01b
MD5 c4aab071654851dbf67f5a67745d9d27
BLAKE2b-256 95af2f435948e2d1ffa9bbeff3b312e8c27ce9823cf4464069ed5f1480d39f50

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp39-cp39-manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp39-cp39-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 f7827aceadc6162d5584ee7657efac21985452c3997038cb4c3d5ed0a9e7ae24
MD5 62507ab673543c346ce8b5367a95b5fb
BLAKE2b-256 1f0395f84f97664c89a01baec7d44382cbe7b168d4bb3d2a907af7b307bca33d

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp39-cp39-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 4e7f9a9f1ca12251db93bfbbbdc51004d4e18288801731d56070b853cecb663b
MD5 2f144e15560f006753fab558c1395391
BLAKE2b-256 88c9732bf5a7405697333a969c7b3c5006854db17d52c4a2c319603333bcedea

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp39-cp39-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 040928ce20c49bed95939268f99cb965bff28480620416a2959c695d57079b99
MD5 4f9decdd8a57b596e219471108ad2666
BLAKE2b-256 9034e227874f9160a2a04c94cf0b80f5e213cd4660bfe77a4ae32f6d07162d26

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2f6d6ed3fa2e4284d42edc9b491fd75a19d309bec9ad6736e0d5317562defef
MD5 578d271ab1fe09c553a88502620c4f8f
BLAKE2b-256 c39d756fb718ba5f78a5efd817e8022e27cb32b592fd07d9416a80ffb0800cd1

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d60d120a3229ada0f0b6b2182868d091bc63de8e290be9366ecbc6e9b967577
MD5 b8a39806eb259c67b480c8e963ecd1ff
BLAKE2b-256 0fd5653291cece434ab85ac302b22ba1414dc563b2fde27e884b16573ccbf46e

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32546600fc93cfbba503abb50eaf31ad7f940b7ec88dc61a8ae844db01a7ea00
MD5 638ebc6959c59de918a9bbfe345ea2be
BLAKE2b-256 537c2eab095b65147c49d76e165bcee3ad3885f0834d588f5a0ecb17d33c7764

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 665a8a1efd7d9def7a87d48fa3d1b0ddf127ae73d4969cc7c755afc7e765ac84
MD5 c1366f5fd86f53d5e206627827066404
BLAKE2b-256 a1ce837a2fe3f1dac855298f68500450b8375b2bff9933ae76cd10e263ffae9c

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp38-cp38-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp38-cp38-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 d810caabdc6bc6d63e8c3ca121f51afe9e8beeee6e192f53add4c78eb5c7a430
MD5 d2ba6b15e53f1d0c4310c58f9d6ea603
BLAKE2b-256 52a888e8ff1a8463ad57485c2256804eecd53f21d05ad69e37dd8dcc88fd301c

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp38-cp38-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 94f7f0355756ddefd54f41a67873bdbbd99dc5c9e09b41519651a1d4bc245fba
MD5 4eb5f09fdccc453c18db4b457d51d904
BLAKE2b-256 488b97cecfd96967c5c181902044a81f9ce03c2cdd6e5160dd4dc8b3f3ff1a1e

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp38-cp38-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 ee9cbc72e44795cafcc775dc60dd841be00197f4bf96f07ec6efad62bf36e1da
MD5 766952a4b5b7cb81801091240b7a62b1
BLAKE2b-256 5e1ca080b516a477805ba577284c6a1dd62df19b32b454a8fa6db99d2e313846

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp38-cp38-manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp38-cp38-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 b28cdcf8b1b9b981ba8e6c95cb68c30fc70aeb8e3f6280b50471431a13408948
MD5 ce4f78f206d9249af13ed37594c9b4b1
BLAKE2b-256 bc2adcea233e5e9d717355d8aaf3f22821d004a59c1706941e4d3720b1b7778e

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp38-cp38-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 65e47fc8b6025cbe2d5ea086a6374ed89cd8f21a65e420631031f4ebfade12d0
MD5 339a05469f1403158dc6b74477602d25
BLAKE2b-256 7a0fa155b258727b77c7cf66da1e90cb680648076ebd5348831c62d80f4639e9

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp38-cp38-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp38-cp38-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 3597fbf7b7dcad0022136627ed62c0ff775dbc21426a81b01f3a5734d12140ec
MD5 948b557db7c54a04942c2d68b65ce6df
BLAKE2b-256 d0e43bcac16d9175a36bb0491e16aeb8e7fe54aabb10ea2d95bddc4399149d37

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 850fbb8f223f750ff65eaf82057a063a07625bdc05c7d6e5fd34f417a15d9894
MD5 c7234efe8dd6b1b3cd6fd873c0f1838f
BLAKE2b-256 3e871dad7fe3deca689c5da533228af5adb141bcd3c0793d0fc0b6ba89402b1f

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7fe78cb3a931dd4545dd5cf81dd7cff3cdf76165e482bc4ee0903063c41e3cb1
MD5 7d4153cd02a633c93627cdb4ab2e169e
BLAKE2b-256 a843ddc52a6a905530af5a34aa4d0a12e28b668b62e51c27948a9f9543f51c4b

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 75f59ec2e91531df4aa25ea6e495d56dd7f6389cf25c6cd394960b544263e026
MD5 05d887bd64cd7fb76c506099610c4b84
BLAKE2b-256 b5adf5ba2ee973c963e50ab8ef9b532313d161a1cb124b556e9da5b73152acae

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61b1e8f7efaf36656c900079bd83ced97750706dcc7ecfb9e571e876b1804b69
MD5 9937f6cde6d369dad30d4275ff1f0d08
BLAKE2b-256 db7dfaa7aab03edb35da9e09f9b621353d1f5d5756d90b3b91199000322ba315

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp37-cp37m-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 54285d02629c01453c732f5866a34badc2d8a2e3f59c51792b9e70d2d2774be1
MD5 c84d390078045a4edebcf17537e50b0d
BLAKE2b-256 868bbad3bec3045e1a61894ebf7298fc7391cfb2041608edcebc8e5f61fe1ec5

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp37-cp37m-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 03c2420f9639a3a82808bebf04fb396c7da2a62f07af667bc29bb89fc3844488
MD5 3be386753ca39a864c221ecb746abf73
BLAKE2b-256 1f2cb717f1f539e60818d2c92ec042597a3e3d48ec35f1821e266b82d34009b3

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp37-cp37m-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 ba60a8c8a996bd7b8c878e1dd75cf1b7404704b5d12d53b82ff872aeee91dc58
MD5 fe343d7f305bdbe9e7f89e45c9700c4c
BLAKE2b-256 623f3e9e870768ce39a4a9fa83f6d982d14cb9f217c801b60a3105164ebdc15f

See more details on using hashes here.

File details

Details for the file conda_share-2.0.1-cp37-cp37m-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for conda_share-2.0.1-cp37-cp37m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 2ccdfc2f9400df5f6ac93ffbdc70d890efb6fd519df54735f85775905a32551d
MD5 60761a2171c030d087adfcf640995837
BLAKE2b-256 fefb1dad42cac9b4f100dfe5f7a4feea375419e45eb2439bf065e1611ab1318a

See more details on using hashes here.

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