MOC parsing and manipulation in Python
Project description
*****
MOCPy
*****
|PyPI version| |Build/Test status| |Notebook Binder| |Doc|
MOCPy is a Python library allowing easy creation and manipulation of MOCs (Multi-Order Coverage maps).
MOC is an IVOA standard enabling description of arbitrary sky regions.
Based on the HEALPix sky tessellation, it maps regions on the sky
into hierarchically grouped predefined cells.
An experimental support for TMOC (temporal MOC) has been added since version 0.4.0.
It allows creation, parsing and comparison of TMOCs.
Space & Time coverages (STMOC) are an extension of MOC to add time information.
It is possible to get a TMOC by querying a STMOC with a MOC and/or get a MOC
by querying a STMOC with a TMOC.
Please check the mocpy's `documentation <https://cds-astro.github.io/mocpy/>`__
for more details about installing MOCPy and using it.
For a command line tool, see the `moc-cli <https://github.com/cds-astro/cds-moc-rust/tree/main/crates/cli>`__.
For more information about the MOCPy Rust core, see the `moc crate <https://crates.io/crates/moc>`__.
.. figure:: ./resources/readme.png
:scale: 50 %
:align: center
:alt: map to buried treasure
*Rendered with MOCpy!*
.. |PyPI version| image:: https://badge.fury.io/py/mocpy.svg
:target: https://badge.fury.io/py/MOCPy
.. |Build/Test status| image:: https://github.com/cds-astro/mocpy/actions/workflows/test.yml/badge.svg
:target: https://github.com/cds-astro/mocpy/actions/workflows/test.yml
.. |Notebook Binder| image:: http://mybinder.org/badge.svg
:target: https://mybinder.org/v2/gh/cds-astro/mocpy/master
.. |Doc| image:: https://img.shields.io/badge/Documentation-link-green.svg
:target: https://cds-astro.github.io/mocpy/
Migrating to version 0.12
-------------------------
Since 0.12.3
************
- ``MOC.MAX_ORDER` and `TimeMOC.MAX_ORDER`` replace the former ``IntervalSet.HPX_MAX_ORDER`` and ``IntervalSet.TIME_MAX_ORDER``
- ``MOC.to_depth29_ranges`` is now a public method replacing the former private ``IntervalSet.nested`` and addition of ``TimeMOC.to_depth61_ranges`` for a time counterpart
Since v0.12.0
*************
- ``MOC.contains_skycoords`` and ``MOC.contains_lonlat`` replace ``MOC.contains`` (``contains`` will be removed in v1.0.0)
- ``TimeMOC.contains_with_timeresolution`` has been added with the previous behaviour of ``TimeMOC.contains``
- ``from_uniq` removed from `IntervalSet`` and added to ``MOC``
- ``MOC.from_healpix_cells`` now requires the ``max_depth`` argument, the depth of the MOC we want to create
- ``World2ScreenMPL`` has been renamed ``WCS``
Installation
------------
We strongly recommend to work in an environnement
Latest stable version
*********************
- from pip ``pip install mocpy``
- from conda ``conda install -c conda-forge mocpy``
- from this repository
.. code::
git clone https://github.com/cds-astro/mocpy.git
cd mocpy
pip install .
Note that the point is important.
Developpement version
*********************
.. code::
git clone -b develop https://github.com/cds-astro/mocpy.git
cd mocpy
pip install .
For use in pyodide
******************
Wheels that run in pyodide can be downloaded from `this repository assets <https://github.com/cds-astro/mocpy/releases/download/v0.12.3/mocpy-0.12.3-cp310-cp310-emscripten_3_1_27_wasm32.whl>`__. This is not fully tested.
MOCPy
*****
|PyPI version| |Build/Test status| |Notebook Binder| |Doc|
MOCPy is a Python library allowing easy creation and manipulation of MOCs (Multi-Order Coverage maps).
MOC is an IVOA standard enabling description of arbitrary sky regions.
Based on the HEALPix sky tessellation, it maps regions on the sky
into hierarchically grouped predefined cells.
An experimental support for TMOC (temporal MOC) has been added since version 0.4.0.
It allows creation, parsing and comparison of TMOCs.
Space & Time coverages (STMOC) are an extension of MOC to add time information.
It is possible to get a TMOC by querying a STMOC with a MOC and/or get a MOC
by querying a STMOC with a TMOC.
Please check the mocpy's `documentation <https://cds-astro.github.io/mocpy/>`__
for more details about installing MOCPy and using it.
For a command line tool, see the `moc-cli <https://github.com/cds-astro/cds-moc-rust/tree/main/crates/cli>`__.
For more information about the MOCPy Rust core, see the `moc crate <https://crates.io/crates/moc>`__.
.. figure:: ./resources/readme.png
:scale: 50 %
:align: center
:alt: map to buried treasure
*Rendered with MOCpy!*
.. |PyPI version| image:: https://badge.fury.io/py/mocpy.svg
:target: https://badge.fury.io/py/MOCPy
.. |Build/Test status| image:: https://github.com/cds-astro/mocpy/actions/workflows/test.yml/badge.svg
:target: https://github.com/cds-astro/mocpy/actions/workflows/test.yml
.. |Notebook Binder| image:: http://mybinder.org/badge.svg
:target: https://mybinder.org/v2/gh/cds-astro/mocpy/master
.. |Doc| image:: https://img.shields.io/badge/Documentation-link-green.svg
:target: https://cds-astro.github.io/mocpy/
Migrating to version 0.12
-------------------------
Since 0.12.3
************
- ``MOC.MAX_ORDER` and `TimeMOC.MAX_ORDER`` replace the former ``IntervalSet.HPX_MAX_ORDER`` and ``IntervalSet.TIME_MAX_ORDER``
- ``MOC.to_depth29_ranges`` is now a public method replacing the former private ``IntervalSet.nested`` and addition of ``TimeMOC.to_depth61_ranges`` for a time counterpart
Since v0.12.0
*************
- ``MOC.contains_skycoords`` and ``MOC.contains_lonlat`` replace ``MOC.contains`` (``contains`` will be removed in v1.0.0)
- ``TimeMOC.contains_with_timeresolution`` has been added with the previous behaviour of ``TimeMOC.contains``
- ``from_uniq` removed from `IntervalSet`` and added to ``MOC``
- ``MOC.from_healpix_cells`` now requires the ``max_depth`` argument, the depth of the MOC we want to create
- ``World2ScreenMPL`` has been renamed ``WCS``
Installation
------------
We strongly recommend to work in an environnement
Latest stable version
*********************
- from pip ``pip install mocpy``
- from conda ``conda install -c conda-forge mocpy``
- from this repository
.. code::
git clone https://github.com/cds-astro/mocpy.git
cd mocpy
pip install .
Note that the point is important.
Developpement version
*********************
.. code::
git clone -b develop https://github.com/cds-astro/mocpy.git
cd mocpy
pip install .
For use in pyodide
******************
Wheels that run in pyodide can be downloaded from `this repository assets <https://github.com/cds-astro/mocpy/releases/download/v0.12.3/mocpy-0.12.3-cp310-cp310-emscripten_3_1_27_wasm32.whl>`__. This is not fully tested.
Project details
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
mocpy-0.13.0.tar.gz
(79.0 MB
view hashes)
Built Distributions
mocpy-0.13.0-cp311-none-win_amd64.whl
(847.9 kB
view hashes)
mocpy-0.13.0-cp310-none-win_amd64.whl
(847.9 kB
view hashes)
mocpy-0.13.0-cp39-none-win_amd64.whl
(848.3 kB
view hashes)
mocpy-0.13.0-cp38-none-win_amd64.whl
(848.4 kB
view hashes)
mocpy-0.13.0-cp37-none-win_amd64.whl
(848.4 kB
view hashes)
Close
Hashes for mocpy-0.13.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e390c6793b56ff7991eefa9d76d0c533e8c308ad511cd1c6bef594272282803c |
|
MD5 | 3afbb305bd87e290229def0aeecd2e08 |
|
BLAKE2b-256 | 562e010b1c207a414c60869cc560c50ed320b374d32732036f395eb5e5b07c26 |
Close
Hashes for mocpy-0.13.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0cad2b9593fbee1fa4441a57507e1fd21996ad206574dbc974cbad5dce12a838 |
|
MD5 | d8a8b5c3290fa0ce469f59757d6a1a0c |
|
BLAKE2b-256 | 3f6c6e19e6b9a9837d75a47ef40ca445cf008f04ab36d62ee64725ccaf95419d |
Close
Hashes for mocpy-0.13.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63910d9d6273ef83ee441716595a4c25d9182c4702a6e0badc1d0fffbf46bdca |
|
MD5 | 1065fff6eecf752099cb30e0a1da9e68 |
|
BLAKE2b-256 | 26cb0fc19e791702b72229ae6327faabbd913bd4e7dda65a8fd1f747568b6669 |
Close
Hashes for mocpy-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bdfa5e3c4f70c5eb5760650c14abde11d0865b0900bfa352f25a71d13a7a421f |
|
MD5 | e458a8ddc80af5667e57243aace76d22 |
|
BLAKE2b-256 | 04be599a8f041e3f3ceb57eb3242e8f1b5e6d9bbe58b0b11d0a4acf5d549bedd |
Close
Hashes for mocpy-0.13.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26a6a98d57abeacb3f3086cbfbd16e5caa95b4d355b4514153a20853c5ecd932 |
|
MD5 | 916a42eb125140ce235b6fb2aa4e8741 |
|
BLAKE2b-256 | 497b8428a277e2c301875c21c09214dfe0239e386b57a40700eb846549873b73 |
Close
Hashes for mocpy-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1e8caf189a75c2c86425beb30c1a4c69d6afdd4a0345473dd9d1c0fc8f83c59 |
|
MD5 | c67c0fbe00229509d8350b5a0e54f466 |
|
BLAKE2b-256 | 507328ecc1c5024000f7c0c5441ad8ede6e2acb3e462cae9bafb73624285f87b |
Close
Hashes for mocpy-0.13.0-cp311-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f50d15b0e6a07723a211954f50584622d3d339c9ddc608a028456c1226adf7c |
|
MD5 | f4031806194cdf3f0919e4f7adb2ab73 |
|
BLAKE2b-256 | 57690e9aaf24e7b13c8b47e9f45312e8a3b4fac99145c33cf0736e782c5c3616 |
Close
Hashes for mocpy-0.13.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 698775ba1a88eb7245be6a58acda34bc5dab809ead91ccd4fbd44d65d0dcd11e |
|
MD5 | 44138c718440ed0c3012393418aa6080 |
|
BLAKE2b-256 | e05c16c3e16c8b0c20cde36d382eff1ec04536412b53ffaa86357116bf7a282c |
Close
Hashes for mocpy-0.13.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c2b94c86ee707cd0e9abac653824d1947d894e13bdeec169d10b8b1f160e792 |
|
MD5 | 304641294f39c0d9618c2ad5207ed827 |
|
BLAKE2b-256 | 4b1e417030f1bc7df519e79e612a6eccf47370865336d11cda4264e25590927c |
Close
Hashes for mocpy-0.13.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28dffe5ac4371e0590562dce6edb75e380ae6aa5f3a99d10440c0783682b4ddb |
|
MD5 | 9a837d80f81a54e62bff0c59ce265d3d |
|
BLAKE2b-256 | f352756a48f95fcf6353be0738d5d9b9a47f2ccbf574539336ba2c9563b6536d |
Close
Hashes for mocpy-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6594ea2c3702253db81cfe68afb4cd2fe25f3ff2921c114910fbb51459140f08 |
|
MD5 | b4839409340b5c57371b9ad668081074 |
|
BLAKE2b-256 | d1e92a89d38da98c4afbbb6b8aff2eb53cb8d58fc368af774faab61a3fe2c783 |
Close
Hashes for mocpy-0.13.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 240ff7278cd96a0e97a18ed5d38a49a72067c6467a4bcaf0a185167615658c94 |
|
MD5 | eaab19475df485bfb377c60afe7a9640 |
|
BLAKE2b-256 | cb1fcbc1065b76a96978ba660d1ae9cb3097034a61bdcd276e78cc1947633052 |
Close
Hashes for mocpy-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e5b9c335bb9a7b783e51dcb5b9cb37f71118b89aa26bf81cb8594ea9fb9fad2 |
|
MD5 | 59f8ed281188f3941972174c6a51352d |
|
BLAKE2b-256 | 9e0718efc56b2c636eca6c89c4a0b4b71d9dd8c4e1b7c6c13551b403d6616f41 |
Close
Hashes for mocpy-0.13.0-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51c24bc4fcb86fa76c82838a3b13c337423b5dc2b870e071daae5ddb1809935d |
|
MD5 | ecdd629401c6cc8a2b27e01c4da75c03 |
|
BLAKE2b-256 | 86eeaab17b993ed941c77b63cda63cf46981e2a43c093d6123aa9dc267b28027 |
Close
Hashes for mocpy-0.13.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7280ba8a391c85735b890aafff1e056dc58f6a07cf6f3d65fe2fdcb10c2cd12f |
|
MD5 | cc4f54a251b89937e167007b2403a143 |
|
BLAKE2b-256 | b020908ea68c0e1cf7146b2c861356d560bd7a1943a5b9acc07188af9c624902 |
Close
Hashes for mocpy-0.13.0-cp310-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5487568d858d55be753514b0c7c7c93e9df0bdb6782d63e3bbfadd91dd2b585e |
|
MD5 | 3b687714e934b4f0bb040b8900826528 |
|
BLAKE2b-256 | 2a676a80853ade66893bd3081b8416d0a9c567b8155dff53866f7a5ed183b28e |
Close
Hashes for mocpy-0.13.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | df6339de3e8fa8bba18a581e39495c59be81251224893211f75ad99368939967 |
|
MD5 | 5242ec8f196e633378d498af3701e738 |
|
BLAKE2b-256 | f3a5a07b7d1c630c3ae2ce672686b1fac930d8e17345674eab08a3b9cfbd77a0 |
Close
Hashes for mocpy-0.13.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd2f6e2e47cf4191bf8b3153dc6c907170244d4e1b83437082967e7dd5116196 |
|
MD5 | 1768e63e42a2bf12f2c9cd7235d230c2 |
|
BLAKE2b-256 | 830b2646d1edba5378e788d7bdb7e7a43ee9fc925645f07acf339aaca0c36663 |
Close
Hashes for mocpy-0.13.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d1fd4aa7ac399593d6c1380d73168595e069a619f9d5eb6b20f78e3abd9ab84 |
|
MD5 | 2fd9dd097773e3015ab01672c8204304 |
|
BLAKE2b-256 | 58c6923fd9cb2524355e7cc8cc3ff9d05bef809c46df389a2eaf45b2fe04d310 |
Close
Hashes for mocpy-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34b1b5510192473f5becece02c580421d817e8110aa8816cf10857186d790557 |
|
MD5 | abc7d3ae3ee53d7270f2de3375b26cc8 |
|
BLAKE2b-256 | 954c945daf5b09d914d38f1c09edbd95bddb66333a6571934c2b9a370d559d60 |
Close
Hashes for mocpy-0.13.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49d0945e10118c57b278b6f6ab8a37543351a63df4fba41c29153679f795fc2b |
|
MD5 | d02a57eddece9210675e191a3caf0a40 |
|
BLAKE2b-256 | fdfb089d8e4afdbf8268e689b050ffde15db38a714ab4f19b5db9756f61a49a7 |
Close
Hashes for mocpy-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0618aeb02d92831bf5f8570a7c2b757a6ce28dd98e78f39452aec34ec9dcf9f0 |
|
MD5 | 88e9a9261a313192ea3201e44c9d00b1 |
|
BLAKE2b-256 | 1b47b21fd3d2c862b35d0d2be456ae7b970cc539d09a8595d904c05baa14f921 |
Close
Hashes for mocpy-0.13.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3bf46913524221f5991376f0d0ff3a4134bda6d333b58cb56ebba11290c93a60 |
|
MD5 | fc7db52f7f0a2a4190cf120907598f29 |
|
BLAKE2b-256 | 2f198320de9f524ce2be57fd6070e183a03b4325f56a275e3f606a07f410b1d9 |
Close
Hashes for mocpy-0.13.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b6af7ae38a544464cc9d79c0366b8ed8cb8b131a4816b248974b164a52c52f7 |
|
MD5 | be614fbd889aac842812f42c935908b6 |
|
BLAKE2b-256 | d213aef696622fcc59c0a66fcb691813423a625301d30e9eec1affc632a89e4e |
Close
Hashes for mocpy-0.13.0-cp39-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c110a79b72bcebdbab3fc3489f763006b05805e132101a35f1d12189c4c7f967 |
|
MD5 | 25ea84bd9213371a7a8732fabbec3ebd |
|
BLAKE2b-256 | 29e1ad82b0aecb5c1dde3687fcda2869a04b8300134a25c03c365b99c72c7277 |
Close
Hashes for mocpy-0.13.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe9dcdfd9dbd8376f5fe52461feef9e87c3ee46b4dc216e2b404b56f4ec68f8c |
|
MD5 | 1800f9c342209968d656bec024abac4a |
|
BLAKE2b-256 | 2cd660f7c1d1c82fa2832563726cf1b58840e100fab82ba01386d5d8e8079cd5 |
Close
Hashes for mocpy-0.13.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2cc0421b5ec1e16160581409af5cc9386b8b9a93cc4170271dcdd878b323aa58 |
|
MD5 | 774e5800c84db3c20aed4789e6aa03e1 |
|
BLAKE2b-256 | 254cf8085d398d67ce9675e36aac522bdef3ac86864b0c62e56c502ffdbb583a |
Close
Hashes for mocpy-0.13.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 442194bb048ccdb1c341d9de381e86939afa4e97a42dcfd08ee667c7a88f7583 |
|
MD5 | e2fe9c74514f148b328ba12966978021 |
|
BLAKE2b-256 | 9ef6ea6e762152419f1603bec0ef067aecd919c4049de634d16fb9f50d7cfd37 |
Close
Hashes for mocpy-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d440a2ede73c705515be7580f1fd319a48399151e0d3f3a52277ce27ec5a7bb |
|
MD5 | ad445a1012ded14e3b56ad633bd900ec |
|
BLAKE2b-256 | 8f44f0a0d76e327038e0da5e3e8a43f448b387b8e30b1e49e9f44e2f576c0c06 |
Close
Hashes for mocpy-0.13.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1da09d8ff0e37af8e5d8c555b2ffa2480f0d61337f39c4ed74c8f7fef72ee98 |
|
MD5 | db5cf179e75276469f0b592cadf4726e |
|
BLAKE2b-256 | 84155c806c7c2b559717ea390849f1221bed55687cf54da53b850a6efa1cdf29 |
Close
Hashes for mocpy-0.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3617deeeaa39066fd214a511884c4acd31200392f190693cf6eb08b36186b63c |
|
MD5 | 1e8bebf498e8803f2ffffcb30a7edb60 |
|
BLAKE2b-256 | 74b2466a0ba574dc7f913a04153cd12ae8c91c30b5b710f21cb5cf11eb9c8522 |
Close
Hashes for mocpy-0.13.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7e891cb4df8896cf37b9b901e18015d9da4da0f8932591fd38eeb449029ef24 |
|
MD5 | 685109488a5049653aa9317ed68486c6 |
|
BLAKE2b-256 | 55253fdf9c5b516d40b77d72dbe8a82dfc622958ce368338621ac1c1b66c870a |
Close
Hashes for mocpy-0.13.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef4c5dcd3a73d7f0c5b6eca7ec9e18cdfd671c0a196f3ad2fc2d9a13afc8807a |
|
MD5 | 0e8c3f4d9ffb160178e7070850fabb8a |
|
BLAKE2b-256 | 698e61d018d9593ed3130419282cf3070a7c951bac59fd2fb4ef6c06deb7bbe8 |
Close
Hashes for mocpy-0.13.0-cp38-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9127d93e7c953fcd6cf3db643b1a893714bc6166d76bb739556be303441801e7 |
|
MD5 | f6d799b0549aaa5094d7c61df60a826d |
|
BLAKE2b-256 | 3d7fc9105a27292fcaffb126d978b9cdd61cb57eb9754d545423c0e8fa6cc774 |
Close
Hashes for mocpy-0.13.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06695489af9fa57bc549b7350d4927187878685ed9308ac25b9cab8579f30fb7 |
|
MD5 | 6c4b7032411bc03165317bde58165f82 |
|
BLAKE2b-256 | 1c62bbc77f4889e60c417a917bf270e9e92849ac439f44b25c403294fc0e1354 |
Close
Hashes for mocpy-0.13.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3680e974ab6d7c3993beb05bbae9fa49a2e9f0e9ee87edc39530f63bbb75ddf5 |
|
MD5 | a99295a7637c7e11f17bda129928f685 |
|
BLAKE2b-256 | 0679adc9b58a7d42c10c9d1374f307034d812a26974c838ab6d976c2ff553f70 |
Close
Hashes for mocpy-0.13.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 653a40a9ba5f9c8f52d34be7718cadd05ac62d2e52c4dc10cbdb6502e2968c6a |
|
MD5 | e958fff9158b41af36959bb26f9058a5 |
|
BLAKE2b-256 | 1510b0ccca72eb18ac2f04f4c8be5bb0160e88007e323c56ff28c05c672f282e |
Close
Hashes for mocpy-0.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5f6680b19baaff854058597b61413bfe2c4aa7ceab926ba254d829713d70c66 |
|
MD5 | 815a19ef9849c1210556884aacbff1ad |
|
BLAKE2b-256 | 94a5efa613b1de02edbeebe27698857ad0e1a8dac7e798b0f6e2cf76fdf938df |
Close
Hashes for mocpy-0.13.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7fa8ba1de4f6d21325b2a6c6eda16f53b1ed7ac97ce9b91d6b23d728be8c7c4 |
|
MD5 | a72782ced98d9888930c1269e855da0c |
|
BLAKE2b-256 | 7daf9ae2f7f2b07205d0f737a9c40a7df1c51f8a69da09d2ef8274a04408c8b9 |
Close
Hashes for mocpy-0.13.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe9a62eb650b8db36acab9547e128c656082cb8742791d4f4f3f6b199539e740 |
|
MD5 | 1fba16b5c1c769e22d7f3fb1a0a24133 |
|
BLAKE2b-256 | d8de424ba5da8264f380967df46ff44553c3f08bd8c621afb23900170195e89a |
Close
Hashes for mocpy-0.13.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a956f93fa9c86eb0866444bfa54f2e2cb4ede83003c48463f7941671c83762a |
|
MD5 | f1a4d022695991fd0b3bf9bdab44e0d9 |
|
BLAKE2b-256 | 6b2dd7f4746f7b20e3313a23dae534bdfb30631fc2c151b4a174e6ac3ffe1251 |
Close
Hashes for mocpy-0.13.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cde5ca10c2af943a07ed9c77eb38d69da04792b61b34452134d3a9424f6cb95 |
|
MD5 | 832f9a911e30b081b133642704e8358e |
|
BLAKE2b-256 | 05a28ee0dd7668c3cf7b5d0882270d6e35f27ab486a8aa88d341171cd1e93e4a |
Close
Hashes for mocpy-0.13.0-cp37-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab38909971c21507ae26e06b6a01db12e2ecd94d7e4ff61a636fbb39e03009d8 |
|
MD5 | 8a778a552cde446cabfed5873a744fc0 |
|
BLAKE2b-256 | 9fe11f1a2497cd0d958d89c359a44259432794a321f32f7392b672863c01d502 |
Close
Hashes for mocpy-0.13.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12d7bcad8fad5782f1c396d9dbcdd2083d7ad5a87d0433d54355092c3c224e29 |
|
MD5 | fa88a7553f4a2d4673b93c1cfb8fcc16 |
|
BLAKE2b-256 | 21f3e9f4a71887e886c8a06724861fb2271491b3ab7f82490c52b3942b54b995 |
Close
Hashes for mocpy-0.13.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c70d2b458bf774cb5792f4304e307eebc90faaf47c425baab16a746d67d4da11 |
|
MD5 | 241e5d4710f0d7b17894fc3180e18f6e |
|
BLAKE2b-256 | 7e492d3954aa905be197129005187939fc22a3e9d8f80fcd1d0859fb40f33f97 |
Close
Hashes for mocpy-0.13.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78599facf1208211b560cb10c736b616205f58fe6466a35fdb2872683f67d109 |
|
MD5 | e466696f74ef463ef69e5ca73bf43269 |
|
BLAKE2b-256 | 393cd24e5a4ac99655211a96c19ed1d004bf45a627582eafff0f6cde2413817b |
Close
Hashes for mocpy-0.13.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 468df0d14e76c01c6df9fb0937b21d9ace661a20f9529e3fabc4087937ba6429 |
|
MD5 | f36262c94b45ad1175ec9a3cb5263c76 |
|
BLAKE2b-256 | 4adee28f1746ec44c62e95ea8a9f81701fcc9d56945934f3358096ff95cb8d08 |
Close
Hashes for mocpy-0.13.0-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7488002be3e473fb902b140b0bae82e92891692b144a0af49e85f5453ca6e45c |
|
MD5 | 4daaeb8e9e7e631f4e33e7c491ab3fdf |
|
BLAKE2b-256 | 997e0a917c2d87a26849c2cfa64d8ab09e6deef8076721975305c04a07fb1ce9 |
Close
Hashes for mocpy-0.13.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e519478dcae3f44de8157e725bbf04d70bc5a909fed8673fb209ec8d23d53ad9 |
|
MD5 | 3a8dd9560a2e3127c2ff264d5995f72e |
|
BLAKE2b-256 | 2c36dd9920c8e3d6f07935e1cef0e4dcaeeeb2878b6b42810ff5b956063889ed |