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.13.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.13-cp314-cp314-win_amd64.whl (83.8 MB view details)

Uploaded CPython 3.14Windows x86-64

morie-0.9.5.13-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.13-cp314-cp314-macosx_11_0_arm64.whl (83.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

morie-0.9.5.13-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.13-cp313-cp313-macosx_11_0_arm64.whl (83.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

morie-0.9.5.13-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.13-cp312-cp312-macosx_11_0_arm64.whl (83.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

morie-0.9.5.13-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.13-cp311-cp311-macosx_11_0_arm64.whl (83.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

morie-0.9.5.13-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.13-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.13.tar.gz.

File metadata

  • Download URL: morie-0.9.5.13.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.13.tar.gz
Algorithm Hash digest
SHA256 40c240a8151c72ce181d9475693c5c43ef83379618cb6e35b983af9e060a9b54
MD5 03d9b22e92eb26cf68bfb73afc8a9f59
BLAKE2b-256 6c1a618e00a8517b93c04409283c3e47603c7befd08812fa73ea7f0c72a1e280

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-0.9.5.13-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.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d1aeb72d9e5f75e8a8b8e6fcbf346d331f09d3ffb9c256062e58d82e58112737
MD5 f0dec444dc54ce66dfcb5b09c58d2c15
BLAKE2b-256 7242b3549d44a751e309633e5f449bb4a1ceebf404ffc05a5aca417c5f1782db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.13-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50cd2f925d2494425c176bae8af0d1d0e6a77901c9512a47e5fe33419768d1f3
MD5 4f3b4dd2ca03697f52ac7539b5ad20ee
BLAKE2b-256 60663b443b0e07f5a53fd907e6f57bcae7f1587a72bcb8f95da8e8634ea09edf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 997e441cd5d18fdf1f918b6138a09c661a8b544e7340db94cb31e0f3a72b4012
MD5 3e3b019ef7bd09fb293a102f2c689db1
BLAKE2b-256 a61ee15d49fc4990bb67d9c3a02b290ec377e0876f3383a1253c0c258028e6da

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-0.9.5.13-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.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 356c46873fd3fc2e2ee0da82b9d324a038c927ec6f3cb99bea4e4386a80735c4
MD5 b9e4cc55649476fc5d82f6ef562a2000
BLAKE2b-256 d2a9fadbb6f4e6ee50ac4f77cd60567a822ab84562721e567304a855de8866a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.13-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88214437ced8c2647141681399c730bea2c73890494db80651d27ac8d000f648
MD5 452981b8823b0f453575c32746c74e9c
BLAKE2b-256 12c5769ba32b50bbf82140ac834e60274c6e5c6acb1c62e0dab1391023bc0795

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1c0f4780fc833ea3d78d4da98712e41fd97d364b069b4ca299991f9a56c8ac9
MD5 a0d8c1d6b28ac51854cfaebe01efb92b
BLAKE2b-256 246390061f673100d7c4c2d038fd19e25eae74ceddcbc48a2aedf3c233127516

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-0.9.5.13-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.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ed62afa2626685ef84e1589d9b472f719bba417263d6a490e6c9ed44eafc007c
MD5 1052dfa134f7816022237fae5e7001dd
BLAKE2b-256 eec782daf64eff3c41cafc2b05b3747e653c0a9f8af7cc619fd2686f4835473f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.13-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4aba4793eb06fb1930c5b7932828327f5fefea7aa744b05d4f6b8393e6bb0323
MD5 9238f3af76178f94f8f0a386f0d535bb
BLAKE2b-256 dc7222ee38d2dfa6a69f839b936df84d495acaed178a9b966a9f55f5978e4ee1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6bfdb5a63f75b0d43659e6c2b638a1b3cb6ddc8b7887dc04f734260cb94d0a1
MD5 4f660fd1d1b625e9cbf5b601de752016
BLAKE2b-256 1229571a0f5ea485e74976d19c66127f921db050c4beb51ad18222e661bc7d72

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-0.9.5.13-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.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0477895ddc3ba7597b7b499dc6bd2b7d7dc291c365fc51307f6a20631fed4a50
MD5 0169e0576d3e7d87a12eb89e0873c18a
BLAKE2b-256 b964a907c80e151c12b71e7e562b71bb6ddf512264703de888bc3d40e8cfef1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.13-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 281387d33aff682493bb48590998dea5778d779128a6fee75d97bc391a991ce9
MD5 2e2072250472ee1fdad9c4e17f54c354
BLAKE2b-256 08ad901ee2abe19e42dc7dc13116b8079b2e431ca88a9924894ba75d3c8717bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 514466053573c8fa0020fe37bd7598384c0178c19bcdde2128d90fb22f4ab416
MD5 dfff711c67588b73c8d29b900fbf7fa6
BLAKE2b-256 e21d08dfb9187bf314614d745dfce1b2e99c30f196dd38d0d30d914f0395471f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-0.9.5.13-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.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f4f0eb04a1ffbd5c289fa2e42f8be3548de582bab19512b5184b7686b944461f
MD5 44429ad7088668edcd4339cf8f1de418
BLAKE2b-256 5cd64b75a0f4319a8e7db798f41838c682ccca78e23715dd21a037a581476c3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.13-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b723facaf5853dfe4b3eb7fbe02329797d8cdf668ebede619042466673d78b78
MD5 390bcf322ef51d4895ee04e330228c62
BLAKE2b-256 33749c3f09ea1d95b6b68927046c66816b040cee88bf8635b7a2bb488b89d556

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-0.9.5.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0baeb372acbcdcc0d772a95661d2be8b439fb37e1ad9e3386f8ffbb25978e025
MD5 99a5085c61e80f43e6a2a8c3ac0bc85d
BLAKE2b-256 59df436e124ca501176b459040ad946bc67cfddc4f88c9f9ef3055b5e8763355

See more details on using hashes here.

Provenance

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