Skip to main content

Convert between various formats (YAML, JSON, XLSX, ODS, CSV) to Markdown Tables

Project description

madato

Rust CI workflow Python CI workflow Rust Version Rust Version

madato is a library and command line tool for working tabular data, and Markdown


  1. madato (library) - this library, which reads YAML, CSV, JSON, XLSX/ODS and writes Markdown
  2. madato (cli) - providing a helpful command line tool of the above
  3. The full library is available as a python module, or a rust library.

The tools is primarly centered around getting tabular data (spreadsheets, CSVs) into Markdown.

Usage

CLI

Download from https://github.com/inosion/madato/releases

Rust

The library, if you need spreadsheet support, then add the spreadsheets feature.

madato = { version = "0", features = ["spreadsheets"] }

Python

pip install madato

Details

When generating the output:

  • Filter the Rows using basic Regex over Key/Value pairs
  • Limit the columns to named headings
  • Re-order the columns, or repeat them using the same column feature
  • Only generate a table for a named "sheet" (applicable for the XLS/ODS formats)

Madato is:

  • Command Line Tool (Windows, Mac, Linux) - good for CI/CD preprocessing
  • Rust Library - Good for integration into Rust Markdown tooling
  • Node JS WASM API - To be used later for Atom and VSCode Extensions

Madato expects that every column has a heading row. That is, the first row are headings/column names. If a cell in that first row is blank, it will create NULL0..NULLn entries as required.

Example CLI usage

  • Extract the 3rd Sheet sheet from an MS Excel Document
08:39 $ madato table --type xlsx test/sample_multi_sheet.xlsx --sheetname "3rd Sheet"
|col1|col2| col3 |col4 |                         col5                          |NULL5|
|----|----|------|-----|-------------------------------------------------------|-----|
| 1  |that| are  |wider|  value ‘aaa’ is in the next cell, but has no heading  | aaa |
|than|the |header| row |       (open the spreadsheet to see what I mean)       |     |
  • Extract and reorder just 3 Columns
08:42 $ madato table --type xlsx test/sample_multi_sheet.xlsx --sheetname "3rd Sheet" -c col2 -c col3 -c NULL5
|col2| col3 |NULL5|
|----|------|-----|
|that| are  | aaa |
|the |header|     |
  • Pull from the second_sheet sheet
  • Only extract Heading 4 column
  • Use a Filter, where Heading 4 values must only have a letter or number.
08:48 $ madato table --type xlsx test/sample_multi_sheet.xlsx --sheetname second_sheet -c "Heading 4" -f 'Heading 4=[a-zA-Z0-9]'
|        Heading 4         |
|--------------------------|
|         << empty         |
|*Some Bolding in Markdown*|
|   `escaped value` foo    |
|           0.22           |
|         #DIV/0!          |
|  “This cell has quotes”  |
|       😕 ← Emoticon       |
  • Filtering on a Column, ensuring that a "+" is there in Trend Column
09:00 $ madato table --type xlsx test/sample_multi_sheet.xlsx --sheetname Sheet1 -c Rank -c Language -c Trend -f "Trend=\+"
|                         Rank                         |  Language  |Trend |
|------------------------------------------------------|------------|------|
|                          1                           |   Python   |+5.5 %|
|                          3                           | Javascript |+0.2 %|
|                          7                           |     R      |+0.0 %|
|                          12                          | TypeScript |+0.3 %|
|                          16                          |   Kotlin   |+0.5 %|
|                          17                          |     Go     |+0.3 %|
|                          20                          |    Rust    |+0.0 %|

Internals

madato uses:

  • calamine for reading XLS and ODS sheets
  • wasm bindings to created JS API versions of the Rust API
  • regex for filtering, and serde for serialisation.
  • PyO3 and Maturin for Python Support

Tips

  • I have found that copying the "table" I want from a website: HTML, to a spreadsheet, then through madato gives an excellent Markdown table of the original.

Python

pip install madato

# py
from IPython.display import display, Markdown
import madato
display(Markdown(madato.spreadsheet_to_md("../test/Financial Sample.xlsx")
print(madato.spreadsheet_to_md(str(my_sample_spreadsheet)))

More Commandline

Sheet List

You can list the "sheets" of an XLS*, ODS file with

$ madato sheetlist test/sample_multi_sheet.xlsx 
Sheet1
second_sheet
3rd Sheet

YAML to Markdown

Madato reads a "YAML" file, in the same way it can a Spreadsheet. This is useful for "keeping" tabular data in your source repository, and perhaps not the XLS.

madato table -t yaml test/www-sample/test.yml

|col3| col4  |  data1  |       data2        |
|----|-------|---------|--------------------|
|100 |gar gar|somevalue|someother value here|
|190x|       |  that   |        nice        |
|100 | ta da |  this   |someother value here|

Please see the test/www-sample/test.yml file for the expected layout of this file

Excel/ODS to YAML

Changing the output from default "Markdown (MD)" to "YAML", you get a Markdown file of the Spreadsheet.

madato table -t xlsx test/sample_multi_sheet.xslx.xlsx -s Sheet1 -o yaml
---
- Rank: "1"
  Change: ""
  Language: Python
  Share: "23.59 %"
  Trend: "+5.5 %"
- Rank: "2"
  Change: ""
  Language: Java
  Share: "22.4 %"
  Trend: "-0.5 %"
- Rank: "3"
  Change: ""
  Language: Javascript
  Share: "8.49 %"
...

If you omit the sheet name, it will dump all sheets into an order map of array of maps.

Features

  • [x] Reads a formatted YAML string and renders a Markdown Table
  • [x] Can take an optional list of column headings, and only display those from the table (filtering out other columns present)
  • [X] Native Binary Command Line (windows, linux, osx)
  • [X] Read an XLSX file and produce a Markdown Table
  • [X] Read an ODS file and produce a Markdown Table
  • [X] Read a CSV
  • [X] Published as a Python Module
  • [ ] TSV, PSV (etc) file and produce a Markdown Table
  • [ ] Support Nested Structures in the YAML input
  • [ ] Read a Markdown File, and select the "table" and turn it back into YAML

Future Goals

Known Issues

License

Serde is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Serde by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

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

madato-0.7.1.tar.gz (83.1 kB view details)

Uploaded Source

Built Distributions

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

madato-0.7.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (883.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

madato-0.7.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (923.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

madato-0.7.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

madato-0.7.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (881.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

madato-0.7.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (882.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

madato-0.7.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (938.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

madato-0.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (883.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

madato-0.7.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (923.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

madato-0.7.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

madato-0.7.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (880.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

madato-0.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (882.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

madato-0.7.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (938.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

madato-0.7.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (924.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

madato-0.7.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

madato-0.7.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (880.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

madato-0.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (882.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

madato-0.7.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (882.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

madato-0.7.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (935.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

madato-0.7.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (923.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

madato-0.7.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

madato-0.7.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

madato-0.7.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (880.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

madato-0.7.1-cp313-cp313-win_amd64.whl (680.7 kB view details)

Uploaded CPython 3.13Windows x86-64

madato-0.7.1-cp313-cp313-win32.whl (658.2 kB view details)

Uploaded CPython 3.13Windows x86

madato-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (882.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

madato-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (924.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

madato-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

madato-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (879.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

madato-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (882.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

madato-0.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (935.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

madato-0.7.1-cp313-cp313-macosx_11_0_arm64.whl (803.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

madato-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl (820.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

madato-0.7.1-cp312-cp312-win_amd64.whl (681.0 kB view details)

Uploaded CPython 3.12Windows x86-64

madato-0.7.1-cp312-cp312-win32.whl (657.8 kB view details)

Uploaded CPython 3.12Windows x86

madato-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (882.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

madato-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (924.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

madato-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

madato-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (879.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

madato-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (882.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

madato-0.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (936.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

madato-0.7.1-cp312-cp312-macosx_11_0_arm64.whl (803.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

madato-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl (820.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

madato-0.7.1-cp311-cp311-win_amd64.whl (680.6 kB view details)

Uploaded CPython 3.11Windows x86-64

madato-0.7.1-cp311-cp311-win32.whl (658.3 kB view details)

Uploaded CPython 3.11Windows x86

madato-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (881.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

madato-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (924.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

madato-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

madato-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (880.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

madato-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (880.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

madato-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (936.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

madato-0.7.1-cp311-cp311-macosx_11_0_arm64.whl (805.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

madato-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl (823.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

madato-0.7.1-cp310-cp310-win_amd64.whl (680.1 kB view details)

Uploaded CPython 3.10Windows x86-64

madato-0.7.1-cp310-cp310-win32.whl (658.6 kB view details)

Uploaded CPython 3.10Windows x86

madato-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (883.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

madato-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (924.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

madato-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

madato-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (881.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

madato-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (881.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

madato-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (936.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

madato-0.7.1-cp310-cp310-macosx_11_0_arm64.whl (805.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

madato-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl (824.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

madato-0.7.1-cp39-cp39-win_amd64.whl (680.6 kB view details)

Uploaded CPython 3.9Windows x86-64

madato-0.7.1-cp39-cp39-win32.whl (658.2 kB view details)

Uploaded CPython 3.9Windows x86

madato-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (883.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

madato-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (925.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

madato-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

madato-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (881.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

madato-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (882.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

madato-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (937.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

madato-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (882.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

madato-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (924.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

madato-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

madato-0.7.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (881.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

madato-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (881.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

madato-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (937.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

madato-0.7.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (924.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

madato-0.7.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

madato-0.7.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (881.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

madato-0.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (881.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

Details for the file madato-0.7.1.tar.gz.

File metadata

  • Download URL: madato-0.7.1.tar.gz
  • Upload date:
  • Size: 83.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for madato-0.7.1.tar.gz
Algorithm Hash digest
SHA256 0b7811447616d08cd77a463f149bb4a87e79e60bc4699d0c125d0518b5076117
MD5 a68be89f2735b8ee8825c8598161151a
BLAKE2b-256 3191a074e4746ea6986ccc389f22126930c3f72b9c6a716c2ccb19d45a52e4f7

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7cab662d3922f944eb4661ff57cddfc5e66aa24de4058b5222b478e460b89294
MD5 2c4e46a71c6901dd84462d3dd794965c
BLAKE2b-256 e5009c4dd94e24f1ea68ab681ed6f172e333a707dfccf5d3c402e362b8eb9a8a

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa751501c8ff9282b17b6b36271d4a7168dc155c9d661caf8fccb7b03ce2db44
MD5 0bc119ce6166cbdaed89ddbda8297960
BLAKE2b-256 efc294b82365076a1669db9384a588ea586ecbe67c397cade3b534c8c66aa605

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58202a5f6952826ee1cbb196ce231826e53c310763ae08cc952cae3b02fc4126
MD5 f43152df9881c3375829d21057ec4e03
BLAKE2b-256 b5bfa4c6b717ac8a354f410a62f7b1dc403f462dbbe9ac16b29d31dedaa7866d

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8689599d07cb915cff074d70fcb671fb667213311476fc5b01fb79c1b289c9e1
MD5 16ad62989bd479385cb5392cfb241f27
BLAKE2b-256 b20f8cd49e755314130a351f5f4ce11ea5e348ae3e65742c97c23dfed3e1727b

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8494dc096f7c203d4ca27fb293212a84bb7ae9138931e079b60a203137fcb1b6
MD5 50035ba3d9c6f5c4fd9d80495326bdad
BLAKE2b-256 b1229ae93d94f6307d47c3381a82a2469a0272d6f52ebe3ea85b8bbd5d4ade7a

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f1e84b8546144a785fd5a2ba6c6e48c2a2036732d09beba0914c9f3e5e1eae75
MD5 abe28ea2b8a813a38d34c89a5dea7202
BLAKE2b-256 67ef5fa65e340cbf6c83e630b39d38deaac07ee0790566e47b9ca9134cddf328

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ad7e5add5d8621195a7bc525f98a57da350f90b1b1a8e6ee96d34f432c67d3a
MD5 2a7e1c699225dde1d17f0626e10b09f3
BLAKE2b-256 9732aba457eca5b8358d259c538ffb5793c35ae55cf6664eaf6b0e3483f39b00

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 243ca99e66af1ab9975a7e6ce50fb198697a94b1775351c75427c3100f12b3d7
MD5 cbee8798808fc4223dd89d619a35ff78
BLAKE2b-256 c59ab87eb9fb43ca0db7ee5b6c066cca207a0940bd795a9c32c09d156731307f

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fbc424ba7aecdba0c0de4fa866ee48ed1c826f0d07457ef610681d8246a0d353
MD5 98d107faa194eb77da527768b980cef2
BLAKE2b-256 d50c05016f33e5663003b6a275fdfcb827e0b171a9d4dfb9483d20aaad38f9d1

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 382dcdfae2eaa3ac2aa3627f5f3ed381632ff9fb2f65f8e8b5b601b84672d59a
MD5 b0eca3499b4647dbcd1e5a0095095bf6
BLAKE2b-256 17a4bd564845d10a4a3c41e4c90d6e1842463b0e19dfd730cbb8972861daa1ac

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7d964c163eead064153064da236be98d7cb486806499cd062e33b447bd61cfd
MD5 a462c20cc20b5a16ae30697d42e11c59
BLAKE2b-256 9c19c003bd40ffd65d9bd1137bf9a680752a52d5d36e89de1bdd30abc6289c42

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f469cae211233aa18a38f29fcca4330ea8d1067b4bc22ad5144c0dc4ab264075
MD5 019e4bd893bb59315783ca92f07b66d3
BLAKE2b-256 9648450ca292cd23f07d4d2e71a726ef6d156caf5b9c89612bd82152a500f6ad

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 208fb4dcda7cf879e4497d0c3caed7a524650d7c48a776a45224021a26cd96c7
MD5 56f69731fd96950911470cdcdc946fe9
BLAKE2b-256 1c84e13e7bd63b6a5ca0d215274be60040f2c20b08bc271f8aaa0ad28ca6af2a

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67eca39d8a0cf5238680acfd37144dadeeb4e87d4b86346cffe0bf38184debaf
MD5 084a21b76bba0cf61b683e2c64b53cb3
BLAKE2b-256 b947d568730dd5cf0c2d1ac1a6bbc1bbccf1f7196c78cc0b75bfb1e1fd9a2f67

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 67b53523c82fb6cfe63548aad74967f3451da6087bbb2ae86ff7e1c64031396c
MD5 93d325bda67c62bf54e4f82497c39a81
BLAKE2b-256 95575d8047864997368f032ce51a0a873a45da51cf5649223bcf797f5ef3025d

See more details on using hashes here.

File details

Details for the file madato-0.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6af4d332e4ee8448d2da6e5bcc34f3f6d0db1c5cb8ed20a482ca369eae213873
MD5 690ee28e5005f582658d8edc79076051
BLAKE2b-256 7b3b0f93743ac4dba1ed190539ce3233178d49b7409206c620e2f1c6c1b7cebb

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66ea7f96036dbf0c15b184a4d8e154a7ec01e9304b54c39cd1bff3771318c5b3
MD5 cb392163127e95bdde3e5dd56bc1484d
BLAKE2b-256 cb0049c981c2978a0051b95749157ba3845db932319093a5c3b62744b0da6249

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c6590a3cab184b5e308895bee87223bf48a4968052252e7ecfdb6d126adde094
MD5 43b468eb2104d193d2877c6b5420babe
BLAKE2b-256 100d800491e35d92be8b91c51c70a09d6c6c38d404e22b6b40f66236fe769b8e

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 92e1a7e2ebf2dd428a67b6f3c67add1ff0f68838345187030e0113d6a1b8e082
MD5 a1ec766a6bd718be1535219eb09c8179
BLAKE2b-256 2f8c18e89e5d8da5590805ce4c34a2be273d69d8e5e5d55d8c9fed1860aedefe

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e7122087e45d96682f878c69d4df604a761c903f96faaf531e1e299972ef57c
MD5 9d2891a816dc7f89f9bddd1816a66eed
BLAKE2b-256 3999da920242b4233359b30a07d4b316d34d1eca5f9ed98ac199957674ac6c57

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3b5c666a7b777b3971802e76d607548041451891d9133de2fa7773f337170911
MD5 444573c69eef4f02db72bcfe076a9174
BLAKE2b-256 c4781fb54750edc056dff13aa13cd63f3f94ff50064c8a03a9883621683a041a

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b668f2077e10bb23d4713d0fafab43164cbf71767557fbbe417e1b9b3acdf8e
MD5 9c4009a3b022b2d9e438a1c59b2eea1a
BLAKE2b-256 d4621c6967912f8b5b149509800a36f419e26867cda48abe97130545f7a434ea

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: madato-0.7.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 680.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for madato-0.7.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 22441d88c4c3eb235adc4dc5ec4551c46b34ff735117f1218ab4143723e5db3a
MD5 facf6e03b9a575b31d2a2c04cc67eef2
BLAKE2b-256 b06b7a9c90509cb402280475a9444cb3de237a86f09b6a105d7c7e7781ccbd9c

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: madato-0.7.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 658.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for madato-0.7.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5aced584ed3e1f31a1c5b4b09c0312f8e6c32699137d7e6bece5d3cf7d972748
MD5 d54f8168d090d08eb769c2671a7f967e
BLAKE2b-256 cd85b1d727b1796401c20d1b4f3deecb202f0939cb8dc5709ce765e823756e61

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0605549233f853a3e5bf74c78a38683fa8807a6165b296271d33055813d0df5f
MD5 d1d0031020c3bb612ba15f700ce15e22
BLAKE2b-256 5167125fdbbfab51a045f4c13814afef316a9c7df6c9cca83bc03529f9ff9789

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 79c5efc04177547059d0c54bdff5a79dd630f6309dc8c0596cbe39d18dae04b7
MD5 24796a8df42e790a36949fbdde9e1c11
BLAKE2b-256 9313366b51ed5b8694e0d5b464359d6aa39c673877d424008a8e365dd9f321ee

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b28cabd170bc17df52fed0af5df14f24d9e34012b029416b4ce9f8940e436e8
MD5 8a9a0e085b35d0a6d10087b9198c0c2d
BLAKE2b-256 14b12777ed7b5fb4dcfadab67a6e18409dfec6754fd28a77a250d42c49722d8b

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a256eff5222074331816066597b6cd91615cc1461f631c4b2f234ba8dd3e4511
MD5 a1331edd4de3f536f21ff4a24b829db9
BLAKE2b-256 7d5e411390449e463a51e999316f17940ae5d6d2ef3824cb3ed67891457e3c89

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b0d2c8d4c2dca9b5c9178742de132f0cb56ea678d8964722fec031a2fe66394
MD5 ab93e33ea5419c61e0ec1932e585d02a
BLAKE2b-256 df6cf273f62716d11a242324701aabbbb794f556660020fe3ac288abb389493e

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 03aa8092ef14fdd947dfd85ef086521b15e57fcaa654dc0387fc9a25ca5244d1
MD5 03edc99ec4d0af9721cfdf207e79e0c1
BLAKE2b-256 18172121776b82e4b0824bc0593b6dfe6a1dd19ccdea0986215e4dcf24acaba2

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bac6e351bf9e52f4ff42cd75350ba718b2ca2ddd0e457d77829f501dc9c0cef3
MD5 5b1740cc81c57464936da85c31667def
BLAKE2b-256 76ff28d2c87cf507ce1d9774b85c827313c17ee950d0bf429cb6de4e6d0664b9

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27455e3e5941f8b9b6dfb19c8a626dd4690148ebe1dfcd44536fcba23d612aea
MD5 2f63c2639fdd927dc27e6608b384b6f7
BLAKE2b-256 01922ff8deea9da8dac6372efa233627bc822a139bc63bb20844f175f1ccba11

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: madato-0.7.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 681.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for madato-0.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 28139a73352666e90b080a58ce2e137a2d1c9bd8d17b060be820944a619e41aa
MD5 afe008d8bab806dd430a831ba8adc6fb
BLAKE2b-256 063be3ba267a7c0177e40d916f8951ed3528fb82ed299e17517fc5a13f48c621

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: madato-0.7.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 657.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for madato-0.7.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cb9fba5851bb5f206c1309ec0f0a32faf400c19b69be6486ce3bd96468666ce6
MD5 4f17d3fe5425bfb16b78128b8a93ff60
BLAKE2b-256 907fc39886277c43961d9fbf2773dca7a301ab2d6a9bb63cbedc494dcbb54666

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 864c3a1a216b093468578c7feaf6ad22c4472b252b4c09fb572f68264e9198a5
MD5 370f31c00d62ee0a033acf75aa0bd92b
BLAKE2b-256 4e534394c39dc9ecc2062552e1bbea6fd9efe96090b05e2735130ae1e3e2f928

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30a676ce5d6dfd3061acf07da2fc3efe3cbad2c5335993beca21ad8439d576c6
MD5 1048cc67b389aeb525497c4ad0a01641
BLAKE2b-256 dcc9b2f28b7ff7f5861fd669fad30314612bcf9d9a608193b4396d893fda03a0

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d9f53efb9b70c8e46030173df602e9dfc020328155cb0caeab62365470e587d
MD5 59c8d6899c089503d792f96b434e6dc1
BLAKE2b-256 aa41619c5cf48551aadcc268e21970dded1bad1f369666d55c95abc201aa6903

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8895e02b2ab29a3ad1d4e83cdbc2ea8a685140795dc72c4676bf46335c2801ff
MD5 4c257b09d746eac9d4c3b67ba86ca8d5
BLAKE2b-256 b331078402f9be45a57a4bc0421a9ef4daa7d486340cacefa026542765f91c4e

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61f55261b57110d59f7794ce6cc0da344d5c8616a0d788b706a6e277371969bd
MD5 84c6cf14194d6af2eb36ef5fc9e0104e
BLAKE2b-256 4988574b9403cfc1e09bcf5ce8f462e42d5f3ae908a656721b0666a3b330892a

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b8aa12da6bd8bd6ac8d735ce5f438d5be48712c767d62d32cd62a952e2b4a4bc
MD5 d7b1913e3edf63feaeb2a50ce43b63d2
BLAKE2b-256 dbd196e15c7536fcbd584b40a88c68da4a808297360cb14b40b48b1db266b6b3

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e7ed7cca4fc97a3efc0db972559aab5f71d36244828852115024f8d99cf870c
MD5 31e0238d8940a7644fd410f7dd4a4cdc
BLAKE2b-256 9792a18112420bd9edc36e150e11b8812a9a22bcaa96c6261a542e032fc99766

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 143024fb2ed4ce2c1a9150e0e31d894a6c64087ed17656711e9d7bd9bacf13f6
MD5 b6e3ea024737ce1a65cb07c591e741e1
BLAKE2b-256 fb0913beb4bb5a26afee6d8f4ba7d7aa175be469bb33bb66f9ea6b0fa1cff74a

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: madato-0.7.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 680.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for madato-0.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c0832e0994052742a9def38b982d4f18c71c9b0c4e21f7c001dc96cb3578043c
MD5 ed3fab25ea890f104d1b8819921bdc04
BLAKE2b-256 db7740856103b239af2213f037b52bf73403d318b6d18dbbdd46e54a42f5a1a1

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: madato-0.7.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 658.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for madato-0.7.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c97a33ef5b81b13d6f1959536342f99e86ccd67110761e941b0d021787e3aa9c
MD5 e6f6eba7d6722cb81727698dd28fd1b2
BLAKE2b-256 4eb48426be2d307157d6a8409fc2f096e51e1d73ff4273843722dd8a655fdaff

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81010ea0b4ce7bcc627bdfb725100d0a315c3b197d8311d2550b3203aa8f4522
MD5 18526adee248ecfd0c9269f399d4665c
BLAKE2b-256 fe1182e783588cb1a522e32fe95c68c6fa02d850790666e588053d388e42d3f1

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce7031c1598114ec46369c2a3901cd4c7de180de2cb8aea1c1cb48fbebdd80ab
MD5 16bee462bfc4d3b3a089c800b6314da0
BLAKE2b-256 69ceaa47ffcc29eca14940cfa441abd018d28dc679a733cd73e37f723535fdd4

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ef607286a4977ba6cdadd005560bfa7c637efc1def7518432157a472ada321f
MD5 d48d750d0b3544cf65010bbba5257531
BLAKE2b-256 d0fbe64a77de89b8d25381396bd7513aef685063ec23c3ffae7b978b6b8c06a4

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3bf3416de117dc42f5fccd1e6828e52921a487508edade18ab18f4134c053d10
MD5 a8add5699ab642158cd39b2726413791
BLAKE2b-256 54fb6b7cb0c5e988bb2a0ccd457bd7254cedc79ecf2ad1a867a3984901b0a21a

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89b635891d6cc9bf1aced6abd2cc86901a303a58e8a181c65b3ce03ee40d0372
MD5 892e36e891d6099739c2abe295ec0aa0
BLAKE2b-256 49e8fecb30a4621719652e3efd8ba15b173221863f60e913ffc812fe47e781e7

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 62f67e9de7a8271cd2c3a0d832f5967c5fbeb8cc4431e6f9f6946e80bcb912ef
MD5 4bd49ade18ca589f387f7acc1d82df56
BLAKE2b-256 bf1d90650a88132c67b6d6682df44c8a97a6192f519c084979ebd7790af12c72

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ed5dfd5826b93e7dc1baf255dabc69ab5a16b50250d0e08ff346619125aff1e
MD5 08a8f0c9fbd4fbf5d6856c42a8af7a4b
BLAKE2b-256 fcb64c45ece317b9f618456067615b32deb7bd555cba855f17eaa92e3e3e32ea

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d21687bcf60068071f1a57d08bd62e527b5c00ce3acbaa279c0d36ee11060aa
MD5 c40742d194bf584423bb9a011d873136
BLAKE2b-256 55d3310fdc1a4f546070c05bb7a46106699f8b8c3bceea50fe20e5bc10b6c47a

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: madato-0.7.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 680.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for madato-0.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fdc3feb2a489625e45d17e0544b05ff0708fdd2d5cd098d9d0e16307060adab4
MD5 c32504211b9d9a33f736acadb9be43bb
BLAKE2b-256 aa33d4cb8dbb8f09be82ce13c638188eae0570ebf5dd7f086f6304649693a9b0

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: madato-0.7.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 658.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for madato-0.7.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 eb58686d1321321d3e2bc4c63454084b6be9b8138901003d29056880f8b9bc66
MD5 700eab5017d281a72989e9de3b72911e
BLAKE2b-256 3ce97c7ca8591f3c310ab9d5c832bebaea2a7cb29774f8dff52b46cb37886299

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad58f31b521aca5426498c2d7fc550302ab8ffd24af4681a91e9e756d76640ca
MD5 b18f418187e9c80861cfe612527b2d72
BLAKE2b-256 fffbbcbd8e0f51bfcd6da1d72b40e5bcdfc7b25a2b8f8bdeb95bbb5e512849ea

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 69e579f3dcbe35c5433bebc10ec4a963a6966119dd5f969cb43cd80762c7baa0
MD5 ebb4557b5145c73975e61c35e3a6554d
BLAKE2b-256 1d62293621b19e42372f30592e8a3ac89a2d9756164a31a91f9e169a4f6acf8a

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b1e15b22b3316a6ff73bc962acfded143e91af0463c664e8c4820fa596c464c
MD5 8d91b858d050c05f14364f8c748794b1
BLAKE2b-256 6b7abf7619016f206f97aa15f572c771f673ab7f40eeaaa43085b01520d57e04

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 72e633b9cbb765f1d5b254b07fcc65b5429fdced993980e373fe22406b278f98
MD5 e6c3f3f0ee5299cb965c570dc4c5d61f
BLAKE2b-256 162ca0f3b14a30507558fc794bd0cf3495d9ac0b098f2e523d0cae02dca85d32

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f206ed9e57747bc7f2377edb44f25f91eeca94e4082b9c1fdcf0adcaa9d9619
MD5 dbcc73499280ce30cfc0c85e4d19fa71
BLAKE2b-256 31f4929f62ab0f37c331ef01572d99779345b3f9bbbc49eaab4088d5df2e1956

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bf207d2ec536d5cf4507255925375041e0090a43e342e5de3edf76da200df3ea
MD5 b32364ec26da1cdd27d8e8ed0c06c939
BLAKE2b-256 d3526ed230ddefa76d2508c2e5ed07f770b50a893d8c7854d8aaa672f8328da8

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d5316483ba02b1add16f6f25b9d13fe7abb584faa15d74184aa0d8b992cdd56
MD5 2fb8dcfcb6380e8cd42e29a8ccdd25c7
BLAKE2b-256 01694c71116298bcbb7d363329105caa5f7b465b8114026c213eca133cae8af6

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 26b1eef7b11733c5ffc2bb2f513e80c6bf1f145c253d8dfb3122487fa2bd69f1
MD5 77976125469f366daacad4ba9bc6a1da
BLAKE2b-256 7d3580d80c86621df23041166937e134eb7cb579ab0aa330f649f2fdc0b04e87

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: madato-0.7.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 680.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for madato-0.7.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b7eccf5af2c86e10c7b236bed06a819dbba10e2d8e6062230f7f6c91813066f6
MD5 8bad34bd6cdbaadef862bc0ba6dbc553
BLAKE2b-256 d894f829e9fee0c9a10b0556bfd68dba122b1236962b6ebffc415eaa3419ad98

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: madato-0.7.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 658.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for madato-0.7.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 edd3ef82dbbe2bc7e391e949e1552e977b879598874e615cf3c80d1883d928ed
MD5 3de24169da2e0f6768f549d8fdc9bad3
BLAKE2b-256 5574b6b5288041437b7cd7884e71a80205cb9df34fdf2ffc16f1bcde6bbb28d4

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4afce167ac72ff22070873ec971cc90c0481973a9ce76418938fe60d7c266fb
MD5 5a62d3572b29b9139cc6951c91d7077b
BLAKE2b-256 08feb3ee90c31aa8bfd406cb7252bded4ade60e6b1ce554c1bdb4e7fa8d562e7

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 835fea0a30609b435186fa4bcbd1d25725db4018bec5143f052a5625d02c0c49
MD5 50b4d14b17f1b0ab6dff790dc51b51ba
BLAKE2b-256 e3c1af292dddcb680111787bc6a13d0b85f45490255852b8597421ef0ff5de99

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 327ab85e97a3ec865b1dff70d739783bf3787f2954e3019c865dc7c97ae429a0
MD5 e426952b84dd12411fa9ca1ead8d7de6
BLAKE2b-256 21a64b6e56231ca5adc2dc7f2870b935b3a13949a4a13e2911340933bb4d7289

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4adacc2100ec21b64a163f570f7042ceab6971edbcdbefe52677290ca9a1c2dc
MD5 7b7cce5c745181beab060c3b63fcf7d4
BLAKE2b-256 52283eed1116608d52807998008312a4cb17b1079e3c1a7081ed550e22449aec

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1f572f2119d96eb882a78f0eaa6771c4447d6497a6a71e1b88b4a99bebdd721
MD5 e26dfa49ac6e1c5b20afb05bdc6f7a2a
BLAKE2b-256 0d17e6d0a7b3ae04c6e2e76d1da3d3474ca6b3a169caf00b9073679b035dc682

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 160ee98d13dd5aa5c59e3b16df8297779fb11ef8739a167d062c3a94e5a96049
MD5 f8d85e2a50150e3d0009cb83a086814e
BLAKE2b-256 17d0b76d21322e5f1f764f3d13e06d126a23b47af5254aa315a0fe2aab1848c6

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f511f3bcf162de21dd76c0413a26f89754718d9828f79653063c05adbe4b3085
MD5 4413274c8e3a4e618107ae18619a8c44
BLAKE2b-256 76b626a6416df6b90160c0e79f869159287ce889c56feb45515a3be658f64c36

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab55bd22eeb29aa709a45d0a7b93a3b76e157d7d7981641a337b2ea9d7f1a6a9
MD5 08a51c42c4810748fe675aeb00d033f2
BLAKE2b-256 77d5f786addf8a95d7fc7082671b4d5a8ebcdded61834bf8e210a0b5be04c0d9

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e014a9d4cd7e34fc5257ea1ea86153b75cbbaa59f2465103196f89adc602677
MD5 e331782cc068c8469e362c15072ca833
BLAKE2b-256 f7904e6defcefda7a531a884c8116ddada59f07b9d2b7c19e608ffa2eeb888ba

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b3bb6abf6668d7542f3883a7d633e48578f89585cb839d13232ad848e021d688
MD5 164c030753d198e7c8aff2cfb7b4b3fa
BLAKE2b-256 19cdae48897a0279fe80f7b44c5e3223c7ab53479936f21c799b5798b4abca2e

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18da7a594ab12d659c579b88806819fca4bba7aec79053d163c357d2f3e34d6c
MD5 47be6c4215934b6e19f74254db802518
BLAKE2b-256 564f18480272fd7e25e9f34aecfb6406137e6defaf7b894756b7cba39e769349

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 99af72acec1881a9d1053e88efcb93e8cacfa7883bbf6da8e70ebda992eb7ff8
MD5 8d496b93a248a1cae74e81edd9a3cadf
BLAKE2b-256 ebb1031310509a36348d3525024d3c923c6726101889f7a2e1487d1b07b2f32d

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e62cb377511f9faa672ba40488920f546c15ac1a9d24f68fe6a94aef033e864e
MD5 fa2102e80ef2eef3ee475d513c0a9efa
BLAKE2b-256 00df38c36c9b78a38b814075495952aa510b9c0bcc74d1cab419781902d9ecf0

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be21b00e351e906feb9254103c9aa49938defd1882ce0e08b94b493daa475399
MD5 be805791601da36e138f96312df251c9
BLAKE2b-256 c6a388eb4c0cce5ea87ea4e85470f81f336288304b8bf406fd9fa21677f43da9

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 adbe5e57e8c1bfc13a16c5571324901ff96e476fbe37a7c7118703247b9c45d6
MD5 9a89a3f4df4d86da71fc4f679949bdac
BLAKE2b-256 4f050e428029d81ffbb0f6538df5d95691da2265c67a00e0e8cba9b5d08e5988

See more details on using hashes here.

File details

Details for the file madato-0.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for madato-0.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ae933417b94cd799557ffb810e694ef12faf48bd8b328d9ddfb4553a6ca6447
MD5 f0c1a4676b8634ade57b55891d73ab28
BLAKE2b-256 c12540716b66961b1df41da65f2310d68c0267025f31e88cca741049794d1f88

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