Skip to main content

MORIE 森 morie hex logo

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.

The R package ships native causal-inference engines — matching (nearest/Mahalanobis/exact/CEM/optimal/genetic/cardinality), double machine learning with clustered SEs, R-learner causal forests, T/S/X/DR meta-learners, design-based GLM, and a causal DAG toolkit (morie_dag*) — implemented in-package and cross-validated against MatchIt, DoubleML, grf, and dagitty rather than depending on them.

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

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:1.1.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

BibTeX:

@Manual{ruhela_morie_2026,
  title  = {morie: Multi-domain Open Research and Inferential Estimation},
  author = {Vansh Singh Ruhela},
  year   = {2026},
  url    = {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.

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.

Trust model — what the powerful features can do to your machine

morie is a developer/research toolkit with some intentionally powerful surfaces. They run local, user-supplied input by design — never remote or network-supplied code — but under an untrusted-input threat model each is high-impact, so every one defaults to the safe behaviour and gates the risky path behind a single, named, off-by-default environment knob:

Surface What it can do Safe default → opt-in
MORIE_NO_EXEC master kill-switch for all dynamic execution executes; set MORIE_NO_EXEC=1 to disable REPL/exec/shell everywhere
morie tui / polyglot REPLs run Python/R/shell/other code you type, like any REPL run your input only; honour MORIE_NO_EXEC=1. Feed them only code you'd run at your own shell
pt2gguf deserialize .pt/.pkl model files torch.load(weights_only=True) + a restricted unpickler; the code-executing weights_only=False path needs MORIE_TRUST_CHECKPOINT=1. Use trusted checkpoints only
bin/morie installer — Ollama remote install.sh fetched to a temp file with its SHA256 printed; executes only under MORIE_ALLOW_REMOTE_INSTALL=1
bin/morieESML_RC config shell config sourced on every run (persistence) not sourced unless MORIE_ALLOW_RC=1
bin/moriemorie cron writes your crontab (persistence) add/remove refuse unless MORIE_ALLOW_CRON=1; list is read-only
bin/moriebackup restore extracts a tar archive archives with absolute or .. paths are refused before extraction

morie doctor prints the current state of every knob so you can see the active trust posture at a glance. Only enable a knob for inputs you fully control.

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-1.1.6.tar.gz (19.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-1.1.6-cp314-cp314-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.14Windows x86-64

morie-1.1.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (7.1 MB view details)

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

morie-1.1.6-cp314-cp314-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

morie-1.1.6-cp313-cp313-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.13Windows x86-64

morie-1.1.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (7.1 MB view details)

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

morie-1.1.6-cp313-cp313-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

morie-1.1.6-cp312-cp312-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.12Windows x86-64

morie-1.1.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (7.1 MB view details)

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

morie-1.1.6-cp312-cp312-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

morie-1.1.6-cp311-cp311-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.11Windows x86-64

morie-1.1.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (7.1 MB view details)

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

morie-1.1.6-cp311-cp311-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

morie-1.1.6-cp310-cp310-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.10Windows x86-64

morie-1.1.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (7.1 MB view details)

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

morie-1.1.6-cp310-cp310-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for morie-1.1.6.tar.gz
Algorithm Hash digest
SHA256 886b162f44c9a928537dc97c9a4ee3052cddff366d64120439b5888e8a784882
MD5 f3d6a14406a61dac8dfbd7afe12c0fd1
BLAKE2b-256 b57deec707c49f1dfb2efefad31e9fbc3fadab2e9c99660ebeb0e666ffe61b14

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-1.1.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 7.3 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-1.1.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c42870d93b97b2c4fec108340625a6d635e8fcb6bf8a11589207a0fbc8d6d897
MD5 02a85fa173420c437491152aaf10e803
BLAKE2b-256 e68a4536d92fc1d73748b239e8ba3a22221988338a85a4d73e4e737b4d3bd872

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d64abbf6ed8266ce1059fc49ed3df787088ddc10715ef7c7dc2b06591fc038b
MD5 c8497fa2647051d8cdaa3401a054ce8a
BLAKE2b-256 cd3cda471dcc801f770d31982b8722d5f910d18ee8e1fee9947e4ec47dd382b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bd0524f901e2a1c622687f1db5acd6ac0a521d955f5de9fcca533dc33c8937f
MD5 f30404d77181923499b970a376c61873
BLAKE2b-256 c0f78fba8ae0d6e3b0704713ab08be10ab51014603c91d12096af67b7eff1443

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-1.1.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.3 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-1.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 91e665cf4a25b7e1e924f19b18efe63959ae7f08fe45c0d9e96e801c2eed5a37
MD5 9091bcb1bb1a0891cb995a8113914d05
BLAKE2b-256 fa54f5f46556f92c03400d9c18c4e04f51ce578df39e2ba094cb93c0427291ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 373d7c79743d090442887ec8e21214fd386cd6441ff8a3cbebe56239f4b497d9
MD5 05114fe66d7bda925d71cc8cf5ec07b4
BLAKE2b-256 e217d0626012b374e4cee22b71a3e7cc57289a3e72c2f6d81f992aaa93331138

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a38182a0551b8fe1e3a2a341d0d030f3d9be21a02432406167c3b9248e239065
MD5 e99258ad276fec63dc110bb594c8c234
BLAKE2b-256 fef9722065deabf777b697ed44ac14840a4a37f85f53df564b9e311e3322276b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-1.1.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.3 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-1.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 df6fc871bdd9da9ee358b5e4bc910211cf0da052482afcfe824b129730b6f86c
MD5 a0866f2c9be1d7b56b88fd0ac2eaafa9
BLAKE2b-256 5c117732d078cdc0ae33ee07ef2157fc84953913f02645ad76782590d8615ff0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b48cb1e5d0d9cd8e587c4ba3d3196d277409c8c93b728e86ac9841b023bfe1cb
MD5 0c5c7ca4a1f6beea8fff4273a275fc4c
BLAKE2b-256 a64253ab0b028999b3d570b3a91bfb1d16eb7bad25184bf1fed924e6d7f14dbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9682e9203194fd95f0e473a030b35cedddf0c25b5f2beafac84b8171fcc642d9
MD5 fe03607a763090cb977c97691eb256fa
BLAKE2b-256 ec1b56a45d7b3e95dffc440f3c01fbfc82ea11329de94936c8977c99437204b3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-1.1.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.3 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-1.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 85472a7659533fb4185fdd75eea64089f3328c2ba4b77bf56bdf4186d9ea1563
MD5 a85d64acc16e4ed39ccb028861b142cb
BLAKE2b-256 2f878fa20f48831bbf6ee4895f829b57770d4f5a128a1fda802e0e7669102756

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e4a2743b57eb23efde1f078251df19af88af1481ef0423b32b22f8b00d2d29c
MD5 fb06bfec907b4c711bf38614cfcec6d3
BLAKE2b-256 1dd1f28bb6c97da2c55c00b402b8f4d42a79ba37801a2549c5867e1b6904e704

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ba8e86cb2c62daa243fc3667162de7455db41ae2e21798b2d469a0e025d1304
MD5 238b50b42814f8bf00b0264451ff3315
BLAKE2b-256 24e044d04b0692cbe9a31fcd4e8563fde0479f17a5e132d69c1871b6f32476fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-1.1.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.3 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-1.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 374d015d1fdac8b0e920d071dd4579063dbf7fe228857face10120b03ed68e2d
MD5 6904017c9d9a70384e3b1260a1a52ddc
BLAKE2b-256 0063945fff2ab01408b3d7263af24313cd516b4d09b0e1dcf5edcacc0f59ad84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e9e0894ab2072434e48b9215a8b73209d619bcf0c9d58ff1fff5b0d46bb336f7
MD5 535e33d6cb94dc5702524817168008ef
BLAKE2b-256 6a84ed33567d81a7d33910a6e55492c857cd0eb71d244af3cc4f7985986ffc6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41a79c38a5bf3474326bead8938870ff288e4c3cb2402dc2786b1cd6d6cf680f
MD5 c31c2e94df76bab0553ad122b23324f1
BLAKE2b-256 00e00a1919563d9cc1ba796485f871ee5995eda705905d92742b83afcbe10119

See more details on using hashes here.

Provenance

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