Skip to main content

Generate lexicographically-spaced strings between two strings from pre-defined alphabets.

Project description

Mudder

Generate lexicographically-spaced strings between two strings from pre-defined alphabets.

This package is a rewrite of Mudder.js with a Rust core that is used to generate bindings to Python (via PyO3) and JS/TS (via wasm-pack).

Quickstart

  • Rust: cargo add mudder
  • Python: pip install mudderpy or poetry add mudderpy
  • JS/TS: npm install mudderjs or yarn add mudderjs

API

The API is the same for all three languages. Note that there are a few differences in usage compared to the original:

  • The SymbolTable constructor takes in a str/string instead of a char[]/string[]. Each member of the symbol table is assumed to be a character.
  • When calling mudder, optional values for the start and end parameters use None or undefined instead of empty strings.
  • No method overloads.

Constructor

Create a new SymbolTable by passing in a string. The characters in the string will be used as the alphabet for the SymbolTable, with the first character being the "zero" character and, the second being the "one" character, and so on.

In Rust, the new method takes in a Vector of chars. The from_str method takes in a &str. In Python and JS/TS, the constructor takes in a str/string.

use mudder::SymbolTable;

let table = SymbolTable::from_str("abc");
from mudderpy import SymbolTable

table = SymbolTable("abc")
import { SymbolTable } from "mudderjs";

const table = new SymbolTable("abc");

Default SymbolTables

For convenience, there are a few default SymbolTables that can be used.

  • SymbolTable::decimal: 0123456789
  • SymbolTable::alphabetic: abcdefghijklmnopqrstuvwxyz
  • SymbolTable::base36: 0123456789abcdefghijklmnopqrstuvwxyz
  • SymbolTable::base62: 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
  • SymbolTable::hex: 0123456789abcdef

SymbolTable methods

A SymbolTable has the following methods:

  • SymbolTable::mudder(n: usize, start: Option<&str>, end: Option<&str>) -> Result<Vec<String>, &'static str>: Generate n strings between start and end. If start is None, the first string will be the first string in the SymbolTable. If end is None, the last string will be the last string in the SymbolTable, repeated k+6 times where k=len(start).

  • SymbolTable::mudder_one(start: Option<&str>, end: Option<&str>) -> Result<String, &'static str>: Convenience method for calling mudder with n=1 and returning the first element of the resulting vector.

Note that for Python and JS, the return type is just a list of strings or a single string.

Examples

use mudder::SymbolTable;

let table = SymbolTable::from_str("abc");
// let table = SymbolTable::new(vec!['a', 'b', 'c']);

let strings = table.mudder(5, None, None).unwrap();
assert_eq!(strings, vec!["ab", "ac", "b", "bc", "c"]);
from mudderpy import SymbolTable

table = SymbolTable("abc")
strings = table.mudder(5)
assert strings == ['ab', 'ac', 'b', 'bc', 'c']
import { SymbolTable } from "mudderjs";

const table = new SymbolTable("abc");
const strings = table.mudder(5);
assert(strings == ["ab", "ac", "b", "bc", "c"]);

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

mudderpy-0.1.5.tar.gz (14.0 kB view details)

Uploaded Source

Built Distributions

mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

mudderpy-0.1.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

mudderpy-0.1.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

mudderpy-0.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

mudderpy-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

mudderpy-0.1.5-cp312-none-win_amd64.whl (172.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

mudderpy-0.1.5-cp312-none-win32.whl (162.7 kB view details)

Uploaded CPython 3.12 Windows x86

mudderpy-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

mudderpy-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

mudderpy-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

mudderpy-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

mudderpy-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

mudderpy-0.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

mudderpy-0.1.5-cp312-cp312-macosx_10_7_x86_64.whl (311.5 kB view details)

Uploaded CPython 3.12 macOS 10.7+ x86-64

mudderpy-0.1.5-cp311-none-win_amd64.whl (172.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

mudderpy-0.1.5-cp311-none-win32.whl (162.9 kB view details)

Uploaded CPython 3.11 Windows x86

mudderpy-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

mudderpy-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

mudderpy-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

mudderpy-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

mudderpy-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

mudderpy-0.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

mudderpy-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (303.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

mudderpy-0.1.5-cp311-cp311-macosx_10_7_x86_64.whl (314.2 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

mudderpy-0.1.5-cp310-none-win_amd64.whl (173.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

mudderpy-0.1.5-cp310-none-win32.whl (163.1 kB view details)

Uploaded CPython 3.10 Windows x86

mudderpy-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

mudderpy-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

mudderpy-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

mudderpy-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

mudderpy-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

mudderpy-0.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

mudderpy-0.1.5-cp310-cp310-macosx_11_0_arm64.whl (303.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mudderpy-0.1.5-cp310-cp310-macosx_10_7_x86_64.whl (314.2 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

mudderpy-0.1.5-cp39-none-win_amd64.whl (173.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

mudderpy-0.1.5-cp39-none-win32.whl (163.7 kB view details)

Uploaded CPython 3.9 Windows x86

mudderpy-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

mudderpy-0.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

mudderpy-0.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

mudderpy-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

mudderpy-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

mudderpy-0.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

mudderpy-0.1.5-cp38-none-win_amd64.whl (172.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

mudderpy-0.1.5-cp38-none-win32.whl (162.9 kB view details)

Uploaded CPython 3.8 Windows x86

mudderpy-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

mudderpy-0.1.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

mudderpy-0.1.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

mudderpy-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

mudderpy-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

mudderpy-0.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

mudderpy-0.1.5-cp37-none-win_amd64.whl (172.6 kB view details)

Uploaded CPython 3.7 Windows x86-64

mudderpy-0.1.5-cp37-none-win32.whl (162.9 kB view details)

Uploaded CPython 3.7 Windows x86

mudderpy-0.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

mudderpy-0.1.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

mudderpy-0.1.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

mudderpy-0.1.5-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

mudderpy-0.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

mudderpy-0.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

File details

Details for the file mudderpy-0.1.5.tar.gz.

File metadata

  • Download URL: mudderpy-0.1.5.tar.gz
  • Upload date:
  • Size: 14.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for mudderpy-0.1.5.tar.gz
Algorithm Hash digest
SHA256 3d3ae91597acfd91ada8c043525dee5866fbf8f7067335c6317819baaefd7551
MD5 c076e6f1c570c89f80473b9dad978555
BLAKE2b-256 876870205d313cd9ca81490e19c17f3047908af48d3094f18bba48c0f40ac49c

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3331fbd7615b3470c6e0713d94f9d98ad6c1ad0d6d2de46eb96370e7c6767685
MD5 ce7300c4c0a1a502329e4c95646c9e6a
BLAKE2b-256 36e5499aefde55fef474eab38481e15f11605432de636d6f3b3347c4dc62c621

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 41ab6b9c702e1f3231b1fffdf3c8e620c171b05c8346e8f859f3f3f415ea707d
MD5 5fcab3ec4131e6e1f8ce270a15287539
BLAKE2b-256 4d388e9c43e32a49cbc8e6481dba500649bc4816cd5cd6127f84cd6af031ed86

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebf999a5d8c50327645407032e8038a6355459ddff73f512b2d2093a42250a37
MD5 f6df55658c8e7c72ba8af7cb6cf0c936
BLAKE2b-256 6166e08ef45035e0255fc6f4b059949bd1f8b5a93d180b8c00c128ef2c9cf910

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fdf5c31b42c26898a5ca08eb9f5e722bc139f7e6a6b21579e8fe82c6a10103e5
MD5 2ee674f2b027dc4fbae48271cb04f3ad
BLAKE2b-256 166584ade7a1be2c2305852c53f0e320c7bc537ee59973b64c81630a630f581b

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6963f69d787b5369d48d7c55ca398e937a7835fef74234fdbf6067f6b800564d
MD5 a118c99bb2060e1045ada28f44c7b567
BLAKE2b-256 681370ef149e7557cac0099060b9ad2df513de1126696c8ee7ae9b342de5f3a2

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a18af43b54da3fbe2af6798a6992c44034c1cf3acc2f2e028ceb18daf3e48c33
MD5 422e61653cd60f32733da41a8c430ee6
BLAKE2b-256 688aa33cab7ccbe93ab9c2b015e4a5b03fe7c5d886023fdfa84d37f3c5837a09

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81f2d12aa5600829976341f245bfabdb3fed90ddd977a9a7d8b04952474e2436
MD5 44d524fad76177b0bc37bc005afbcfdd
BLAKE2b-256 1a123112bc07aaeec5ced5dd67cc908e4f53eb301c52c68f5a610c81ec850a81

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7e82140b756fe9f3d5315e6ed16a02bdc87bd294110142345f8df4dc4ee9b0fa
MD5 8b77cc543c806b15612e8a015925b32f
BLAKE2b-256 f3b3ce5efd744e530f650b19e128523c3cf3be362d999f5f4b2a8b6e07ab8fbe

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c967888e4a621c8b1a9fba1ece520cc03902abc6385028d1c3011eef058b38a5
MD5 c7eb1ab3ffcc9613341269cb035cd6aa
BLAKE2b-256 7709e2397988db41ee0877ed9810da611ca4c76298b9b04e55eee9e0f06d313c

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7aed1c9e7404600c1ec55e937b9629c05d05332300e9b2e531a224e68f3fd134
MD5 0a84050bff7368d688c883cee71cf049
BLAKE2b-256 0f3e39c1b16097c3af74b9e1f8c1c07326b63ee44c6d31c73a585f2602da4023

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae6496ecfb6798c486d8ed7a4b51067982eb212a8ae5d555b9819886a1b2d017
MD5 7114f5c23a4e484c7a1f1c28ba90e36c
BLAKE2b-256 04c865586fab3fc72cc32d49c478304310110b681fce05044743625567f3ecc0

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d1abd5d679b1cedaef0c433221a7e8ba3d256a164c7a509a5659f080387e16a0
MD5 5807917bd3c659744f9ad77d6946152d
BLAKE2b-256 1b2d094dd890c1bbbdffcb0a09c02813e2ad8d03868b356932fa7d95477f1cf1

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a81bb99dbf8b2d5e3f81cb921333ae135a98f96f720543f46bef7ce117e07756
MD5 15611f07a4833a4512338ba62cf06321
BLAKE2b-256 6f90da241253edcefcaae838211b9f052989910458c83af26b7fea3ba01ba92d

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4aa9efa616d24910f12185533cbc28f7699c9d604526384d4c37472fe9b642e
MD5 3a1fcd130d6c8d16b1165c9ae42d431d
BLAKE2b-256 bfe6b77c7723526f37255b063aec83c8e3b13522975a0286b837bed266ce4e62

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 213af4e9ade3a958a415d2b00e05540c8af648db48232f2e81590987d27413b8
MD5 ec7d8097c28dd2e70f4d8bc9cf294262
BLAKE2b-256 5a74c264cd2c50c4f020d83ff25750241db808ec508758788a1459f9e206bce4

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dcb6d8e6816ce7b28eba03da6a7f4b0ee9e166b3eaf40f892dd78fe26c7dd08f
MD5 d9df5ab4ea3e88ae14f7dfbd5ebea61a
BLAKE2b-256 de940a8d9218e82b18e8b23cc6646b135bfaf8d4fcfdc17fc5f65fefd3718e3b

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51cbc79d614d84ba60bbb9439efb02bf63d6f501d639f3548bd4d3b93e812305
MD5 9d78f503f41c2adde8bc9301e3adadc0
BLAKE2b-256 d34b8ceb33e8279ea45e333ccdf21e588ee1f42633a0b02655b35a88c9b9b09f

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 288fff0f14274572826c81279641476132a4cd667037b08a3d8c035077ca2c4b
MD5 6d4c89b12157242dbd44f11c2119eb5f
BLAKE2b-256 e47d2010243af5f9401938c3098180f393915170a5d5fc94bc7fa21169d6f233

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3b5202e6338e7f5b8b8ea39a15f72fcb5c7b6e3e34cdb9e2baabb071717b4e0
MD5 23a1dd241f6b34b85fb632d46cf6531b
BLAKE2b-256 28aa6be8b237d51332eda93d7762809b6069661322ce331af962e7b32c1423cd

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3bcb61f958657f9227ed923c91453dd3ccb3a7213f23dc9830c575c79db40d37
MD5 6b8561e5adf3f9551076aded52e462f5
BLAKE2b-256 10aa0d1ba316b84e18931510c61bd7104eb731329ee1b2f10696d28b2c24fddc

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11f224c24a67ec898c50d984415bc7e91afe08176a0edf7b4a9a4e4abbdced6c
MD5 07642911e16d5fad5856f775781a2c2d
BLAKE2b-256 b176a13353dda48188e4d2023f467b5468f4aa24867be91c2016861806a5e5c9

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f26af0d7015230e9ad396bac3bdcf9a5a9b39d227144a28de5afa9b9a6b5435d
MD5 db4203fb76cbd4b037d4cc53206e614b
BLAKE2b-256 b318c51d08573de3409f4c7c234908b7381f21f8bdc83d7af975e78557316d59

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c583267a3e5fda11a7cb2a069dad3e58452f0385491a347a7be6b86e73d3061
MD5 3c2a0dbb525af3272aae25fd8fcba293
BLAKE2b-256 385fd91e9ec5666da3f8e75b2c6f61833cf39f7ab0ef865c13840cab631dcc26

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 da4c5cb50982cf793fcd72157366d4cd30cf2c15a26ab97b6ab3c860dbdfeec6
MD5 65d650523cede33d2604a736b6de27d9
BLAKE2b-256 af16b8ed15981586b49f27a400124c4dd187580d12dc4d63e2d8c5b3677d0de2

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 162d2fbde1c39f6010fa4bbe557b464b09c8e7c9ba1f48331d4cad8a3b621036
MD5 3da0e77a5bfe6ed1b71f79e88dc9f19c
BLAKE2b-256 da4c98d48b37c521c271e0019221447836f1ceabea52fc666bcca30aad17b4d8

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 75182acb0f0ab16e6486d92123f04c1eb34a00b5f8c6263e046b2eb20bd428d0
MD5 43ed06c0aa666bc5ca861aaccd67aee1
BLAKE2b-256 a85cc503bac40362387782c67398f74048204234d6229ccfac1fd74017c90376

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d6f4005592c53dc4fec2f1fdf553e8881e9c0293649c2fbed34e2102ff75f477
MD5 77d333b82f4c7413b173cfb9677bb0b0
BLAKE2b-256 016790a45ffc0f5590dd9869f0ad2e9e98fc42096f72f73abc845a0f0d7294d4

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1735905b19ebba382302cc1c5b9452034b6ff6c12b09726e945d6a55395220d4
MD5 6178cce31d7482134130d2628a0835a1
BLAKE2b-256 aca7487882b0ad6e7a0dfb37857ae6aefcb1bbb76a5a4fb834d117d63b7a5722

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 ee78c8534b0630d10d38caf7f6cd70c4328f835e99963cf457c0d3346029a12f
MD5 314af6d544661a0f9168c177febd546e
BLAKE2b-256 87fa3e38a4bf7e2dcfd930d8d67bf5d89497cb085e441a798e61e73096159bf3

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp312-none-win32.whl.

File metadata

  • Download URL: mudderpy-0.1.5-cp312-none-win32.whl
  • Upload date:
  • Size: 162.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for mudderpy-0.1.5-cp312-none-win32.whl
Algorithm Hash digest
SHA256 dfd2c3b25cfb671d9ff9f0e4196e314dc6cfd3760a0e48d39342fb3b2e154236
MD5 cbf7e4b1d751af025ff714be3d0e2442
BLAKE2b-256 316d9f624fd1a57b3b0237c30f6bb1030f2c00871928a0e47564b6296554ae15

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a28dea586bb5e129b516df169d62380bb433641404e82919105862d9c301477
MD5 8097e39223c7dadc54b21c842ec3a3ba
BLAKE2b-256 66901f04ba8ea8ab3df9c6df79988be08871e786c4e53ec024877e617a5e5ff8

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ece8219a7f9fa5205fd21cd57c9ccddc80e02dc9f9d58b426f5c898e3dcb243e
MD5 bb97f72c1dc9abe011ec585da5863400
BLAKE2b-256 59d8ac27d3628e99a757fdb56ce1477f90a89781686a6a1cfcb0760c08f44901

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b51f1793df26790e968209a07ffb6a764d1c20007f9a13ef1d864ab1feeda461
MD5 f5f6d4c559598ef6a0629f972b736142
BLAKE2b-256 131b0800be52bb8306104b1f59b5bc86c47b7024cb5825257d2770acb08ba651

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf79cadbf3301fd52f599060ebf75bfa0b6fca3259e2f7c3bdc5892c74f8405c
MD5 6535a19be7e614c4d370a82e07db356a
BLAKE2b-256 7639afb4713f465bbe0cb9c02eaa7cb0a2158ac6f403690ad6cd21345f8647e3

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a50ba762854831f536b82db94deefdcc4790a998421f44e206b18c1050db8eb6
MD5 a2e42a054c8cb64e9c28f71502c97884
BLAKE2b-256 aaa1ba15586d6eef775622f0e2fed77a9189107463e1cf01c66bc1f50118d8c3

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 184bcadf2fd79a98c9c1d1a5e0ed90f4619d282329d06b482841210b1fff1740
MD5 72b006351ef75c511c82a1170a29aa78
BLAKE2b-256 6da277a6a9154c57efdd60ead1fa58a4d51b238fd19a7e9a82c1e82d69b3d15a

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp312-cp312-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 03ffb76b41dc7574045b2e64c3bb581ec71548b51cf14cc993356ae1793c0e55
MD5 0552aed2a86a7af640fb8bf881346531
BLAKE2b-256 2d27aa41805826d43586a10d2d78dae8442a877cd245a3ed999737c4f1fdc77f

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 5fae4c8eefc19b1c225fecae92bc518cc60c48d26d92d37b3be17ff5514f07e6
MD5 b2eee8ed6314a2523692687548a26acf
BLAKE2b-256 6512ddfb5f93789c98e39078fb323202030bcf834e8f3105e59be37093d92807

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp311-none-win32.whl.

File metadata

  • Download URL: mudderpy-0.1.5-cp311-none-win32.whl
  • Upload date:
  • Size: 162.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for mudderpy-0.1.5-cp311-none-win32.whl
Algorithm Hash digest
SHA256 7f61a9502a1fdfce651e9ad1b46236504818b287be6399bc31b98622a9008d85
MD5 1b0106564bf94c3951cdba343c6a1676
BLAKE2b-256 974a7707338810e16e2ed1dbf8280f19d392f296437ac665961dbc50c8f53dc9

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3c3b38accb87f621b62d61e45cdc09c518f72592f2f4c11ceb5b8d7d7829cd5
MD5 919a3358af41d01f4f9ad1265f0037b8
BLAKE2b-256 a8916e6c935d44f3087024ac65c2fa8e544ffe47fc8af29a2190e1f3402981ab

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 54e6ef3c82f8f04abc981248bf6501b373fa5e2cee2d9985107be7e3b821870d
MD5 eb2bdc770bfaca8a513f33b47a1b1d4d
BLAKE2b-256 d23bd5d34943c94451cc0e4a40558e666be8591622dd209df3fbc53cf83369db

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b820e28ac19120b7c89d4c4f3f44a3ad895349a7070423901a6e4cbccfa84e6c
MD5 80a7adbc51ba7f46faa156a13299a371
BLAKE2b-256 bcb5efa026dbacee9e1f29df916bbd467aea8c31211a632638033f23c7b2e636

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 22e42160c816dc436ed8f2bfefe6dbdcfbb409bb2f1c1ae542cce8726e96c253
MD5 d27f67c348b36441ff640fc033c0cee7
BLAKE2b-256 1a9f71a25b71047b09a20b4757752ee34ed4711d97c215cce7ec66ed6786b865

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d63510c1ca30c1e8804e86940ff5f60a006c677272bf1f2530d8ca7457729ed3
MD5 8a1c191249636ff34c79bf1c4e37f82d
BLAKE2b-256 33c6501e5ae07e91e7da6b50dd82e54aac41cb587fe4416de01c4d95856508f6

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5caa8e94f37ff1aab00be8f694e16a1ab14cd19f3f43900a08472adb0c8fd0d9
MD5 381a973927796dc951ca6d8187e931db
BLAKE2b-256 b383527f63e9cf4cd748b3315a3d257a5ae4b613b71e3f8ff7a34544291a1eb9

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31bbce1389b45470a18bb9bfc7c560121302d36c3b1744527e7d44724dcfb088
MD5 b20d46b219f35b40b7ea3cfa5137d48c
BLAKE2b-256 3c6c84f6cc578731c9e84217bbdd664b51f361f5623165006f6f4bc435962c8c

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0e95227e860457262569f4a2c6a1c5736a3bdfdf7402a851f2e3cf7b4005f215
MD5 e3b2c5dd1c88b956cd31bde4dac08cd9
BLAKE2b-256 c27b8260db6f1464cbd00413af90cb9c61acddffe5e45356e3c07f821a936497

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 068f3ee724df068cb3463b46e827635b1f12fb5ebcee1455aee1c1383decc2f5
MD5 d59d019c78fc3562e95920eb6eb8810d
BLAKE2b-256 1fafa0e2aa2ccd090bb647c7a4751b0550ef7ea46bf8752786fed0aee0284594

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp310-none-win32.whl.

File metadata

  • Download URL: mudderpy-0.1.5-cp310-none-win32.whl
  • Upload date:
  • Size: 163.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for mudderpy-0.1.5-cp310-none-win32.whl
Algorithm Hash digest
SHA256 690277f287b9f24881c51548d31fc5c87658d69f1cb1779cd68c8bd1fe410ae0
MD5 b81d643a0a03c3835035fa135c12c820
BLAKE2b-256 12c6090a4fe17c8252b65a326784bf9c1c2f69c9d65ad153f3f5062c17f96eea

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 106b1cc775da6a95f4455edb038fa27f135b464c2cf94cf0a925f738a3fb872e
MD5 be45db3f1f3b1a4ae78d2e62d1e9569a
BLAKE2b-256 c7dad4198ec12ad99d4e7c0433bb73c2142028dd39010f0357dda5f0e1292701

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5cc80284b18afc9680709e597fd18e23b3782489c38dddf7274b27fa74f84ec5
MD5 b3b1ea1c3bdb9194b595cc6be6da520e
BLAKE2b-256 cf300147932d7115b6a82fbe1a9824cdb0e32c1e11623dfd4d8dc2cf613e829e

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 32d5fbf4a94fca7c5bca1123d3bdddce1121e0f96c223601d31a7cb4ac3e1fd3
MD5 c629bfc9c27dc874e21f41a13b0487f7
BLAKE2b-256 675fa0f44e1169ed6f53779b13ed9084a5b2ebf0117dc605c9b9f47341c250fd

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3baad31c1a9a3d2aadb3f17591fde94170ed123ba3672a51a973650b0c58bad8
MD5 2d7b7fd980bfea273c8dda028cde2da7
BLAKE2b-256 8d2d08c2567e3de570927888282e51f9f1adb767e32eb0a9d6945b42a7921509

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9b621ed67e4c0c6f961dc8d409aada784af9281b24cbe50fca0a7b60e64d0b6
MD5 2214e9d90f1b92292e7a9102aecdf0f4
BLAKE2b-256 c77f475bd00310ffac74d9814282c3a86d5cd7c4b8f1e01632d25de7b2ee86df

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9e39885dc9a75a3533d321d79ff52a05abaf4fc14733b50f06b97df64a43744f
MD5 58452055e8745658c049cf9d1f9de173
BLAKE2b-256 2d52d03d8a6eebd2906016345851e6897b6f98c205de64d140a13edac386590a

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71d4f70d1f207757d2cd6b7182b33a84ac9c730cb43099c1beafd4f94d320bde
MD5 5718700dd5cc009b04cacc3c996e9ae1
BLAKE2b-256 d0d74736e4b9692628bcda67bfc43e8a146f3cd81caa218f99eaa1a8a0bf68db

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d96ebb5ffed7f9d74b151a1c66d9cd90192c483943549867fb252230117fa1da
MD5 1dfde5e3ff4e247870687204be672637
BLAKE2b-256 d5de9ecb16c839cc311a25009e4ef6ad986cc6046e3d3f716fc9d899c9133b08

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 610d7769f8510c12791e86b1b6d7204f94459001fa1439544949db9eaa128964
MD5 ca118f7fa9787194c74d96e101cdd467
BLAKE2b-256 767bf442ac3be477669f2e4652c825ef34adb62872e9f439dee01a0bec19fcc7

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp39-none-win32.whl.

File metadata

  • Download URL: mudderpy-0.1.5-cp39-none-win32.whl
  • Upload date:
  • Size: 163.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for mudderpy-0.1.5-cp39-none-win32.whl
Algorithm Hash digest
SHA256 31b2402b1634a74ef5190043e6f1e5ea0db32676b55b739bd7eccdc007582581
MD5 e68d327df8b632f30e78e34ac83cd49e
BLAKE2b-256 19d318c61028246eda119393577bcdfeaaaae8af1aa3cdcbc6541ad274ada452

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1991050ddc88496fb79f5e99c86711df0b1c6bb43a1aefc704f22d77fbce406
MD5 95835669de447e5d92f8fb0fb1c6b092
BLAKE2b-256 51c80e30fb071eb73d769309e1ac74316dfdfec2d177bb901c3de192961854f6

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eac3962da6044adaf70a03822128f10a0ea5489715267f80d49dc033ae8bad4a
MD5 0a332c0c7f6997f056c3c91e4dad6077
BLAKE2b-256 7ad30e0a6eb46039c0758e39decad4f368d257ffba5a7b0bba8099ad33027fcd

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 935aeb1473a82912e328003c0e851d2740617f2309c99f093ae7098800a2fe94
MD5 1ca22625bfccc7ab5fe741b3a4db614d
BLAKE2b-256 86f7da2149bf399e3e24e1f096002916902d89d4fd8c94d1ba3e61ce18a1d753

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32e0af260a3ba506b4261ec809ab08636125069ffef3a1003cd562dec6f27d18
MD5 fb973e69d419326e7baff6cb0d6641ca
BLAKE2b-256 9309518c967a08165a621e014907b39a6a4c2ff1377b280d10cd4dca6494f2ac

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e7689f0d6534cd30bfb672fec2e5468aad243b9ae0cef01bbafd4cb6b317274
MD5 3f1df9f42c7f37eda8e14f6162ed8d28
BLAKE2b-256 85d5a8bc9d3d194a8b1e88127fb6f1c332e5751b9b59d7338dbbe89a3b2cdd9e

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3402a135a98b819983e9bb7551c221ef462b749fe674e2b5f4f11fbce1bf5b4f
MD5 e72ec3fbc2706c182efdb2b58d681bff
BLAKE2b-256 ba85a2f80588fe39cbbb81c76afa18fd51e179bfc309f89e68d83950a812bed7

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 9b0cbedc28e6ffc131b5749530af98561407ff1aa4eb79c954d980dd2975ef12
MD5 20949eed40261e771119b5ce96c97691
BLAKE2b-256 18a634167f779204305c50844b2bea0c5ad80d6f0b55ee587821f49a83b4b79c

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp38-none-win32.whl.

File metadata

  • Download URL: mudderpy-0.1.5-cp38-none-win32.whl
  • Upload date:
  • Size: 162.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for mudderpy-0.1.5-cp38-none-win32.whl
Algorithm Hash digest
SHA256 ef6608b3dcadf178d08ad10947d3fea824656dd263ee63dd4712cbd10455877d
MD5 cb937737bf4a0b264f3cd584479a0645
BLAKE2b-256 3704f16169f6c44533ca957876ca34199027adebf5ee9d36e8927066708d1d92

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c447ce7696b9c7f0ea8fb88cfd53962318b2aa0793e19a195175b53a410d28d
MD5 09d84230a102d180f94a2cfb8545a69d
BLAKE2b-256 2e5b52ebddcc878c4a661219ecf4b2fa13961d541ce6ba2708194676928b4006

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 70ed49ac277fdc08df55518986ba165a95c67c0d6f7695cc4b7cec635e742657
MD5 e28de2a5e84f1d0419618b0691d74ad4
BLAKE2b-256 45c2988f09d9398a455b3704388b6dd1748a9d0183e2d1bba577b95b67a48b17

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9d54b3d80422c33a719c3c48385bbcca89608befd350ad24c3776b812f084671
MD5 8645b6fa4e9a6bbc3b21ad78fb8bc74b
BLAKE2b-256 510b50e5f1efc59bbce653d9ba6e1f51d7c944dc21baee2a285aebfcd091043c

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 601cb49f5d79d7ee97d00349ded7ad5f1805e321d560fbd44f9269b8ef709c67
MD5 73c7aec422ea3b8e59ededb615c51787
BLAKE2b-256 2fa9e4abd019c1b46ae38aa4b21bbf9705f2c157615de43aa453a5f220a69359

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d409244f16b8909600aceff3370a2e0504020b9225ec563d6289c56c7853a16
MD5 594c0d94ab6e2fb33d54eea0d36e7ed3
BLAKE2b-256 549d09ec92da16faf70c26a4005e4c60390fe484eba8f726f0e28f64827e970b

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4d0647b6da0624f7ffd8715fa87506dc2a2917724ee60901566a5616915434cf
MD5 54e882d4e979670e6923576269303bc8
BLAKE2b-256 2b62608f8da68e758cea736b4d40e5af6ae37c6d50900c86c63bde6bf9d86dcc

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 02d151d7b5a98298b3682f827cd954e73171d5893a133042e5a14059bcc4da9f
MD5 6236c8dc9e0e28009b27808a292159f0
BLAKE2b-256 6d16042e53ca718ffb1d9b43141e7d579a7db9ab35728220cb94ced90ca51a4e

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp37-none-win32.whl.

File metadata

  • Download URL: mudderpy-0.1.5-cp37-none-win32.whl
  • Upload date:
  • Size: 162.9 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for mudderpy-0.1.5-cp37-none-win32.whl
Algorithm Hash digest
SHA256 5b8dc4d87ed862a215a0ea3749a8f25ed95eec3b9fa5cc1c17a3f5222f2ba732
MD5 15faf893c011c8cabfff7f49e57a7b13
BLAKE2b-256 cca2fe8d427b23f2b81123108665faddaad3880ca727d177f02b1eb42de145d2

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a37fee4ee62951fd76086f16aea925b43c355a02b3bb385771918dfcfa84ac4
MD5 2003c9d7fda3e8728b18dc055b518354
BLAKE2b-256 362aac39d4e8df678665ac301671dedea125b2db05e7636520af03f922f1ce5e

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f1202ccc6700751f1a13f4fdf8fe0a9e8eaafee94d801a6d29bb2f2c01e9a32
MD5 9390c8038d97f240e1c9a8c3cba7a6cf
BLAKE2b-256 d77ea77e9ec22a9ce2db05260b43b17feed7c199c74f13ce738be86bea1e8f6f

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59ddea17e6376f3db93f67b0c72bb79726f0aaa6c36cb1b828bc02b4a06d949b
MD5 b74347eeb5e80d1aac436c3b08aa2d92
BLAKE2b-256 213b56dd2a1b012cc9df590d5e5f14208b8a32593813a2593fe6e11c4c804a05

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 215a17b6b0d915ad1045cac1ac340baff87674d3613c422d3be0593652d10c25
MD5 65adb041e9ff3f73d88113fe4315bd02
BLAKE2b-256 ee024298ffbbc1d5181f8f5791b31dc02e4c27e7938dfebc406f5e120248fa91

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b46d17e9fb9e8e0cbed59f3d4aa34dbcb352463705866cab6f866d9346a43586
MD5 42315a625ca7596f9e4adcddfe268053
BLAKE2b-256 60e51917124014e721a595f3efbc7c584dc0d473bc3150a0a8d0dd41f35b4e42

See more details on using hashes here.

File details

Details for the file mudderpy-0.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mudderpy-0.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7e61aff67d3ac88600fd41ce1fd384c4ecab1f7f04023ca9089e1c9030cb43b1
MD5 89d8a25b0087eb817ad5aa2ad3713f5a
BLAKE2b-256 8799ef6aa3c64f28127e4277d658254d42fa52cac2cdf6807f6c027e3dec2654

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page