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

Uploaded CPython 3.13Windows x86-64

natilah_smre-0.2.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (591.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

natilah_smre-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl (604.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

natilah_smre-0.2.2-cp312-cp312-win_amd64.whl (527.4 kB view details)

Uploaded CPython 3.12Windows x86-64

natilah_smre-0.2.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (595.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

natilah_smre-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl (606.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

natilah_smre-0.2.2-cp311-cp311-win_amd64.whl (535.1 kB view details)

Uploaded CPython 3.11Windows x86-64

natilah_smre-0.2.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (599.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

natilah_smre-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl (614.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

natilah_smre-0.2.2-cp310-cp310-win_amd64.whl (535.2 kB view details)

Uploaded CPython 3.10Windows x86-64

natilah_smre-0.2.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (604.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

natilah_smre-0.2.2-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.2-cp39-cp39-win_amd64.whl (538.4 kB view details)

Uploaded CPython 3.9Windows x86-64

natilah_smre-0.2.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (610.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

natilah_smre-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl (626.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 28ca7400027755debee7d74e2a45bf7622f7bc213f4538fd715d3287b7afe02a
MD5 02337493e5aae5b5657d990703bfb48b
BLAKE2b-256 a39737d42ef42251cb063700b7822e9cf5929e7a8c81ade72a85bdb35cc38430

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6aabbd8ffedba5b117ebe64e0da7ffe767abb4197fb2b61cad3114a5f94c8e86
MD5 c0636a77c5df7f7e9cd134d7b7657f49
BLAKE2b-256 988d4554acb371710c7c679e068a1ccfc372aa7be427309cdb89baba16d4b46f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b839966ad594f1a825976ea03d6856ad8e2f4633dfa813a1329dd676d7a1e3c
MD5 a1e0f88cc85370314cc57b24a66b271c
BLAKE2b-256 4f423b7a1c802172fc9e1160c47f415330f077c8e149e74ce9437f750bed7d86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d1a898b9e7e1cdd2e0ae6bb4901c49328dc1ec6f2b957d33aad883f663e137ff
MD5 24c7c1ba3527fed351f3e107700a1ecc
BLAKE2b-256 cfc27fc7942499fcf746e07de71dcc8876d9c4c4319bd2b42fee3a75badde414

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f74d7f9b31f155ccc0f1266fe91ad43fa199cb3e5856d1898624fb868ae78aaa
MD5 342b34706423c288ccf7e3ccbda6a730
BLAKE2b-256 0ca99221a72230a9f96ffa992a4dd0afffad36c996df8872e3f02b56a7008f8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d99b3a9e5cf4ec0b8f6dbdfee2389c12b830e26fd284aebded185831b2d3294
MD5 d232fa1194fe3f180ab80fa2dfec201c
BLAKE2b-256 5766d90d1a6500931cce21510d05c0bfaf0b0963a3bae33cda0e97de717c4233

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 213a7209aad168f6dec7e94898f80e0f542e91db9098bc2f843212d4a378e9ec
MD5 bea9f2e75689a4f517c14f1d1d6b1d9a
BLAKE2b-256 9bc3dd636489c354b0a2039bf0d052d77ab5429e26fb9bfd0002a3ec69e537fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bf5c3634391e0a41ae7c4f6aae615be997a3835b3ebe193b772690344965d8b3
MD5 7bd16c96e3c9e7f6dffcc9f916a81ad7
BLAKE2b-256 341c673122156f9239d16fa708082ca71d006f0c3d0bd96b97a51d286ff6368b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 48b72a2a259a0e6cca252737246727bd95824ab1e951b83c33af9ecf9b5de50e
MD5 0370eec8010e79866a656da848898b55
BLAKE2b-256 da5a6f2d43cf6ebdc1b25e629e87d9dfe2335074174e19a9ff5a8abe4f11006a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27e1b88c395bc744c3f59ff2a34ba15cf8ec40cfdd751df47185f1681112c1ae
MD5 e0c8d889b27aa332715c02f9df9651aa
BLAKE2b-256 6ae47446007b1bac98b1d4ea1e638a0fe1fbd56ab2ba4e26c6932fba0536cb74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c584d0c6f265143b813e335bafc6312aff5ec640e2bb31409fcf65f8636315c8
MD5 03f00503bc0c04bb38b85949034308f4
BLAKE2b-256 61e2435dc5d16071da851744b0f415ca539e80e2acb65a4c79fa42fc24f89bbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71c11ebc2e253db254a76ef823c97046e2356e852d5929d4c658a079a4363e2e
MD5 c6ce77612726f27b16b5bb4af33311c3
BLAKE2b-256 54aa8781301e73d05ae7bea7c4708b5ff36df36664bb41cdfbc991ed8a1675e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f7cce34bf4f7027707d57e6020c2797ef165e4a050b185c8f4720445be2f0f7f
MD5 385967f1cdb7a6c047b257ea6eb6b1db
BLAKE2b-256 a4ef7e5e39b9d475dc51722d576be2941926a625ce04df712783ec2bf3acc86e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fbcac70abaadd88a039076b233b5be69adf152258f9cc46d7c1797dafa912b0
MD5 9edb9642e54e0b1cf5427e34607ed9e2
BLAKE2b-256 43bdd4094ce9185e2273b5b719c8f368d267a26f991fdef0342ef46a3a9acd0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c2ac5cb0f0ad7d3e3fdb772b9e40f3874a0c549aad88782d6eb201ba49c35a4
MD5 bf21f0b900935042b305a642e21d8b53
BLAKE2b-256 eabe0a2d0f8d5a0635384059264325c4cbf7b4635f782617310c3501a4713bd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1812f50c5eeadcaf5ac61dd4a595b22b5b44d9a7710178902ddbdaba14965084
MD5 95610ca0918352d98cf08c65694a38f3
BLAKE2b-256 84ab7c23866dcfb14a1ed6fc233280d27eda2a6d5d035d0354305667cdc3f6ee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: natilah_smre-0.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 538.4 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 30930775168e2ea5183b2785dd41caf806361b0a21fee7b092d4bb4e01b5d69b
MD5 b3bcc53920a82bc26deddf0e66493844
BLAKE2b-256 c5ec679633415309010fb9eac1a3696397573531c211d85ab2dc3895ba9f031e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20aae3a7705a8c66b1a6bff8a9ec7031db7b866e136139bfc69e28bc517b21ae
MD5 a3d3e401fb784cfb267bbc676b21c45e
BLAKE2b-256 9f3a04d36313ad20238cf16f1d9b9f3e334ee2072f4d44e68bf7bd6d17bda6c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d7cb750bc103acc23851a8dfccb78cf51b2001d309004c8d67f9e21ad7147e5
MD5 dea16ea6b9899d701664a9fd78d61137
BLAKE2b-256 b732ec516609d0d1f79a9316f9c52ca425685f3a233a6485fe9ecc4198a54e4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for natilah_smre-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 506df5f71d373ecc34fde00ca5cb88ef916df07f9f2604a3a72dd7fe5904394d
MD5 a6a5b2ec7451f361a8c07943c36ef5a8
BLAKE2b-256 c38ee0cce448a94d3f302e48730e981addc43f158e581a2f7f5a3448b8c2f2c0

See more details on using hashes here.

Provenance

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