pycdfpp 0.7.6
pip install pycdfpp
Released:
A modern C++ header only cdf library
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT License Copyright (c) 2024 Laboratory of Plasma Physics, Ecole Polytechnique, CNRS, Sorbonne Un...)
- Author: Alexis Jeandet
- Requires: Python >=3.8
Classifiers
- Development Status
- Intended Audience
- License
- Natural Language
- Programming Language
Project description
Python packages
Linux x86_64 | Windows x86_64 | MacOs x86_64 | MacOs ARM64 |
---|---|---|---|
Unit Tests
Linux x86_64 | Windows x86_64 | MacOs x86_64 |
---|---|---|
CDFpp (CDF++)
A NASA's CDF modern C++ library. This is not a C++ wrapper but a full C++ implementation. Why? CDF files are still used for space physics missions but few implementations are available. The main one is NASA's C implementation available here but it lacks multi-threads support (global shared state), has an old C interface and has a license which isn't compatible with most Linux distributions policy. There are also Java and Python implementations which are not usable in C++.
List of features and roadmap:
- CDF reading
- read files from cdf version 2.2 to 3.x
- read uncompressed file headers
- read uncompressed attributes
- read uncompressed variables
- read variable attributes
- loads cdf files from memory (std::vector or char*)
- handles both row and column major files
- read variables with nested VXRs
- read compressed files (GZip, RLE)
- read compressed variables (GZip, RLE)
- read UTF-8 encoded files
- read ISO 8859-1(Latin-1) encoded files (converts to UTF-8 on the fly)
- variables values lazy loading
- decode DEC's floating point encoding (Itanium, ALPHA and VAX)
- pad values
- CDF writing
- write uncompressed headers
- write uncompressed attributes
- write uncompressed variables
- write compressed variables
- write compressed files
- pad values
- General features
- uses libdeflate for faster GZip decompression
- highly optimized CDF reads (up to ~4GB/s read speed from disk)
- handle leap seconds
- Python wrappers
- Documentation
- Examples (see below)
- Benchmarks
If you want to understand how it works, how to use the code or what works, you may have to read tests.
Installing
From PyPi
python3 -m pip install --user pycdfpp
From sources
meson build
cd build
ninja
sudo ninja install
Or if youl want to build a Python wheel:
python -m build .
# resulting wheel will be located into dist folder
Basic usage
Python
Reading CDF files
Basic example from a local file:
import pycdfpp
cdf = pycdfpp.load("some_cdf.cdf")
cdf_var_data = cdf["var_name"].values #builds a numpy view or a list of strings
attribute_name_first_value = cdf.attributes['attribute_name'][0]
Note that you can also load in memory files:
import pycdfpp
import requests
import matplotlib.pyplot as plt
tha_l2_fgm = pycdfpp.load(requests.get("https://spdf.gsfc.nasa.gov/pub/data/themis/tha/l2/fgm/2016/tha_l2_fgm_20160101_v01.cdf").content)
plt.plot(tha_l2_fgm["tha_fgl_gsm"])
plt.show()
Buffer protocol support:
import pycdfpp
import requests
import xarray as xr
import matplotlib.pyplot as plt
tha_l2_fgm = pycdfpp.load(requests.get("https://spdf.gsfc.nasa.gov/pub/data/themis/tha/l2/fgm/2016/tha_l2_fgm_20160101_v01.cdf").content)
xr.DataArray(tha_l2_fgm['tha_fgl_gsm'], dims=['time', 'components'], coords={'time':tha_l2_fgm['tha_fgl_time'].values, 'components':['x', 'y', 'z']}).plot.line(x='time')
plt.show()
# Works with matplotlib directly too
plt.plot(tha_l2_fgm['tha_fgl_time'], tha_l2_fgm['tha_fgl_gsm'])
plt.show()
Datetimes handling:
import pycdfpp
import os
# Due to an issue with pybind11 you have to force your timezone to UTC for
# datetime conversion (not necessary for numpy datetime64)
os.environ['TZ']='UTC'
mms2_fgm_srvy = pycdfpp.load("mms2_fgm_srvy_l2_20200201_v5.230.0.cdf")
# to convert any CDF variable holding any time type to python datetime:
epoch_dt = pycdfpp.to_datetime(mms2_fgm_srvy["Epoch"])
# same with numpy datetime64:
epoch_dt64 = pycdfpp.to_datetime64(mms2_fgm_srvy["Epoch"])
# note that using datetime64 is ~100x faster than datetime (~2ns/element on an average laptop)
Writing CDF files
Creating a basic CDF file:
import pycdfpp
import numpy as np
from datetime import datetime
cdf = pycdfpp.CDF()
cdf.add_attribute("some attribute", [[1,2,3], [datetime(2018,1,1), datetime(2018,1,2)], "hello\nworld"])
cdf.add_variable(f"some variable", values=np.ones((10),dtype=np.float64))
pycdfpp.save(cdf, "some_cdf.cdf")
C++
#include "cdf-io/cdf-io.hpp"
#include <iostream>
std::ostream& operator<<(std::ostream& os, const cdf::Variable::shape_t& shape)
{
os << "(";
for (auto i = 0; i < static_cast<int>(std::size(shape)) - 1; i++)
os << shape[i] << ',';
if (std::size(shape) >= 1)
os << shape[std::size(shape) - 1];
os << ")";
return os;
}
int main(int argc, char** argv)
{
auto path = std::string(DATA_PATH) + "/a_cdf.cdf";
// cdf::io::load returns a optional<CDF>
if (const auto my_cdf = cdf::io::load(path); my_cdf)
{
std::cout << "Attribute list:" << std::endl;
for (const auto& [name, attribute] : my_cdf->attributes)
{
std::cout << "\t" << name << std::endl;
}
std::cout << "Variable list:" << std::endl;
for (const auto& [name, variable] : my_cdf->variables)
{
std::cout << "\t" << name << " shape:" << variable.shape() << std::endl;
}
return 0;
}
return -1;
}
caveats
- NRV variables shape, in order to expose a consistent shape, PyCDFpp exposes the reccord count as first dimension and thus its value will be either 0 or 1 (0 mean empty variable).
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT License Copyright (c) 2024 Laboratory of Plasma Physics, Ecole Polytechnique, CNRS, Sorbonne Un...)
- Author: Alexis Jeandet
- Requires: Python >=3.8
Classifiers
- Development Status
- Intended Audience
- License
- Natural Language
- Programming Language
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ ARM64
Uploaded
PyPy
macOS 11.0+ ARM64
Uploaded
PyPy
macOS 10.15+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ ARM64
Uploaded
PyPy
macOS 11.0+ ARM64
Uploaded
PyPy
macOS 10.15+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ ARM64
Uploaded
PyPy
macOS 11.0+ ARM64
Uploaded
PyPy
macOS 10.15+ x86-64
Uploaded
CPython 3.13
Windows x86-64
Uploaded
CPython 3.13
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.13
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.13
macOS 11.0+ ARM64
Uploaded
CPython 3.13
macOS 10.15+ x86-64
Uploaded
CPython 3.12
Windows x86-64
Uploaded
CPython 3.12
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.12
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.12
macOS 11.0+ ARM64
Uploaded
CPython 3.12
macOS 10.15+ x86-64
Uploaded
CPython 3.11
Windows x86-64
Uploaded
CPython 3.11
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.11
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.11
macOS 11.0+ ARM64
Uploaded
CPython 3.11
macOS 10.15+ x86-64
Uploaded
CPython 3.10
Windows x86-64
Uploaded
CPython 3.10
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.10
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.10
macOS 11.0+ ARM64
Uploaded
CPython 3.10
macOS 10.15+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.9
macOS 11.0+ ARM64
Uploaded
CPython 3.9
macOS 10.15+ x86-64
Uploaded
CPython 3.8
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.8
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.8
macOS 11.0+ ARM64
Uploaded
CPython 3.8
macOS 10.15+ x86-64
File details
Details for the file pycdfpp-0.7.6.tar.gz
.
File metadata
- Download URL: pycdfpp-0.7.6.tar.gz
- Upload date:
- Size: 1.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a550f72f62682d27ea5f63acb0b9a956f048f7525df332c2544a57cd5f78161 |
|
MD5 | 0a12ab05095a5f06d9d56a0b02cf9c18 |
|
BLAKE2b-256 | 82dff3ab4414a63ed6b2e4ca1f29d22c9c9e1475df720324571f0362bb838d9b |
File details
Details for the file pycdfpp-0.7.6-pp310-pypy310_pp73-win_amd64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 443.9 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb52698d2efc9c53cf0429c83324c611125edccbb6e0a80bbc5b6066fb678788 |
|
MD5 | 7bf27786fb3f9182cf5c9d9f0de01597 |
|
BLAKE2b-256 | b2581affa792894772f1641f71f22e7710f1a977074137aa5c124632e1e7b585 |
File details
Details for the file pycdfpp-0.7.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 861.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ba8a861ed1092f61be1b5dfc4ce2cea472e153c47416b55a3de37f1d25afccc |
|
MD5 | fef739feb272fdc5180721a1aa14be3a |
|
BLAKE2b-256 | 0cfa7d3f4f046b26dd9b3ad30ef1cec5b5c9b4f1d8964bfd5805facee6d7af5d |
File details
Details for the file pycdfpp-0.7.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 815.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c4603d8cc0534b379c683c1fd554d186b489f9bfc11f9ad8043ec9ac2eb4316 |
|
MD5 | 281e8045ad40f51e3c545c17107213a5 |
|
BLAKE2b-256 | e199181ad56a9cf536a8e69c8c4fba3a62417ae7d55628f3501d1a94f47664ca |
File details
Details for the file pycdfpp-0.7.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 667.4 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b1a2048f8ef71a8188e49d07b97ac7e81f0c5d132c5a045801ab0ee4c05ee705 |
|
MD5 | 6b4170e7c9f2f594f1e5ec52a02492b8 |
|
BLAKE2b-256 | a951cee365a568e9f00890ad5d92dd0eaf3676fdf294a265d342a8c2c87f63a8 |
File details
Details for the file pycdfpp-0.7.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 716.9 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ca0dfa87639a06260bf7490c6f09d3d03dab9ba3e135aa996f628ce955e212b |
|
MD5 | 50944523045452d9d38e42c32c5080fe |
|
BLAKE2b-256 | c32e918e1bcdbb0b5db3a2e0e7b09e52117e1f68ddad937573eb27a1f735f653 |
File details
Details for the file pycdfpp-0.7.6-pp39-pypy39_pp73-win_amd64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-pp39-pypy39_pp73-win_amd64.whl
- Upload date:
- Size: 444.6 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2f28d7993994d4556410b883385c18721d2d5e659e03954646774baa09ebe06 |
|
MD5 | ead250484187a0ee3eb3742c0fd2fcbb |
|
BLAKE2b-256 | 82bc3cfdc854f18a5a3a8aa151fbc32e0a94afbf80ef82bc1b49d248c4b0b42f |
File details
Details for the file pycdfpp-0.7.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 861.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5da23d8fc8af12355d3bad0c4993c48a5a084e0ef10f7cf41bb8d1f5ea1be5ad |
|
MD5 | c881e532bd3bcc79a7de99565320f55c |
|
BLAKE2b-256 | cd3643b77c2fd3b75b2b90443f6017465cff14cc39415e2d5f7029290758191c |
File details
Details for the file pycdfpp-0.7.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 815.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b24fa40791e242bf8d7d308acacfe8838fa9e39b292e0f0cddb3f8cc5ce4e91 |
|
MD5 | 722f1f17a5420996c9de2c5a10532860 |
|
BLAKE2b-256 | 2dc97da7cbe83fa6f03daa914d73e0e5a824d3960c36706b5947c4c152cdd911 |
File details
Details for the file pycdfpp-0.7.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 667.4 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 480ed63c5016f36d25edd41d1e4a9fc46ab2f0a526e55e6d982dd396028d1518 |
|
MD5 | 1aea5823e92f2df4823c191d8107ba86 |
|
BLAKE2b-256 | b0e235adfb6b097f7217348cb763e5b6acb00fe269e6de44df053cbf21019567 |
File details
Details for the file pycdfpp-0.7.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 717.0 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17aea3b6b655436f37106d1ab1da08394f26898bfd074e6d1ec13adbb158bb36 |
|
MD5 | 0551002c09769818f8ebe59c1628441c |
|
BLAKE2b-256 | 5c9318f1e13e90146bb66907f9b7a49369621211e2ed0b1e8909043d200297e4 |
File details
Details for the file pycdfpp-0.7.6-pp38-pypy38_pp73-win_amd64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-pp38-pypy38_pp73-win_amd64.whl
- Upload date:
- Size: 444.5 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bc9e0c57122a1eb6e9dcc999cb7e663905fc71753c6d626639b719a2e6ddbf7 |
|
MD5 | 01e0cee237c50a8deeedb11ecfae9d23 |
|
BLAKE2b-256 | 5fe18b7b0843ad23ee09065007d020122c8930c8ee35d5002d0c0ea5e8d495d6 |
File details
Details for the file pycdfpp-0.7.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 861.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7610968965fd21efd7e2f8e975b9f8367f484a5912f5bc0bd742348f4d152c6 |
|
MD5 | 06756814421b697ede4b4281ad34d822 |
|
BLAKE2b-256 | e9b4cede7d012fe20506778b8f258e4c6f9c28cfa8cce77940630fdce658bc12 |
File details
Details for the file pycdfpp-0.7.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 815.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6dc637a2df50f2c37f27bce0b0bc901deab4c15fe87f41cfdff767bdc05f50c |
|
MD5 | de816976b2a407e10e97ddf639c701bd |
|
BLAKE2b-256 | 5641f9499c06128902bf8ee57de00c401377d146f39754ed3c28105521b56fe0 |
File details
Details for the file pycdfpp-0.7.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 667.4 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52d802caf5169e33e4f1f749c9cf512e4bfd4362e9c3e7f264fb50e6dcde2704 |
|
MD5 | 46906fcd725d1cbf93b38dbd2baee70b |
|
BLAKE2b-256 | e0719cf17d5967191e1c8be423b5cbd686b51d1c07e1cd21b4cec7caccdbaf99 |
File details
Details for the file pycdfpp-0.7.6-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 717.0 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f90c88fa99e6c0b58975b4f9858d27850499447d52f9136568367575b353e1d |
|
MD5 | 1c2d3fbbb692827f174d184bf59b0d41 |
|
BLAKE2b-256 | c8571496d4fff1b85af09b3be3a561cbabec43acbfc95f15fef0375f644e92ea |
File details
Details for the file pycdfpp-0.7.6-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 419.4 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e8f1404a9d7b9de14400106b1587e080f4d13dc27b90019f78b176eeda2b3ba |
|
MD5 | d89a05cb8724ba0971db96766f624dcb |
|
BLAKE2b-256 | d382c26c2d6f090784fde24153489c0c5930cf6f071ac2bd413b5238bbfdc3c6 |
File details
Details for the file pycdfpp-0.7.6-cp313-cp313-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 809f17297a0db4fc95bdf5762e82c6b3f969496e3654a686d2481e2f56f9f5c6 |
|
MD5 | 47b4493552e090dfb61b61920af16f0d |
|
BLAKE2b-256 | df00357738f3397ead70910a61d753a92134a4f4d8c4fc2bfc33aab1da212040 |
File details
Details for the file pycdfpp-0.7.6-cp313-cp313-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84a3f282e89cc2633fc9122b5c27f8e05fcef8e01975cb21158ec4d63262f7b4 |
|
MD5 | 889f100436711af144bde18507bc0579 |
|
BLAKE2b-256 | dcd39a1b98cc6467a8e79b9e43d33cbc504f097426ba90d344197a8d9985deb6 |
File details
Details for the file pycdfpp-0.7.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 859.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 394681f76bffa0625f2c01a458272e08f609e27f87b7b6a19b68f83bab7a9780 |
|
MD5 | c513a921808ce3e6143d7d4fea1dbf43 |
|
BLAKE2b-256 | 3c0119242109a22ce6f085d13c66ba7eb9a24f5f52f659b9d522aff311a4b8cf |
File details
Details for the file pycdfpp-0.7.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 815.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f81ad89f3dbc7c6e3feeb6c0043d6ff3d5574fcbbdd36aaff8bb169c873409b3 |
|
MD5 | cd8f1d19d1aa67e9ad30ea1104a7a83e |
|
BLAKE2b-256 | 46afcc5cf367ad2f52e6c929fe5110a51cd11afb18f1a857d25d3597ab23a811 |
File details
Details for the file pycdfpp-0.7.6-cp313-cp313-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 671.5 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f863826f63f45c96f83ed5663d252d04301581f10eb04cca8dca810e7418a355 |
|
MD5 | 8b16ae28f45c374f9bc85d2ad8bd849f |
|
BLAKE2b-256 | 6b3021498f86eb0fc4f7b470f49a416595e551a121f75151ee364bcca63978f5 |
File details
Details for the file pycdfpp-0.7.6-cp313-cp313-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp313-cp313-macosx_10_15_x86_64.whl
- Upload date:
- Size: 722.0 kB
- Tags: CPython 3.13, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9288871f76fa293a0189165081a44fe69076fd5fa61d69b7414d29665bbe9835 |
|
MD5 | 36072b0a4fe896c658e17912d980be1a |
|
BLAKE2b-256 | 66535c4a9c8cd0a769f65b05172cf29d15bdcf079d1710f8fd6b933978b39c3d |
File details
Details for the file pycdfpp-0.7.6-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 419.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d01c5d8fd067b0ef17ac1b017ada9def6ef73ecbb1cc8ea4165e798d8b80183c |
|
MD5 | 81aaa1578db936c79c979016a337461f |
|
BLAKE2b-256 | 066f4c29424e61c78744f2c186a4c378c8311a7848ec94efd43aa724504df696 |
File details
Details for the file pycdfpp-0.7.6-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 11aeb97f900cbc16b338aa2416ae5e77e83cb26f333fb4bd771db8d6505336f0 |
|
MD5 | e5f6daa817faade8aa82d5d81b94a521 |
|
BLAKE2b-256 | 199c6842848b3967123f8f577c0d1ab16562e3e805eb16a6f84c467adc4f30dd |
File details
Details for the file pycdfpp-0.7.6-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc0723ab921f1c9d308f695d31435d8fb417cf3f5713f15a62902fef28cde43b |
|
MD5 | 335fd4cf1f5d2dfba4498f83ae84883a |
|
BLAKE2b-256 | e86acfd56a7c93cf6abd9a3247f5ea6c8be4505d4b9b6ed6d0c34d9f5d6034e6 |
File details
Details for the file pycdfpp-0.7.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 857.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f727d6da366d58f62d2ac7e2ed5f0ac583516509b3e2f35d2486983fc3880d7d |
|
MD5 | 92969f78945b21133785d9bd0d229553 |
|
BLAKE2b-256 | a1fa08a0583323aa241279cb40a9cb6b91639e81ff1de3fff761c6bffabfa8d1 |
File details
Details for the file pycdfpp-0.7.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 817.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 994614eb9040dfd1b1320d4ff2a5311ed48b1b3c9a1f34451400ebd6b1ba6273 |
|
MD5 | aeef030d8319a72ccb8c099b80008b9d |
|
BLAKE2b-256 | 5f4817b4b8655779730b583dae2dfa2aa653859306a6c3cf4efe91c985cc5128 |
File details
Details for the file pycdfpp-0.7.6-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 671.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 695419ad99937d5ddd380e32dc2115ea946bfd2758951b06cda56fbfcbd8f6d0 |
|
MD5 | d9190f66bef746fcc4c733fe9e867df2 |
|
BLAKE2b-256 | ce0296a7ccbed28a4cc4006e9507871ef9dc5a864eb9138bdc4083eabf226bd2 |
File details
Details for the file pycdfpp-0.7.6-cp312-cp312-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp312-cp312-macosx_10_15_x86_64.whl
- Upload date:
- Size: 721.8 kB
- Tags: CPython 3.12, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8a12a40126bb76c0f136f4c5c220224e6789c6cbe546f3b8eecdcc19b54bdd2 |
|
MD5 | e13c7e40466849af0c729d7bbab83b27 |
|
BLAKE2b-256 | 106004d7e44a787682e513e544fee47c5e5eb22d9e99ac5739059c77b2489ec8 |
File details
Details for the file pycdfpp-0.7.6-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 418.3 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4bc4a5795299ab7ef81e787d5cc163d7a93503df7f5050c71f8070a62f7ff6f2 |
|
MD5 | e68ec084db62372553ce687d1ede72f5 |
|
BLAKE2b-256 | 030d4fdaa22f01dd3367e40c277758d015fa70962e28ff1894c7f09ae158851c |
File details
Details for the file pycdfpp-0.7.6-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 71f9db0ae27f6a7cc73d95ef2117cb94fae9014326a0a59c00142a736f9eaf45 |
|
MD5 | a86deba93f5ec8f9cd80a9ca66dd3a51 |
|
BLAKE2b-256 | 451378163afe59d0a7baed751c4b88999aabd3e5181d50c7539713d85b4a3ac3 |
File details
Details for the file pycdfpp-0.7.6-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 263b488555e01cabea3ed6cba78b1997c62428f5a70e57682f26c037672aa956 |
|
MD5 | 625e1acc80f4e379eb70b921d0c20567 |
|
BLAKE2b-256 | 48dfddb1b867bdcf97ad2bd3ee8ec57b734041639a9dcd02d550a37f4f7df8a1 |
File details
Details for the file pycdfpp-0.7.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 857.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 285014f6cb0322734d999af6e00e2e3f3c01d64bf2311b01e551c4c12e467e5f |
|
MD5 | c80ceee77ff2ba68e1353b3921ce21cc |
|
BLAKE2b-256 | 126fd25f3c3a19d9b1798d1c6635e9ef53652b8019ad2153cb0eb3f78a776612 |
File details
Details for the file pycdfpp-0.7.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 814.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3fa6efa2a0aae518ffc6879ca6a1611b9850c777fb1c5061619a0abeed342a7 |
|
MD5 | ac4a33489ad3dc212e87931496322c1a |
|
BLAKE2b-256 | 47376fd4bf2c31f5796342e9b1a3fae5675c7955c160d0ce6d2b3ad8790b4415 |
File details
Details for the file pycdfpp-0.7.6-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 668.6 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44ac637c93335b41bafe6fe181519b3b61cf3fb916237f6b722770499c846f5d |
|
MD5 | 647370ec540eebbe8cbec90d14edbb66 |
|
BLAKE2b-256 | 7893d8455faa60a5c6fceaeb095089a21269fd6d5aa2dd15949e05d0186c5c52 |
File details
Details for the file pycdfpp-0.7.6-cp311-cp311-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp311-cp311-macosx_10_15_x86_64.whl
- Upload date:
- Size: 718.3 kB
- Tags: CPython 3.11, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e86199b5559ac48486da9349a22133594d07436fbb71c3de6623a4f9e1a57ac5 |
|
MD5 | 513c8b30c9ec5901102b6cf900cbd9d2 |
|
BLAKE2b-256 | 4fb03675b006f8b1e31ac438a8e7c4ea072314b4d1fc95f9aa0eebdbae5d504c |
File details
Details for the file pycdfpp-0.7.6-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 417.2 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af96e879a9f519bb18d4dbe32082c595d84ed6c9b8f273076fd69b8da77ca2ba |
|
MD5 | 69904a91144d86c335559224a45ae65a |
|
BLAKE2b-256 | b147fe3919c1f246f4b162031479ba313b32e311ca9845ec22d55fb4ecf9a4ca |
File details
Details for the file pycdfpp-0.7.6-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c4350f639bc3ec75e619bf7a6c39c53b7819f4c9f2a1359988b6f737b54a9e9 |
|
MD5 | e5fb99d1f67b13ba8ddb1c0846d36ae7 |
|
BLAKE2b-256 | d10e704c37a30a1537c69a20f6f74666bc55847075b727cf05848411adc6f260 |
File details
Details for the file pycdfpp-0.7.6-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00ec4f1dd6a6f6ac11b71235eb2d6790d4d382739a4bdfbb725e0cc665d73ddb |
|
MD5 | d579f6b4f98b3de7a3b83ca71dc1b9dd |
|
BLAKE2b-256 | 051e1319b51d0082f239d95fba4b1402e004b7540acb8b9ca9520dd7694259e7 |
File details
Details for the file pycdfpp-0.7.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 858.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 92f79892b66396dc72c83a9aeb78d840ce883c2af484a2fc2a01291fc5c92f68 |
|
MD5 | 91a0d4ac294f87127a1dc730c76ea063 |
|
BLAKE2b-256 | 63bef2f7b31683c46110ad06f66d4c829815efa79e088419df17b51539349d5c |
File details
Details for the file pycdfpp-0.7.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 812.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ead2b06f1c9b878ee59de734755680a812123c00be34b27018b3aeaa644be0c3 |
|
MD5 | cfe31919855959da9a1f4937a5e4c53f |
|
BLAKE2b-256 | 3bb91553afa7bf037e8b4cfccd5f97cfd6968db326cfb6ec36965ef339e0d9fb |
File details
Details for the file pycdfpp-0.7.6-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 667.8 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 338959643e30dbbfa55a95a746413213c21ab95fdde2cdb0367a0fc54b58323b |
|
MD5 | a0f570a4e8e04e0cbce24556928be837 |
|
BLAKE2b-256 | f8012c28cd08351297207828ddd0cc607a8ea27f7324b928e962e653701bb37b |
File details
Details for the file pycdfpp-0.7.6-cp310-cp310-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp310-cp310-macosx_10_15_x86_64.whl
- Upload date:
- Size: 716.9 kB
- Tags: CPython 3.10, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63e01bbb65258b684a65c3918d2dd0c13c4ade2bc1e125d3fd231d086166174c |
|
MD5 | 6c6b34d7cbcb1fb33056b065b60b8c83 |
|
BLAKE2b-256 | 8790a1f77d0250b55494dbcafe062e6b25c610962e95555664ab3685f92ae5f5 |
File details
Details for the file pycdfpp-0.7.6-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 409.4 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f025b9c7797914a15a738a4d8fc14b25dbd70d586da2213bb40c3747432473d3 |
|
MD5 | 013bf987f7cb638ca3f7207a1fb9cd0b |
|
BLAKE2b-256 | c30af8b31123aaeb8c31ab43cdfc868260da310208a2dfc432e6e1522d2146a1 |
File details
Details for the file pycdfpp-0.7.6-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26296b408d6b93183e924dcf9405f87e965e58a486134fe549f662d801a5cd48 |
|
MD5 | 1ebc8479d5fe70974c6b6ea4b59289cc |
|
BLAKE2b-256 | 50e5e4f4b7562a51948efc11671d9367f985d61634b431dbd746ae5b7e0a63a7 |
File details
Details for the file pycdfpp-0.7.6-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fcb78c6d6a6da1eb7fe502d947bd7cf85ff2612d49b617345087f69481995c97 |
|
MD5 | c327326732a6963184e7723e20675dc3 |
|
BLAKE2b-256 | c3d4ad05d84839e2b9c4fff91f4d0c9b60e0dda35bbd7eb7b626503cbf091d04 |
File details
Details for the file pycdfpp-0.7.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 858.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d473ac36586bf141a0936376e54aa247af63740807308a55cc3f8f3a1bf4bcaa |
|
MD5 | 0cd69cacb2e9a2b082da9bb6add3f1b2 |
|
BLAKE2b-256 | f32ce36020d1ef24bffdbc919416c68ca5f59951b9f138d580a5087363c3908e |
File details
Details for the file pycdfpp-0.7.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 810.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 456b7d30226bbfb3ffca4ff225ff1fc247cd9208e6083e85a83328ba29c1fe16 |
|
MD5 | c81b96377cfade5c9e976e9cdc72d92c |
|
BLAKE2b-256 | 5296e4d80be4526a4a834515adc652bbc64911d1d14e25712f972b3dd40acd80 |
File details
Details for the file pycdfpp-0.7.6-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 668.0 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74949063c1f250798762d2ecef066a82293fda6d347f6416023c488cf8a10526 |
|
MD5 | 5fad93668245430f7201fc3f0321859b |
|
BLAKE2b-256 | 2d680d661ae1f4399e45796f32e7b0287ee5b326ec8250be2998d491af7f71d3 |
File details
Details for the file pycdfpp-0.7.6-cp39-cp39-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp39-cp39-macosx_10_15_x86_64.whl
- Upload date:
- Size: 717.2 kB
- Tags: CPython 3.9, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39ea5764d84ff67ed572e73a0d547ea5aca6a8bd45a868cc0da7f09acaa81ccb |
|
MD5 | 9e289733a0f9c60794d5839449c952b2 |
|
BLAKE2b-256 | 7088af19030d4d19ca2c48aadc43e39e01c86e6b6b4eea716753fe5fcb61956c |
File details
Details for the file pycdfpp-0.7.6-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 445.1 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 115ad91950563a178b43d9dbc268feb095e7f937b0d587933dd705a8eb63957d |
|
MD5 | 9dad6bd27fa3fbd581e467355d4cbc1d |
|
BLAKE2b-256 | 3418337675db2e25cb44c99fc566fca5011541c87da6125709603536b563ea70 |
File details
Details for the file pycdfpp-0.7.6-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad0b3c13980d15b2175cbe6832056e16e0813e1c767007f03e2f05fbc8469ee8 |
|
MD5 | 0b13d3657e09e8e0bbaf1c54564b21fe |
|
BLAKE2b-256 | 4a79334ae8b96e03cbfc1f8f54297d2bc5a57cd673af348c20df3b56bc930c4f |
File details
Details for the file pycdfpp-0.7.6-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc0e6719525e31969d987c0992c2eba3468cfbb47aef43df709d12f549c50352 |
|
MD5 | 0eac9c9ea7eac0a2d6d9fbdf4484555d |
|
BLAKE2b-256 | 7329ef41384d3b7735eeba795c5b3e4707c3e5ccc4de662a96b5d3d23d0637e6 |
File details
Details for the file pycdfpp-0.7.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 894.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28f0fec65bf32e25de949cab071bffe789ad234c92350b9299c16b0da6b3403e |
|
MD5 | ea02caeba62b13d3a6848b2115dafbdc |
|
BLAKE2b-256 | 033d64cfee1eaad09f3b5ade380ffa3c78514a4cd78427f1a82618509a57cb40 |
File details
Details for the file pycdfpp-0.7.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 849.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5e76592c53cf327ba5e1cf22679d68e403b684838482f00c5fc7a849b70e528 |
|
MD5 | 0b1cca9f5f38c5f959d7d3ab707ff8cc |
|
BLAKE2b-256 | 9d942b3633c4b0edc8281460078864601c1898aa05be52fd5dbe800c1c0bf554 |
File details
Details for the file pycdfpp-0.7.6-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 676.7 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 072cd9d94ea2e0a0e8711413dc947ea987fc55c5ce9474bd95455a9a1a92c682 |
|
MD5 | 1f479507ab080a1cfa957995eef70d8a |
|
BLAKE2b-256 | 4d8de8d02ac8e324c4ccf0a8f38efb0f52c428b6713880cc4f852d6fb175dc4b |
File details
Details for the file pycdfpp-0.7.6-cp38-cp38-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: pycdfpp-0.7.6-cp38-cp38-macosx_10_15_x86_64.whl
- Upload date:
- Size: 750.4 kB
- Tags: CPython 3.8, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 396f56755fbd1b23083ba3450705dbbaa6900fc600043d91403e9c30cd5032a1 |
|
MD5 | 5fedc85ee96039a97596fa1234e88be4 |
|
BLAKE2b-256 | 912f6e9eed777bafa993817318e1f843104773efd8d8c81aa41442811f8b201a |