skillfed

metal-sdk

SDK for getmetal.io

metal-sdk v2.5.1 129.8K downloads/30d#11,658 on PyPI
Permissive license DORMANT released

What it is and what it does

metal-sdk is a Python client for the Metal document indexing and retrieval service. It wraps the Metal API to let you index documents and query them, handling HTTP communication and credential management through a simple object interface. The library depends only on httpx for HTTP requests and typing-extensions for type hints, making it lightweight to install.

The package is dormant—its last release was 2023-11-10—so it receives no active maintenance. If the underlying Metal service has evolved or introduced breaking changes, this SDK may not work correctly. Use it only if you are certain the Metal API remains compatible with version 2.5.1, or if you are willing to fork and maintain it yourself.

Use it for:

  • Index text documents into a Metal instance for later semantic search and retrieval.
  • Build a Python application that queries indexed documents through the Metal API without writing raw HTTP calls.
  • Prototype document indexing workflows where you need a lightweight, credential-managed client.
  • Integrate Metal-powered search into an existing Python application with minimal setup.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Python client library for indexing and querying documents through the Metal API, handling authentication and request serialization.

Yes, if you are actively using the Metal service and the API has not changed since 2023-11-10. The low install friction and permissive license make it straightforward to add. However, the dormant maintenance status means you should verify compatibility with your Metal instance before relying on it in production, and be prepared to maintain a fork if the service has evolved.

Install

metal-sdk on PyPI

pip

pip install metal-sdk

uv

uv add metal-sdk

poetry

poetry add metal-sdk

Installing metal-sdk

Before you install

Low install friction with only two lightweight runtime dependencies (httpx and typing-extensions). However, the package is dormant—last release was in November 2023—so expect no active maintenance or bug fixes.

License in practice

Licensed under Apache Software License (permissive), so you can use, modify, and distribute it freely in commercial and private projects without restriction.

Quickstart

pip install metal-sdk

from metal_sdk.metal import Metal

metal = Metal("api_key", "client_id", "index_id")
metal.index({"text": "example document"})

Requires Python 3.7 or later; you must provide valid Metal API credentials (api_key, client_id, index_id) to instantiate the client.

Verify before relying

  • Whether the Metal service API is still actively maintained and compatible with current client versions.
  • Whether async support mentioned in examples is fully documented and stable.
  • Current status of the getmetal.io service and any breaking changes since the last SDK release.
  • Whether the dormant status reflects abandonment of the Metal service itself or just the SDK.

Package facts

License not declared (permissive)
Python support supports the current Python release (>=3.7)
Install friction low — pure-Python wheel
Runtime dependencies 2 — httpx, typing-extensions
Maintenance dormant — 1,008 days since the last release
First released
Downloads 129,818/month — #11,658 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: metal_sdk-2.5.1-py3-none-any.whl

License :: OSI Approved :: Apache Software LicenseProgramming Language :: Python :: 3

Tags

metal api python clientdocument indexing sdksemantic search sdkmetal.io python wrappervector database clientapi client library pythondocument retrieval sdk
api-clientdocument-indexing

More WWW/HTTP packages