Skip to main content

Multi-domain scientific computing toolkit (Python + R) for observational inference and intervention analysis, hosting the MRM (Multilevel Reconciliation Methodology) framework for Canadian carceral, police, and oversight data. Provides causal estimators (ATE, ATT, AIPW, DML, G-computation), survey sampling, propensity-score and doubly-robust methods, sensitivity analysis, spatial statistics, Hawkes point processes, and psychometrics, with a unified RichResult output.

Project description

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 (v0.9.5.12).
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

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

morie-0.9.8.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.8-cp314-cp314-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.14Windows x86-64

morie-0.9.8-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.8-cp314-cp314-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

morie-0.9.8-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.8-cp313-cp313-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

morie-0.9.8-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.8-cp312-cp312-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

morie-0.9.8-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.8-cp311-cp311-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

morie-0.9.8-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.8-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.8.tar.gz.

File metadata

  • Download URL: morie-0.9.8.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.8.tar.gz
Algorithm Hash digest
SHA256 1a224f54e7f1769466fbe2b2c21e3fc5e6a4db3e485ba3955658d5832dd849cf
MD5 d9498be5e292dd78c9d4b87a511ac414
BLAKE2b-256 06aeca7110e2c6cb0233142a30e70ec49ff12b31988b7e53e46cf178175fcf82

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8.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.8-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: morie-0.9.8-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.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4c6f360c496316134028c1e282bd300c0ed83ab0db3e25c15954c1c14e474d26
MD5 8de3915f997ab936134435dc3d412b91
BLAKE2b-256 4c467df1b6ad7d9647935e418ba4428fe4084fc38bfe17124a402e96dda46b95

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8-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.8-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for morie-0.9.8-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88b09d747ccb2ec00dee1df109c4055d26f6f14aa80a8f7452e79a9166312589
MD5 2cc4af0bc4df23433c60dc09e8cbc611
BLAKE2b-256 639d941064a2bb4ef6d9c3c0ac503947c906e61a3e93b58442424ee6587243c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8-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.8-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for morie-0.9.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b9eb3c73788f9de1c08dd301d966ed26ebaf3125761576937c4b30d41438f2b
MD5 03636946c156ee6641a92ce00986aa83
BLAKE2b-256 2e2972845fc8f6cb6289eec4919c34ea201d95a12fcc15b76706940c414bd965

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8-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.8-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: morie-0.9.8-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.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a5090a22df0006b924374e64d1a5544b06422509dfe8872e5d97e6f5f5c7c7e7
MD5 6266914426c76bef8e46b0f469c56623
BLAKE2b-256 7b273e38155a0cd29a7455a3be5acf5d3f77a351afa6a4bf0429279cb83de8fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8-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.8-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for morie-0.9.8-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d16bf920a6e6a10c6ceee2a7254512916ce69fb8d855ddaab6cae99684070ea
MD5 1360440bf16666565994c73258ddd594
BLAKE2b-256 c93594300964aa0057fb3ad369bec86a205533373eaeb287a1b08efb0ed5a25e

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8-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.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for morie-0.9.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc8dfeb4273bd023b3a245ff32956a973edb27ff957bffd0e39ec81ea18162c4
MD5 4f181cc1d2b72808e1e5597877bba16c
BLAKE2b-256 74c426013c56403946b121a108b4627ef1455f76d5ba60ee42dedd76bdfe169d

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8-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.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: morie-0.9.8-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.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9f9a14dc15ff933f9509b4c949e98fe315d1e28582edf295c5496c09d219aa6b
MD5 f6866df85e85314709eac5b70852a1b5
BLAKE2b-256 02db79dacd19d5e3a6a485450a892893043f12d841a2c6a236efabf044965774

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8-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.8-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for morie-0.9.8-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7891379df1b65291a951f3b2083d00fc35c9493dfe5a065a7628e3b3f27244a2
MD5 6216c7260347bd54bfca63e6db5d21f2
BLAKE2b-256 905508f0aa0c5b50435069b695bc84b8ed319d1fb9dfc5d301e55d68fb0ec0ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8-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.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for morie-0.9.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5433e147201f600874ccfe2e15273f4feac98b445d6aa466eecc9c024f2c0a8b
MD5 d91dcd81c85899cb18b6e7ad49bb0b51
BLAKE2b-256 5cfb67b18fec04829c3add6d7b19b610e6c33fff364fe09558e14717f8227d69

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8-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.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: morie-0.9.8-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.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b75ff58a47c5a097579b89420bc6a562fe5c3be1011d1b848c1d13156bff2e65
MD5 1f930239f42aa0b10893bff823470a4f
BLAKE2b-256 22cdb7c79ce4b14b7c3ecef7e14f4800c157048c9b63e28006003ace055a3400

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8-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.8-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for morie-0.9.8-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8451f7a2c20872ea6c061574cf92ec0bcf12de24fa663f07d464373da3222cd0
MD5 3b0896cc9cbb1ccacd95912d5f1fdcc9
BLAKE2b-256 6de6f917a9fa8b7a5d56ade57009ee70ec8115a89282212b52d619fbe0cc71be

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8-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.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for morie-0.9.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00573994b5069c7053b6b80188bb0caabeb7ca0293932d9afdaaf64c05563722
MD5 6f5ad3b13ef927fa863654d1ade0966f
BLAKE2b-256 d4e5f9d4274cbc0f3cca449642d28e2b2f68a5932c3cab8d0f72d9e8908b06c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8-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.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: morie-0.9.8-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.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 66688d9fcdf79050ef2caee87172a7eaf6cba392fb31f6ee4f5d8aef5fd96c19
MD5 e465e355981ddb0cbe92231e7792922e
BLAKE2b-256 5c8334d278a189fc3794ac1e291d18a532b00e75f28329cd3a59fd5c28f67ed1

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8-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.8-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for morie-0.9.8-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f552d7d169cd8ab57603fd954f7b98b39b793f83665f45c8536e60887a928c02
MD5 252e043b7be8a961a36b4807ef86268b
BLAKE2b-256 ea837219796bfad9b36349c79cefb4ffa785ee0d73bdc231f07208485f9725ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8-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.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for morie-0.9.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a9005933e42366719e7bfa16d86eec078b763bae035ca44a79a393f33c96186
MD5 eb61639bc3c63deb231bebbffcef241a
BLAKE2b-256 d972ab38d98ad9ad8dc27de9070e7c8f13ed7def6c37493253a6aca1fcf44546

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.8-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 Pingdom Monitoring Sentry Error logging StatusPage Status page