skillfed

aurelio-sdk

Aurelio Platform SDK

aurelio-sdk v0.0.19 417.6K downloads/30d#6,815 on PyPI
License unclear AGING released

What it is and what it does

Aurelio SDK is a Python client for the Aurelio Platform, a document processing service. It wraps HTTP APIs for extracting text from PDFs and videos (from local files or URLs), chunking text into semantic segments, and generating embeddings. The package provides both synchronous and asynchronous clients built on aiohttp, requests, and Pydantic, with support for configurable extraction quality, chunking strategies, and polling for long-running tasks.

Typical workflows involve initializing a client with an API key, submitting documents for extraction with optional chunking, polling for completion, and retrieving structured responses. The library handles file uploads via requests-toolbelt and environment variable configuration via python-dotenv. It's designed for integration into data pipelines, RAG systems, or document processing workflows that need reliable text extraction and semantic chunking.

Use it for:

  • Extract text from PDF documents and video files for indexing into a vector database or search system.
  • Chunk long documents into semantic segments for use in retrieval-augmented generation (RAG) pipelines.
  • Generate embeddings for text snippets to power similarity search or clustering tasks.
  • Batch process multiple files or URLs with configurable quality/speed tradeoffs and async polling.
  • Integrate document extraction into a data ingestion pipeline with environment-based API key management.

Worth the install?

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

Client library for the Aurelio Platform that provides APIs for document extraction from files and URLs, text chunking, and embeddings, with both synchronous and asynchronous interfaces.

Yes, if you need document extraction and chunking from the Aurelio Platform. Install friction is low and the API is well-documented. However, the aging maintenance status (508 days since last release) and unclear license warrant caution: verify license compliance and confirm the platform meets your availability and cost requirements before committing to production use.

Install

aurelio-sdk on PyPI

pip

pip install aurelio-sdk

uv

uv add aurelio-sdk

poetry

poetry add aurelio-sdk

Installing aurelio-sdk

Before you install

Low install friction with a pure-Python wheel distribution. Maintenance status is aging—last release was 508 days ago—so expect slower response to issues or updates.

License in practice

License treatment is unclear; no SPDX identifier or raw license text is available in the package metadata. Verify the actual license terms before use in proprietary or commercial projects.

Quickstart

pip install aurelio-sdk

from aurelio_sdk import AurelioClient
import os

client = AurelioClient(api_key=os.environ["AURELIO_API_KEY"])
response = client.chunk(content="Your text here", processing_options=None)

Requires AURELIO_API_KEY environment variable or explicit API key; Aurelio Platform account needed to obtain the key.

Verify before relying

  • Whether the Aurelio Platform API requires a paid subscription or has usage limits beyond the free tier.
  • Current state of the repository (archived status, active maintenance) given the aging maintenance signal.
  • Specific error handling and retry behavior for long-running extraction tasks.
  • Performance characteristics and latency expectations for different file sizes and quality settings.

Package facts

License not declared (unclear)
Python support supports the current Python release (<4.0,>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies 8 — aiohttp, requests, pydantic, colorlog, requests-toolbelt, python-dotenv, aiofiles, tornado
Maintenance aging — 508 days since the last release
First released
Downloads 417,594/month — #6,815 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: aurelio_sdk-0.0.19-py3-none-any.whl

Programming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.9

Tags

document extraction SDKPDF and video text extractiontext chunking and embeddingsAurelio platform clientasync document processingfile and URL content extractionsemantic chunking
document-extractionembeddingsasync-http

More WWW/HTTP packages