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.1-cp313-cp313-win_amd64.whl (527.2 kB view details)

Uploaded CPython 3.13Windows x86-64

natilah_smre-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

natilah_smre-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (591.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

natilah_smre-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl (602.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

natilah_smre-0.2.1-cp312-cp312-win_amd64.whl (528.0 kB view details)

Uploaded CPython 3.12Windows x86-64

natilah_smre-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

natilah_smre-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (595.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

natilah_smre-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl (605.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

natilah_smre-0.2.1-cp311-cp311-win_amd64.whl (535.3 kB view details)

Uploaded CPython 3.11Windows x86-64

natilah_smre-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

natilah_smre-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (600.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

natilah_smre-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl (614.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

natilah_smre-0.2.1-cp310-cp310-win_amd64.whl (535.3 kB view details)

Uploaded CPython 3.10Windows x86-64

natilah_smre-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

natilah_smre-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (604.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

natilah_smre-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl (620.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

natilah_smre-0.2.1-cp39-cp39-win_amd64.whl (538.5 kB view details)

Uploaded CPython 3.9Windows x86-64

natilah_smre-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

natilah_smre-0.2.1-cp39-cp39-macosx_11_0_arm64.whl (611.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

natilah_smre-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl (626.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6fed0e3dc1db57519a135a80955bb22d935ec360d3f1a021eaa5cce28e1185ba
MD5 6f28b650fd1fc07ef08e34d3931fc942
BLAKE2b-256 3b039c63627897a9975b6f1d186355c889f6df6272a4f6f2f8cb6da838bf46a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bd47885747ec89f2b1e1a7ef901939acdc8ef226941bc6ecc527d8ae32f58fd
MD5 3f482609b4d6886f8e86edcb064c5d2f
BLAKE2b-256 10f891ac6721d023019663bad16b44c11fbb2d81253d05e979cd794f95de3f63

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71a5b21642f475533238d7fa8c6e9b56286b531231943595c0b26e868d78798f
MD5 9bc0d41a5db139736bc1b0af51c45717
BLAKE2b-256 52fbe60ab17a1d2389e94f4c6d6698a7aa4089dd6f97d812aff10a8fce9fb29b

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0897332b13a4a1df7c45483520b51dbf1fc00878adc53b378a392521bf38ac7a
MD5 6ce02c28fb49da121562529b0256dae5
BLAKE2b-256 02a6a426345cc9cfa17b0d7c91d23b2faa5bc60df992ab28f98a1a263d695af2

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a2a7fa88a3451d1d66c83ece60eb3f0da5e47182fe86faa0a54ce7d5641dfb5a
MD5 fea2c1a3023340b817f2bc0f73143d52
BLAKE2b-256 6b3f09eb2145f607009a1dc7fabf8b16543c54b87407f46eb528ae1e45543333

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4ceea7f9c8e774132a0212f6f99fc0069c4a75204f2e6431d6f5e95fb548c90
MD5 1c55f4aa17550674fc6c2ac9be334e32
BLAKE2b-256 98200438cc0b551399354d6dd10f8b8211230e5d3533c1ccb9538c1b6e4d5237

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cae57d48a49066f588288bc735a0568e09845c80bc6195b00ca93a337b35e82
MD5 1d444db2928687d682d3d199e930d8a3
BLAKE2b-256 4c2648625dac6bafb147e9f8a929a3eec45f3a47c35133d3cca6f048d6b8fb12

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 34bc12231168e3759fbca628a60c027feb0c9557fd4bac26d358f8c32b64a4b8
MD5 62de758f95194690a0bc387bcaa2ef01
BLAKE2b-256 3f306bc3adbb18efecbe204c4d9eef572387b7e33c312d0205b00f5ac005c7f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d09ecb225ee40f428d6f082450e6fc324b6bc330093eab2c4b6524ac0e9709f3
MD5 323cb59822001d432b874f64be08f215
BLAKE2b-256 d0bb33e8ba7c8ea5c7172345a0ad93b8ce2e6bc916afdbe60fa8855334b2ac9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a3ff6d73abd1fcdc85ae80837aa23340494ce4db850b36c33c0710b0e65cceb
MD5 dc743bde7bb605c1a295cdba0388bb6e
BLAKE2b-256 7997f9912086b2e2eca7589a1ad7d693442dcc2e2d153775a91b174ab3122160

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b280992e12af67ab3d2a6022b920427528041bd45aecccb306f116ea65b249ab
MD5 ce89a4d3df34de5f0133ffbc922c4c03
BLAKE2b-256 d8c4909c999ba7b6b002efc0a4a84927a35ce1a81ce31e6a858a35ec7fca061a

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 672b25031a9015d8c33786d892be0ff17382c80a0866477199a9e22fdacf4d44
MD5 09eda3a7967205958be974cb240009cc
BLAKE2b-256 b9b31ee3895238005217dd0b685963b1cd9f325e3e934e8a5fcb7ebfa276f451

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d7ba452ded6f9e5c868e83eb37bf632eac9f1de069d02fe58f4f4b9bf17b8615
MD5 6be52bd0f17debc1ec709c818d73cc53
BLAKE2b-256 05c52384d6cda9827a67fa13afe7bf7e08b7932e2e52fc68fafcb2b1e57f71d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5048f03c984f053ba329a329af8b6694c4662f08bf57cbfaa3ec19e9e0a813eb
MD5 5b2920344034a1d0572324664a8f2119
BLAKE2b-256 dee096c872adb57dfb93fc27f9ba4eff53478148ef6869a7c0b9c1572baf9e8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90bfd80ac95bc3366f89437ab9f8f365715ac0e39ab3b7959c7a0147b67fca32
MD5 4b496ed8076f46c650931711858a7e32
BLAKE2b-256 88545f3bdc778657e6ce3b85c33e177c97f7c44e62028f728182120f2edb59d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d6b20ccab622655d08e22f44be95c8fda8d4bbb63e99598e0728ce0fa73c9996
MD5 213eb6396bec3ba69831e7a5e8a17abc
BLAKE2b-256 5a636fb90e1af68b6e5d00722e4a4237de74659c5eb84fc8cf76d4895d392385

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: natilah_smre-0.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 538.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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 28cbbf65c693b4234b951ca5b07a5198df80584d14539c847bd299486644a9f2
MD5 7c38f6c7e023fc8be503678d4d258aba
BLAKE2b-256 e1ea4027989bd46e186bb20aab29730487000959ef3fe122441627f3b2464f1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20f85e6da4af299b22ea786561be8fde5e7bc9d649f909325657bb7a7cf1cc5f
MD5 2d50518fbb1166ca9af2f99245f0552e
BLAKE2b-256 0700da94e08446ecdad7a2e170a61bf1d902ebf3fada94f8b82203052f33c791

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17391bdcfb77773b17cf51a003ffcd80bb81e21b34ba5accc4f5a9ad9c4732d4
MD5 6d9057e03f6f7be913df66f38cc6c335
BLAKE2b-256 9d07bcc4b56f3afe6fa16db1f718cdd3b2ea136881fc91c8b64ca5bbcfc0a8d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for natilah_smre-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a482260444ca8c7d42119d0fbad09d0be7b43f2b91d7ad12faba7fc82653597
MD5 47add7dbc9588a6786f582dfd9a24c7f
BLAKE2b-256 58a8ed434e17ad080b50049c7d637c842562ce268e7ab125268b44704c54fd05

See more details on using hashes here.

Provenance

The following attestation bundles were made for natilah_smre-0.2.1-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