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, 2019; doi.org/10.25318/132500052021001-eng), 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.5.14.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.5.14-cp314-cp314-win_amd64.whl (83.8 MB view details)

Uploaded CPython 3.14Windows x86-64

morie-0.9.5.14-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (82.8 MB view details)

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

morie-0.9.5.14-cp314-cp314-macosx_11_0_arm64.whl (83.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

morie-0.9.5.14-cp313-cp313-win_amd64.whl (83.7 MB view details)

Uploaded CPython 3.13Windows x86-64

morie-0.9.5.14-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (82.8 MB view details)

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

morie-0.9.5.14-cp313-cp313-macosx_11_0_arm64.whl (83.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

morie-0.9.5.14-cp312-cp312-win_amd64.whl (83.7 MB view details)

Uploaded CPython 3.12Windows x86-64

morie-0.9.5.14-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (82.8 MB view details)

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

morie-0.9.5.14-cp312-cp312-macosx_11_0_arm64.whl (83.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

morie-0.9.5.14-cp311-cp311-win_amd64.whl (83.7 MB view details)

Uploaded CPython 3.11Windows x86-64

morie-0.9.5.14-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (82.8 MB view details)

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

morie-0.9.5.14-cp311-cp311-macosx_11_0_arm64.whl (83.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

morie-0.9.5.14-cp310-cp310-win_amd64.whl (83.7 MB view details)

Uploaded CPython 3.10Windows x86-64

morie-0.9.5.14-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (82.8 MB view details)

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

morie-0.9.5.14-cp310-cp310-macosx_11_0_arm64.whl (83.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: morie-0.9.5.14.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.5.14.tar.gz
Algorithm Hash digest
SHA256 7b62afc2d0b865303280047abab0d6b5c3a2be8eb5d90a765040eb2652265490
MD5 75ef1613ff4d57c84d59f6f363b87be1
BLAKE2b-256 ee4eadcc6bca189a25d668c118938aa22c8e685910e0b5afff034980ed56133e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-0.9.5.14-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 83.8 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.5.14-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ad94cf65bdbd24d01d3f4671b5265d5e2e3aad192aee3e75e34443b7f5abff14
MD5 342f125e241553d52e1381bbc9a89d80
BLAKE2b-256 1885d61d2b8297e8a051b1d5269ee32ab010d0eb50f496866935468d6b2a616f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.14-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6db6a32742472119ff2b6da096b3305a9f62fe8ad41ed5047988bfe03520390c
MD5 db3b47032a8415dbae6e40242ea63088
BLAKE2b-256 e67e6453a41be3f0c00db85e9d49be0b311d04e78ae831f77b4d943dedae1a8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.14-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa9f9f1e88dc76328ab4892f7d758b3d2d0a732ad6a8e56d20b80e3d9a46fd6f
MD5 a61796afe245e6b002e06eaef4e9ae97
BLAKE2b-256 ce29131f36ace11971e4d71be2f63deb45741c69b326d2b44956884423d525d2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-0.9.5.14-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 83.7 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.5.14-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c258d3e68ac48816b706c15f53d7cad4f71156f32a5bb1b112b2ca0c27c979ab
MD5 52eb0b466582a5ec6cb30ae9524fc977
BLAKE2b-256 a92da4c9fe79931775dc355ae47cbc9a9b816e1716caeb5111c8cf236ed945b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.14-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5bf9cd1cad97fa523b497f344c9d63937b76d817b178b26fb4f172c2b27342f2
MD5 e6f7e75e95e56c1af367c64eb71f2398
BLAKE2b-256 78d151e9b53af9a83a4805da3867d47425aec9adcfc44b00f4096d1b0da98d7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7ab1724b2d9f18818aa31bbd108ae8417e4c8db9565ebd3bf5d41891fdbf5dd
MD5 924b6855562f8ecf60d4a4319878bc64
BLAKE2b-256 2139450e04d9a03398a34965e7a7543c3d02f4eceb6286e114d85d019d20b316

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-0.9.5.14-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 83.7 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.5.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 70209f9394a853827585f4e811fc85faae0bc9ec0fb4fe86041b4fb07a7be56e
MD5 d98e518fd0554ae4c033ee66a8120f23
BLAKE2b-256 53099980e22312f6a1c685a16f72a9805915b80b8e76abea5967aedfbd8f4301

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.14-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 438a6d9b1f62756550973949bcd781ebf74176f3072f4fa9bb82853771a68990
MD5 be6f9dbadbd3571e25dad05b6eea06d8
BLAKE2b-256 7fa5e1a04d70e32ccb519444d6e42636273583e078218495460c515860e603d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15f84079d4540fc60f90165304dd6f0f2e9b896f12e337a3e2ecf665222016a9
MD5 7912f1122814b8f2ee5b7d8609e7edf0
BLAKE2b-256 a7e3e86353c454c002b10aa23db3399dafaf89a8e35bb04447306b3cc1f154d9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-0.9.5.14-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 83.7 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.5.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6014fe37bbd34a4d4748add3121b1a04ff1db6d07c665671a8fd7b3289d9cfa6
MD5 31a13e44b051c032bd180818967418b6
BLAKE2b-256 811812b76aa78bc9a0349a143613756e06042bd8ecbd1ca73eb9a3a0b25f755e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.14-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5b3914d220a49649cd506a3c2d425fd561b27d6a19be13684fe2d7be073ece8
MD5 4cd3a3c0a98867f76a535b0c1fd8279a
BLAKE2b-256 8778ad57ec72902750dcdaa4c3b07241317116200e77ebb5b6a27c5541b17225

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a520fc42ff48b817cf8f8bc443e47096fd4f7afb7df85b499efa450728478079
MD5 4f5b4da0f0e805a2b3126e033f080120
BLAKE2b-256 d4400c25f615739fe0bfaf20206ec4837637636c14d411a0657a805f38aeeff9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-0.9.5.14-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 83.7 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.5.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e317f69db260ea269a6f49dfe61d5559443dc7a61f57b6b7bc442be31927c0f1
MD5 1d32439bfb827aec7e522c1a752369e7
BLAKE2b-256 ce8e5d36e5c351b4709ef37aa56c94b784e6c7ed5359de114d8c3d14d6b91760

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.14-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 deb241b471571467a1c675c8196a13c869444ee1bf3f7e35ac47d65213f7361a
MD5 36a98375fa02ca3a30a57312e86c03f1
BLAKE2b-256 c1e04b5e0827275d3bf6644dedb8c32377648199d48dfd84760e28f454d4cf08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4efce7cca323ac039904f24766f03d9808211ca3a71777961dd5a606f8a4214b
MD5 3812f7644430bfbfe9e711d807726fea
BLAKE2b-256 fb8f0b07734184a2c3eb4bda713e0666da2bd25b20c9c29122aa8544589d50cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for morie-0.9.5.14-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