Skip to main content

SMRE — a free-to-install proprietary agent for AI memory virtualization analysis, connected to the Natilah Cloud Platform.

Project description

natilah-smre

Super Memory Reduction Engine for AI workloads.

SMRE is a free-to-install, closed-source memory virtualization tool for AI infrastructure. Teams deploy the lightweight SMRE Agent on their own machines, GPU servers, and clusters to measure memory pressure across model workloads. Advanced optimization logic, recommendations, benchmarking, dashboards, and cluster-wide insights are processed through the proprietary Natilah Cloud Platform.

Product Model

The public package is the SMRE Agent. It is designed to be frictionless to install and safe to run on developer machines or production infrastructure.

The SMRE Agent can locally inspect:

  • GPU VRAM inventory and utilization when nvidia-smi is available
  • CPU RAM inventory and utilization
  • SMRE vault physical size, logical size, and deduplication ratio
  • Base-model and adapter residency accounting
  • Basic model-library density signals

Natilah Cloud processes the proprietary layer:

  • KV-cache usage analysis
  • Fragmentation and allocator efficiency analysis
  • Deduplication opportunity discovery
  • Model residency efficiency scoring
  • Optimization recommendations
  • Benchmarking and workload simulation
  • Cluster-wide memory insights
  • Cost savings reports
  • Memory efficiency scores
  • Workload density metrics
  • Real-time dashboards
  • Enterprise integrations

The SMRE engine, algorithms, optimization models, analytics, recommendation logic, and benchmarking logic remain proprietary.

Install

pip install natilah-smre

The PyPI package and primary installed command are both natilah-smre. Python imports use natilah_smre because import names cannot contain hyphens.

Optional extras are available for environments that need Hugging Face model inspection or GPU validation:

pip install "natilah-smre[hf]"
pip install "natilah-smre[gpu]"
pip install "natilah-smre[serve]"
pip install "natilah-smre[all]"

Local development install from this checkout:

pip install -e .

Agent Usage

Run a local scan without a cloud account:

natilah-smre agent scan

Print the full local report as JSON:

natilah-smre agent scan --json

Connect the agent to Natilah Cloud:

natilah-smre login --key <your-smre-api-key>
natilah-smre status
natilah-smre agent scan --upload

API keys are read from SMRE_API_KEY or stored in ~/.smre/config. The default API base is https://api.natilah.com; override it with SMRE_API_BASE for private deployments.

Local Vault

The agent includes a local model vault for measuring base-model reuse and adapter residency. It stores one base model once and accounts for adapters or fine-tunes separately so SMRE can report the difference between naive residency and base-plus-adapter residency.

natilah-smre add-base instruct Qwen/Qwen2.5-0.5B-Instruct
natilah-smre add-adapter task13 wuyanzu4692/task-13-Qwen-Qwen2.5-0.5B-Instruct --base instruct
natilah-smre list
natilah-smre load instruct --out ./out

The default vault is ~/.smre/vault. Override it with --vault or SMRE_VAULT.

Repository Layout

natilah_smre/          # Python package for natilah-smre
  agent.py              # lightweight local SMRE Agent telemetry
  cli.py                # natilah-smre command: login, status, agent scan, vault commands
  store.py              # local content-addressed vault accounting
  dedup.py              # local block-level deduplication accounting
  hf_io.py              # optional Hugging Face model loading helpers
  model_store.py        # local base-plus-delta model accounting helpers
  tensor_compression.py # local compatibility utilities
experiments/
  *.py                  # validation and measurement experiments

License

SMRE is proprietary software. Installation and basic local agent usage are free, but the software is not open source. See LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

natilah_smre-0.2.0-cp313-cp313-win_amd64.whl (502.8 kB view details)

Uploaded CPython 3.13Windows x86-64

natilah_smre-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

natilah_smre-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (563.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

natilah_smre-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl (575.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

natilah_smre-0.2.0-cp312-cp312-win_amd64.whl (503.6 kB view details)

Uploaded CPython 3.12Windows x86-64

natilah_smre-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

natilah_smre-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (566.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

natilah_smre-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl (577.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

natilah_smre-0.2.0-cp311-cp311-win_amd64.whl (510.3 kB view details)

Uploaded CPython 3.11Windows x86-64

natilah_smre-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

natilah_smre-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (570.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

natilah_smre-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (583.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

natilah_smre-0.2.0-cp310-cp310-win_amd64.whl (510.5 kB view details)

Uploaded CPython 3.10Windows x86-64

natilah_smre-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

natilah_smre-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (575.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

natilah_smre-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (589.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

natilah_smre-0.2.0-cp39-cp39-win_amd64.whl (513.5 kB view details)

Uploaded CPython 3.9Windows x86-64

natilah_smre-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

natilah_smre-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (581.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

natilah_smre-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl (594.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file natilah_smre-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b24471bf20f8efbf8c4f649bc9747fa9a14551267086464d2309da74693ef813
MD5 6483c5a0e164cf6b2fba808d6d1e25d2
BLAKE2b-256 f531f30e203a151536c44d379879b6ee7a24afa697c41c15eb1a7fb0dce1e9d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f637767378870b6b3a564fcc86e25441c13fe92b5fe1aabae4c57bc22f68936f
MD5 9fe484320a0833a48756cd32ca8fde33
BLAKE2b-256 db468912752787c5739f73aa99f85f8465386d98da4f73f7c5604377a63d66ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c8e380a0d5e339b233e23d0003ecf4e938784636f281dbbc9f5519b822e3d5b
MD5 a39002f624bb41955085b1e253e24788
BLAKE2b-256 de3d13c6bbb3bf691af3de0a4f847e030330632efe3b9fa88adcbc8564f6d92f

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 82d8aebf85ba87278401c51a4cde291c89b18ec3b0c10ea69aec5501c71d07c7
MD5 8fc81b1f49caacc52336f523a14fbc7c
BLAKE2b-256 73e9f5b4b5c6af2d1ef1660493c0a99c5dbc5ddd6270bbacc15a11e25570e81f

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 11874f698d2eda7c209892ec1e45e8483713360321080a42e2c275a1e77550f2
MD5 58a64bd6769084431b423df4a0764af7
BLAKE2b-256 ae60d9753ba83c50c5674bef835e5b6a28ad236f331031b50f7895229204edd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ace0195b968c11713c2722c5e13212d00a6c59cde4269cc645ba013ae27d0b22
MD5 fd6f0ca7b4b444ee3cbb2bf06c321380
BLAKE2b-256 7fd907a4200c88e7e08e2541a4052cd4944e49df7525b5141ee4c74b74062749

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4d8172416ea7226032f54b8a5ad99cd63831ff1a5fb109b50d3dc0fc4237955
MD5 9759af1a4583e1999301d3de9ada99e4
BLAKE2b-256 d5046778240c72e4ee6e3e1645af710c60c7eed256c8d46d9ad36fcb38d447f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e521440f4e991e9c5afc780d3caaa12e4eec665185369b95f89aa7330b183366
MD5 fee8b31bb545ac82d2a14e1681239f45
BLAKE2b-256 f91da447de34f350cf9926cfd5603f29d74c3e7e3d0ab9048439c7ea921a363c

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0d97f53bdb56d6cde3ffaf651396a3f1428c39882ca9e855052d6e1c4b53a28a
MD5 7fc33ad5c25d228084965733cddb9644
BLAKE2b-256 95e8acb87dee78844cd1edd619fdb2f16f006cb77f9a97cd8960e03087dfc574

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cf3e05720758520cb75e9d6892ee6564397f350510b10799a06fb971341cb50
MD5 b66de8aba24c09c3e6beafd6fbc6adcf
BLAKE2b-256 49c72b6011ce28a15b3fc1e5d5fca9f3bd9c3c4afada9b9219e01d65ce6fb812

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffd3b62d4496e7b95c24e367341d49158afe1520829a8fedff8276a70e868517
MD5 f456959df2784a8551089eb8a4952e92
BLAKE2b-256 1663c75e37c210dd8ee95d6580f319cb8f3c570bcaab2a153a5b92f32eec93b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b67b462bb343ae34e2b6378e57845b8bb520715d3e7e3a755abd1055eddc9b23
MD5 02e069dd464843f7eee128552eaaaa1e
BLAKE2b-256 d1c3685edc86d7d89bb64efadae2ac12b983fd5f865f511831f47cbc619caf3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 41a9cac44429a6f9283eba784f5f794ebdabb11b41704aadf4d4be067b860db3
MD5 074c8583717169c2172c902fb421e300
BLAKE2b-256 eb5ea22bd593d26a3a143f57839a4a5b7427fbc142db72bbf10ac7f839896ac2

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f30734c7ddb4b14229f33dbce40544b01f225cadb9e293da7f84b39512af4fb
MD5 acbc7ab9cffb71f7b38c3b791a564629
BLAKE2b-256 810903fca255fbe8d608067bd59d4087656f0d78fed4f2e7513143abdb5072e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6baf42fc0c914546f5ef829e5af1aba5d47498f8be3c63ab1464fdf298319b79
MD5 585b3bbb2322fe7dde241bae1effa42e
BLAKE2b-256 93c89f8282fc0ab0ba0b02e8f76bab20c0daf08192445865d7f1f6e9f20d7d3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7ca0780bc274649cbe87f8ca6a351e72ec8d45aa59d098364f5a6a069a145fc
MD5 16df12ce5e1fd427900a94be8e6a5df6
BLAKE2b-256 6cf6bf13584ac633348119caf4bd469825a2ef236951df8a2729917bd3f20051

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: natilah_smre-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 513.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for natilah_smre-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d77a4005f4560fb3645beba77a09ab75a0dd1d9e6e57ccf1cc16d3bc550178b2
MD5 1f508e6dd9ea20fb1cd66708977e1351
BLAKE2b-256 f96482240cccef7eaf046e6ad2cf08ee7bad7c2d506bc33f261ff009e690289d

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c65678f5e047ac6f1bc1b1c7753e2c11a91049bb30fc1c3c685265377071c61f
MD5 e49c7eda79e9e21dfbc8cfcd657f3e5e
BLAKE2b-256 0ac44604faa134e708ebd16b8c1ea4f9b23f5eacbc9c9b954cbcf654eaf4cb4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4a08e6a492aed4c1930e558961701d017a5f382fc3c7d2fb84330841463411d
MD5 a92849f8cbad80848750186101258e57
BLAKE2b-256 f196215e54ff616f8be20b8b9fdf78b2f88eeab6a1e4c6536709f8586af8f568

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file natilah_smre-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2bfe0fe9b6c9049a54817d83ddad40ebaea193e4df412603f0e136c85444ed06
MD5 ae43794293d1926435dbefeed59cfa53
BLAKE2b-256 f8bacb147687b9cbba4df78e59bf4070d3d83ba5936e00846ba3c6a27d9febff

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on natilah/Super-Memory-Reduction-Engine

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