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

Uploaded CPython 3.14Windows x86-64

morie-1.1.4-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.4-cp314-cp314-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

morie-1.1.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

morie-1.1.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

morie-1.1.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

morie-1.1.4-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.4-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.4.tar.gz.

File metadata

  • Download URL: morie-1.1.4.tar.gz
  • Upload date:
  • Size: 19.7 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.4.tar.gz
Algorithm Hash digest
SHA256 e91169fd9a0c1206981cc97e2f22ece0695310c700d6cd9c1c7fecb07be218f4
MD5 734c5e120a7b262b6370525aea54504b
BLAKE2b-256 5665165e9f4239af350cb5c29dade58d7213b4d57601ff21bbf4f71e8dd5eb45

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-1.1.4-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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c4f3ea0c601d9c699bed1aea892963cffd110fa7a5e3c77a57d50b198ac76a69
MD5 dd865f133e343c158cc8e57726223ae7
BLAKE2b-256 a68c132ad836e29edd49df6ce34b1db3d67c5c72eedfe3bbdb11ffe829f065ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21427014cfbbc787ae4605feb2c937b9e05c6a0ac1b9d1d133fb4866417e99ca
MD5 3856a8c0329f5caee11e4960cc1e6768
BLAKE2b-256 ebdd0c80fae8e212b2b57f0719dfcdc89c18a03f98d620a6f1863258b1a3057c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4a5fb5caaa6e7d617203a12b582284b9fb6544188ba22c1db2db39d0c53f3be
MD5 ee0f15e978311079a0c5ece18efb5865
BLAKE2b-256 c36be2775deae640ccc13e0ea9487dee512f750f335ca7a119dc7504a8644504

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-1.1.4-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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a270a7bab6d13750732d06843d43fa334dc3c8bc6bcd5fe21ed4053ac0283dbb
MD5 4ee5df78e088e494fa9310988fee0639
BLAKE2b-256 96b8231d6c81c9d32445ec94a533256d993e32dbf7bb5f3d0eb831cc657bc077

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 112f5ee6289da26fb2eca4df665855a253477c5c4f6eefc0658fe42f890aa839
MD5 c57cf39cdd60100b1204364913ba8d78
BLAKE2b-256 3751ab48b069e6317d0eedd897cb0c7f6aad68c83f85e2cf5715114bd451a554

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15e420d4073d2cfed53d01088b60c565b94cdd3819e28d9dca9b129fb19b4d64
MD5 c7b565d8eca28f5d0c5fd5f4efd492b4
BLAKE2b-256 b999fef01ccb78a29099fb701aab80717805f4662bbcdd6d14132592c7fcc4ce

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-1.1.4-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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 41c00958d9aebfce3fec0201be3e5d0e51bd08138b623c04b695df01a215b612
MD5 9d1152e971d5e36cbbb8dc7dac8fc680
BLAKE2b-256 bfbaacca72d7886e9f34ce91d2e319e340c462bfb98e4752da6573843544bd6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12a9a00d4c2e77dacbe5f6211426379973389f43f3afba6d432a59550fbf89a0
MD5 a3e2219686d6027a652adabc440a6037
BLAKE2b-256 aace40ca328f20642be6330e4f7d346dcacc645d02b65be8fe7deb405e1d5d6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4410e8194bcb2e724b0c757baad9564e4655c829e167d26e5910b40f44dbe4b
MD5 2f373b677552010240aba4e49ebf8efb
BLAKE2b-256 5a22ef170a16fabadb0fb3485195b883eef2f27151940492ab3902d0926ea3f3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-1.1.4-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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ddd4f678971aeff624761aa8ebfecf2fc22768e08f5ca4c2dcde313a64529fa6
MD5 b51930315d14a746b6dc0e34017aaa6c
BLAKE2b-256 cad6ac4eaa53bcf80366c37b4ba48597e668cf48d3fdfdd8e4cd2306dc30e9c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2642225f5adb74554e6188cfb2bbd3343dbbcc12483959f6b116729d60fe94e2
MD5 e357ab34e9d7d4f9b37ba50c22ab6fba
BLAKE2b-256 04261a7ec5c8e9ffc146562eec44bb953ac2870ce512cf7d97b5394aee253225

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bd81d40a1258a06ecf9219a57190353fc43ceab3aa7ad01b9d8ce952087d8b9
MD5 48333c636ffcf89c4d32612a8484d0b4
BLAKE2b-256 c1b7f36534c7a49c8dc5feabf73854d57945340d7355082fdabb43c4f52f405b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: morie-1.1.4-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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 56f989e84ff0c05508d2c76a20f94f5da7b7876e49f3c59ad07e9c5148923200
MD5 0798479143d3eea69deb7062d20d537e
BLAKE2b-256 8f6d366f1c4e58f8cd3413eca3076d830a2fc0f1c71af195e2378ac007ac0630

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21045ed3de3baa8f593801d3e67b3330fa1d4f694e26928123466a8fb9992be6
MD5 1f937fbf4b17eb67dc37b9cee3554c3a
BLAKE2b-256 694b85a5869243f8d8fc8063972f55780887de1dcc005716f8d4ae519d426561

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for morie-1.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 637c468cdbc004e6a5a561cce4be194dffe973f14e72259d0162ba2ba6d9e43d
MD5 e6bb856f8367105853d46ba127106d7c
BLAKE2b-256 e0f52d1e588ef1f15316581633894d40225cead1d074e384f9546a55bc75ee22

See more details on using hashes here.

Provenance

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