Skip to main content

MORIE 森

Multi-domain Open Research and Inferential Estimation.

A multi-domain scientific computing toolkit (Python and R) for observational inference, with sociolegal, signal-processing, cryptographic, spatial-statistics, statistical-physics, and psychometrics modules. Hosts the MRM framework as a primary application for Canadian carceral, police, and oversight data analysis.

CI CodeQL License: AGPL-3.0-or-later PyPI version rmorie on r-universe Python 3.10+

⚠️ Pre-alpha (v0.x). MORIE is in pre-alpha. The first alpha milestone is v1.0.0; everything before that is point-releases of pre-alpha code. APIs may shift, datasets may move, and findings may be refined between minor versions.

Installation

Full step-by-step install guide with platform-specific notes (PEP 668 on Debian, python 3.13 segfault on Raspberry Pi OS, etc.) is at INSTALLATION.md.

morie is a Python (and R) package — once Python is present it is pip install morie. If you are starting with nothing installed, INSTALLATION.md opens with Step 1 — install the prerequisites: every tool you might need (Python, curl, bash/WSL, Git Bash, winget, Homebrew, Docker, R) with its official download. The short version:

  • Windows — install Python from python.org (on the first screen tick Add python.exe to PATH), then pip install morie. Full walkthrough: Windows below. Windows has no curl/bash, so the one-liner does not apply there.
  • macOS / Linux — the one-liner below sets up everything. It needs curl and bash, which macOS has built in and most Linux ships.
  • Already have Python ≥3.10 — just pip install morie.

For terminal users — one-liner (Linux / macOS / WSL)

The simplest path if you have a terminal with curl and bash — both are built into macOS and preinstalled on most Linux (Windows has no bash, so use the installer above instead). It then bootstraps everything else for you: Python via uv, a managed venv, and the morie wheel. No pre-existing Python or pip needed.

curl -fsSL https://rootcoder007.github.io/morie/install.sh | bash

Or, with R alongside Python:

curl -fsSL https://rootcoder007.github.io/morie/install.sh | bash -s -- --auto

After install, ~/.local/bin/morie is a thin shim into the managed venv at ~/.venvs/morie. Full install instructions, channel comparison, and platform-specific notes are at rootcoder007.github.io/morie/#quick-start.

On minimal Linux containers (Alpine, slim Debian) that ship without curl, install it first: apt-get install -y curl or apk add curl. macOS already has curl built in.

Recommended — Windows

Windows doesn't ship curl, bash, python, or R, so the Linux/macOS one-liner above won't run there. The path that works on any Windows with no prerequisites:

  1. Install Python from python.org/downloads — on the first installer screen, tick "Add python.exe to PATH" (skipping this is the No. 1 cause of python being "not recognized" in the terminal).
  2. (Optional — for the R package) install R from cran.r-project.org/bin/windows/base.
  3. Open PowerShell and install morie:
python -m pip install --upgrade pip
python -m pip install morie
python -c "import morie; print(morie.__version__)"

For the R package, install rmorie (the R distribution of morie): Rscript -e "install.packages('rmorie', repos=c('https://rootcoder007.r-universe.dev','https://cloud.r-project.org'))"

Prefer a package manager? If winget --version works on your machine, winget install -e --id Python.Python.3.12 (and RProject.R) installs the prerequisites in one line each — but winget is absent from many Windows installs, so the installer steps above are the reliable default. The full Windows walkthrough, including fixes for common errors (python opening the Microsoft Store, PowerShell execution policy, long-path), is in INSTALLATION.md.

Python — Homebrew (macOS / Linuxbrew)

If you don't have Homebrew yet, install it first (macOS ships curl and bash, so this works out of the box):

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Then:

brew tap rootcoder007/morie
brew install morie

The tap repo is rootcoder007/homebrew-morie. It pulls morie's source distribution from PyPI and bundles a self-contained python@3.12 venv — no system Python required.

Python — PyPI (manual; requires pip already installed)

pip install morie

Heads-up: modern Debian / Ubuntu / Raspberry Pi OS forbid pip outside virtual environments (PEP 668), and the system python3 on Raspberry Pi OS 13 segfaults on importing the SciPy stack. If pip install morie errors or import morie segfaults, use the one-liner above instead — it handles both cases automatically.

Python — Docker (no local dependencies)

# Latest stable
docker run --rm ghcr.io/rootcoder007/morie:latest morie --help

# Pin to a specific version (recommended for reproducibility)
docker run --rm ghcr.io/rootcoder007/morie:0.9.5.4 morie --help

Multi-arch image published on every release with both versioned and :latest tags. Requires only Docker — no Python, no pip.

R package: rmorie — r-universe (CRAN when available)

The R distribution of morie is the rmorie package.

# Stable from CRAN (when listing is live)
install.packages("rmorie")

# Nightly binary builds (recommended while CRAN listing is rolling out)
install.packages(
  "rmorie",
  repos = c(
    rootcoder007 = "https://rootcoder007.r-universe.dev",
    CRAN     = "https://cloud.r-project.org"
  )
)

Quick start

import morie

# Load a built-in dataset
df = morie.load_dataset("otis-2025")

# Run an MRM module on OTIS data
from morie.otis_all_analyze import analyze_a01_mrm
result = analyze_a01_mrm(df)
print(result)

What's new

Per-release user-facing changes are now in WHATS_NEW.md. For the R-package changelog see r-package/morie/NEWS.md. For the planned roadmap see ROADMAP.md.

Documentation

Full documentation is at rootcoder007.github.io/morie.

Citation

If you use morie in your research, please cite the software:

Ruhela, V. S. (2026). morie: Multi-domain Open Research and
Inferential Estimation.
https://github.com/rootcoder007/morie

The single citation above covers both the R (r-package/morie/) and Python (src/morie/) implementations, which ship under the same version.

Methodology and empirical-applications papers (MRM framework, criminological Hawkes process, solitary-confinement / self-excitation / institutional churn) are in preparation; they will be linked here once publicly available.

See CITATION.cff for machine-readable citation metadata (BibTeX, etc.) — that file is what GitHub's "Cite this repository" button consumes.

Acknowledgments

AI assistance

MORIE was developed with substantial assistance from frontier AI assistants. The author retains full responsibility for the code, the methods, and the scientific claims; AI assistance accelerated implementation but does not change the attribution of the work.

  • Claude — Anthropic. Anthropic's Claude family (Opus, Sonnet, and Haiku across the 4.x generation) was used extensively throughout development for code generation, refactoring, documentation, code review, and design discussions. Use was supported by Anthropic research-credit programs.

  • Gemini and Vertex AI — Google. Google's Gemini 2.5 models (Pro and Flash) on the Vertex AI platform were used extensively for additional code generation, cross-checking Claude-generated code, multi-modal data analysis, and prototype evaluation. Use was supported by Google research-credit programs.

Funding and infrastructure

  • Anthropic — Claude API research credits.
  • Google — Gemini / Vertex AI research credits.

Data acknowledgments

Several MRM analyses use Statistics Canada and Health Canada Public Use Microdata Files (PUMFs) — including the Canadian Cannabis Survey (CCS), the Canadian Student Alcohol and Drugs Survey (CSADS), the Canadian Substance Use Survey (CSUS), the Canadian Alcohol and Drugs Survey (CADS), and the Canadian Postsecondary Education Alcohol and Drug Use Survey (CPADS) — along with Public Health Agency of Canada (PHAC) and Canadian Institute for Health Information (CIHI) aggregates. Although the analyses use Statistics Canada and Health Canada data, the analyses, interpretations, and conclusions are those of the author and do not represent the views of Statistics Canada or Health Canada. Ontario open data (OTIS, A01-RCDD release; via data.ontario.ca) and Toronto Police Service open data are used under the same standard disclaimer.

License

morie is licensed under the GNU Affero General Public License, version 3.0 or later (AGPL-3.0-or-later), on both the Python and R sides. The AGPL is a strong copyleft license: anyone who distributes a modified morie — or offers a modified morie to users over a network — must publish their source. Modifications and improvements cannot be kept secret or taken closed-source.

  • Python and R packages (src/morie/, r-package/morie/) — AGPL-3.0-or-later. See LICENSE.
  • Optional Linux kernel adjuncts (kernel-module/morie.c, daemon/morie_lsm.py) — GPL-2.0-only (the Linux kernel ABI requires GPL for loaded modules). These are NOT part of the R / Python distribution; they are separately-licensed, independently-distributed adjuncts. See kernel-module/LICENSE-GPL2.
  • Papers, data and documentationCC BY-NC-SA 4.0 (Creative Commons Attribution-NonCommercial-ShareAlike) unless explicitly marked otherwise.

Full detail in LICENSING.md.

Reporting issues / security

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

morie-0.9.9.tar.gz (18.8 MB view details)

Uploaded Source

Built Distributions

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

morie-0.9.9-cp314-cp314-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.14Windows x86-64

morie-0.9.9-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

morie-0.9.9-cp314-cp314-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

morie-0.9.9-cp313-cp313-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.13Windows x86-64

morie-0.9.9-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

morie-0.9.9-cp313-cp313-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

morie-0.9.9-cp312-cp312-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.12Windows x86-64

morie-0.9.9-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

morie-0.9.9-cp312-cp312-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

morie-0.9.9-cp311-cp311-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.11Windows x86-64

morie-0.9.9-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

morie-0.9.9-cp311-cp311-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

morie-0.9.9-cp310-cp310-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.10Windows x86-64

morie-0.9.9-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

morie-0.9.9-cp310-cp310-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file morie-0.9.9.tar.gz.

File metadata

  • Download URL: morie-0.9.9.tar.gz
  • Upload date:
  • Size: 18.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for morie-0.9.9.tar.gz
Algorithm Hash digest
SHA256 c7d92eef32b9ca69b0506c902181d3c681f65bda58590707c2b268a7cceb9084
MD5 4579661785fc7bbb6b10edd6d5c4c17f
BLAKE2b-256 c682a002e1fc51be2d7526a246c5295a04c12d0b07869da48b81d093ea959490

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9.tar.gz:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file morie-0.9.9-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: morie-0.9.9-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for morie-0.9.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ea3069cb2e21ac585b8252a5953c728b4bc38ae2a91d0ca503502f3f52bffecd
MD5 2c55dda9606d52f3ab85eee9804f6aae
BLAKE2b-256 ad727e629d93bab6b3007fbbe8b9053a2ad3284cf4da3465d3aba210980375b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9-cp314-cp314-win_amd64.whl:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file morie-0.9.9-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for morie-0.9.9-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d8b8cf56c61d6651272c089e2cc17ebe02e30c805bce8e94f48ae5fb2528a9c
MD5 ca3726e9c58e8e3156ad1342fe1f6737
BLAKE2b-256 9d6dea718b4348d7344b173badd573edcf87759943525cbc8d50f7cc076d3ce9

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file morie-0.9.9-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for morie-0.9.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d03faa85439503d5a77a503215d629965ee810f0ba7627b21b9943420f62597
MD5 9fa8fdcc141c4ba4c3e34ef3fd06bdef
BLAKE2b-256 555296cb2a469a27038e5e6da22e93c10dd71ce836343da6de825c952aae0c35

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file morie-0.9.9-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: morie-0.9.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for morie-0.9.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 adf49e80dd4b28fd7711d36325d05d9ef12a80685975af8cfc3321bfc7868030
MD5 be44de172b2ed6c98f37dd59aa2c0e02
BLAKE2b-256 7a9ca7d847e7b7d1c7fca19f467db05150a293ffc5bb29ed3deb9bccc07523da

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9-cp313-cp313-win_amd64.whl:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file morie-0.9.9-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for morie-0.9.9-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 162dc1b613514a10a9815ee57eded067af3b7c9ac6d5934a47bc160554e99058
MD5 f40a1b712f04684f591765106607ea3d
BLAKE2b-256 863462c774771888c08899a042da375828b31d14acf2b088321419addb47a4f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file morie-0.9.9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for morie-0.9.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56b4624f959971a65d09cbaf6a43e2a37ffe51dcb578ad73fb9da08b691d9bb5
MD5 0ffe3fd0506009dcdf99800b1bd4461f
BLAKE2b-256 251e407b81bacc7e760de0c060f34febe12530b907fd612b54a3b9491a685238

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file morie-0.9.9-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: morie-0.9.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for morie-0.9.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 714caa53598b08bf27599ad15a424af81800c6d70ba8c651fa34806574f7437f
MD5 31d1bb56c45521f5fb9e1dee1af38276
BLAKE2b-256 9eaad4a5307c37848ac30fed9b220961fa9ac270c9c9783c962fd41dc9d8bf0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9-cp312-cp312-win_amd64.whl:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file morie-0.9.9-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for morie-0.9.9-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca16b03d7409d084eb5626a341b6828194e7fb5b9724efbfe780a5fd44e7c088
MD5 14eab4ab3e2016f04fa744afa6808135
BLAKE2b-256 9c66463c8d1e9ee99fb2661a4f1a0f341f86c997bdb7f608e4114769172d0386

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file morie-0.9.9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for morie-0.9.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67dadfb6732299beb783b9f0f984c43f8b5a27410f557c59714cc1a677b8d6d8
MD5 d26f4e56f6feaee8f13c94c853f1691c
BLAKE2b-256 5a256daf0fc8082f65d5ea10b865bef10fcc6fa8b22059f0446557eaf9b6a178

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file morie-0.9.9-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: morie-0.9.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for morie-0.9.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 57b978c62ae9f256c6d66d488f6e8c3f40831be191204a448a499688bc3615e6
MD5 6f93dcdffa457bf979793d30da8c34a8
BLAKE2b-256 0888568dbd7acc0808e9f775f98af574441f68af4d8230e6089e9487f7670e56

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9-cp311-cp311-win_amd64.whl:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file morie-0.9.9-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for morie-0.9.9-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b4fc21f7bc045cbe4c1fc81d180cea683478cf90769d3d9656c32909f73204c0
MD5 b8dafd66ea5f782b0e3377041c5d7e7e
BLAKE2b-256 eab4d379d631f32579d3d1b627f1599c562b6920ae698323e3bec0ef2df3b7f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file morie-0.9.9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for morie-0.9.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67779f69e7e8e28ba6467acc9a0e30d0e868e89c94728c04c3b5e658a998f071
MD5 33704bc40c575ea07110c628e851d5e0
BLAKE2b-256 b6bf10bf08a9954eb2aafb9e8f2557bff706e3da3b0178fbc687108bdefb6520

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file morie-0.9.9-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: morie-0.9.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for morie-0.9.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d2ceb3c38b8ef480481992282addea95a4154f6c4f18bbc0488989bcd076bf13
MD5 14fdc7ada1a46cd5172104b69ecb8ebc
BLAKE2b-256 94b160d2378bc7b0dfe07a0b6f120b6aa5bc6581c28f1e7b625211a81af64a4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9-cp310-cp310-win_amd64.whl:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file morie-0.9.9-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for morie-0.9.9-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9395e4d1d54d47ff49d557311a92d1130f59e6394a25365df437a63f5079fc98
MD5 6d46fb23c779292bc15157044fca6c2e
BLAKE2b-256 e4006a06693b2e811e679d5c4ac0879ba00f594d7665b1b243248b2d3b6bdd3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file morie-0.9.9-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for morie-0.9.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca4e29421b36f11c9fba63820ff2adb0e2302561cc5f1ac1fb452edc34a7d8d9
MD5 8c05229acef6e0ae199731faac1769c7
BLAKE2b-256 87c919dc93010c302257ce4025e5f3d3c197bb613f07fd37ca93c6eb5ade8369

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.9-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on rootcoder007/morie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page