freshcrate
Skin:/
Home > Developer Tools > llama-cloud-services

llama-cloud-services

Tailored SDK clients for LlamaCloud services.

Why this rank:Release freshnessHealthy release cadence

Description

[![PyPI - Downloads](https://img.shields.io/pypi/dm/llama-cloud-services)](https://pypi.org/project/llama-cloud-services/) [![GitHub contributors](https://img.shields.io/github/contributors/run-llama/llama_cloud_services)](https://github.com/run-llama/llama_cloud_services/graphs/contributors) [![Discord](https://img.shields.io/discord/1059199217496772688)](https://discord.gg/dGcwcsnxhU) # Llama Cloud Services > **âš ī¸ DEPRECATION NOTICE** > > This repository and its packages are deprecated and will be maintained until **May 1, 2026**. > > **Please migrate to the new packages:** > - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py)) > - **TypeScript**: `npm install @llamaindex/llama-cloud` ([GitHub](https://github.com/run-llama/llama-cloud-ts)) > > The new packages provide the same functionality with improved performance, better support, and active development. This repository contains the code for hand-written SDKs and clients for interacting with LlamaCloud. This includes: - [LlamaParse](../parse.md) - A GenAI-native document parser that can parse complex document data for any downstream LLM use case (Agents, RAG, data processing, etc.). - [LlamaExtract](../extract.md) - A prebuilt agentic data extractor that can be used to transform data into a structured JSON representation. - [LlamaCloud Index](../index.md) - A widely customizable and fully automated document ingestion pipeline that also serves retrieval purposes. ## Getting Started Install the package: ```bash pip install llama-cloud-services ``` Then, get your API key from [LlamaCloud](https://cloud.llamaindex.ai/). Then, you can use the services in your code: ```python from llama_cloud_services import ( LlamaParse, LlamaExtract, LlamaCloudIndex, ) from llama_cloud_services import LlamaParse, LlamaExtract parser = LlamaParse(api_key="YOUR_API_KEY") extract = LlamaExtract(api_key="YOUR_API_KEY") index = LlamaCloudIndex( "my_first_index", project_name="default", api_key="YOUR_API_KEY" ) ``` See the quickstart guides for each service for more information: - [LlamaParse](../parse.md) - [LlamaExtract](../extract.md) - [LlamaCloud Index](../index.md) ## Switch to EU SaaS đŸ‡ĒđŸ‡ē If you are interested in using LlamaCloud services in the EU, you can adjust your base URL to `https://api.cloud.eu.llamaindex.ai`. You can also create your API key in the EU region [here](https://cloud.eu.llamaindex.ai). ```python from llama_cloud_services import ( LlamaParse, LlamaExtract, EU_BASE_URL, ) parser = LlamaParse(api_key="YOUR_API_KEY", base_url=EU_BASE_URL) extract = LlamaExtract(api_key="YOUR_API_KEY", base_url=EU_BASE_URL) index = LlamaCloudIndex( "my_first_index", project_name="default", api_key="YOUR_API_KEY", base_url=EU_BASE_URL, ) ``` ## Documentation You can see complete SDK and API documentation for each service on [our official docs](https://docs.cloud.llamaindex.ai/). ## Terms of Service See the [Terms of Service Here](../TOS.pdf). ## Get in Touch (LlamaCloud) You can get in touch with us by following our [contact link](https://www.llamaindex.ai/contact).

Release History

VersionChangesUrgencyDate
0.6.94Imported from PyPI (0.6.94)Low4/21/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

modalPython client library for Modalmain@2026-06-05
unstructured-clientPython Client SDK for Unstructured APIv0.45.0
anthropicThe official Python library for the anthropic APIv0.106.0
pipThe PyPA recommended tool for installing Python packages.main@2026-06-05
openinference-semantic-conventionsOpenInference Semantic Conventionspython-openinference-instrumentation-pipecat-v2.0.0

More from pypi

markitdownUtility tool for converting various files to Markdown
fastapiFastAPI framework, high performance, easy to learn, fast to code, ready for production
djangoA high-level Python web framework that encourages rapid development and clean, pragmatic design.
flaskA simple framework for building complex web applications.

More in Developer Tools

system_prompts_leaksExtracted system prompts from ChatGPT (GPT-5.4, GPT-5.3, Codex), Claude (Opus 4.6, Sonnet 4.6, Claude Code), Gemini (3.1 Pro, 3 Flash, CLI), Grok (4.2, 4), Perplexity, and more. Updated regularly.
mypyOptional static typing for Python
pipThe PyPA recommended tool for installing Python packages.
anthropicThe official Python library for the anthropic API