🌐
PyPI
pypi.org › project › anthropic
Anthropic Python API library
This library also provides support for the Anthropic Vertex API if you install this library with the vertex extra, e.g. pip install -U anthropic[vertex].
      » pip install anthropic
    
Published   Nov 24, 2025
Version   0.75.0
🌐
Instructor
python.useinstructor.com › integrations › anthropic
Anthropic Claude Tutorial: Structured Outputs with Instructor - Instructor
Learn how to use Anthropic's Claude models (Claude 3 Opus, Sonnet, and Haiku) with Instructor to extract structured, validated data. This tutorial covers everything from basic setup to advanced patterns for production use. Get started with Claude and Instructor for structured outputs: pip install "instructor[anthropic]" Once we've done so, getting started is as simple as using our from_provider method to patch the client up.
🌐
PyPI
pypi.org › project › anthropic › 0.2.8
Anthropic Python SDK
This python repo provides access to Anthropic's safety-first language model APIs. For more information on our APIs, please check out Anthropic's documentation. ... import anthropic client = anthropic.Client(api_key=<insert token here>) client.XXX # look to examples/ directory for code demonstrations · pip install .
      » pip install anthropic
    
Published   May 08, 2023
Version   0.2.8
🌐
GitHub
github.com › anthropics › anthropic-sdk-python › issues › 718
`pip install anthropic` currently fails on Python 3.13 · Issue #718 · anthropics/anthropic-sdk-python
October 29, 2024 - One of the anthropic dependencies is not yet available for Python 3.13 - tokenizers needs pyo3-ffi and that's not on Python 3.13 yet: PyO3/pyo3#4554 This means nothing that runs Python 3.13 can pip install anthropic right now. Is the tok...
Published   Oct 29, 2024
🌐
PyPI
pypi.org › project › anthropic-haystack
anthropic-haystack · PyPI
pip install anthropic-haystack Copy PIP instructions · Latest version · Released: Nov 11, 2025 · An integration of Anthropic Claude models into the Haystack framework. These details have been verified by PyPI · deepset · These details have ...
      » pip install anthropic-haystack
    
🌐
Sentry
docs.sentry.io › platforms › python › integrations › anthropic
Anthropic | Sentry for Python
pip install "sentry-sdk[anthropic]" If you have the anthropic package in your dependencies, the Anthropic integration will be enabled automatically when you initialize the Sentry SDK. Error MonitoringLogsTracingProfiling · Python ·
🌐
LangChain
python.langchain.com › docs › integrations › providers › anthropic
Anthropic (Claude) - Docs by LangChain
This page covers all LangChain integrations with Anthropic, the makers of Claude.
🌐
GitHub
github.com › anthropics › anthropic-sdk-python
GitHub - anthropics/anthropic-sdk-python
This library also provides support for the Anthropic Vertex API if you install this library with the vertex extra, e.g. pip install -U anthropic[vertex].
Starred by 2.5K users
Forked by 411 users
Languages   Python
🌐
piwheels
piwheels.org › project › anthropic
piwheels - anthropic
The official Python library for the anthropic API · In a virtualenv (see these instructions if you need to create one): pip3 install anthropic · docstring-parser · sniffio · anyio · pydantic · distro · typing-extensions · httpx · jiter · PyPI page · pypi.org/ project/ anthropic ·
Find elsewhere
🌐
Reconify
reconify.com › docs › anthropic › python
Reconify Anthropic Python Documentation
Documentation for integrating Reconify Generative AI analytics with Anthropic via Python PIP module.
🌐
PyPI
pypi.org › project › anthropic-bedrock
Anthropic Bedrock Python API library
JavaScript is disabled in your browser · Please enable JavaScript to proceed · A required part of this site couldn’t load. This may be due to a browser extension, network issues, or browser settings. Please check your connection, disable any ad blockers, or try using a different browser
🌐
Pipedream
pipedream.com › apps › anthropic › integrations › python
Integrate the Anthropic (Claude) API with the Python API - Pipedream
Setup the Anthropic (Claude) API trigger to run a workflow which integrates with the Python API. Pipedream's integration platform allows you to integrate Anthropic (Claude) and Python remarkably fast. Free for developers.
🌐
DEV Community
dev.to › engineerdan › generating-python-code-using-anthropic-api-for-claude-ai-4ma4
Generating Python code using Anthropic API for Claude AI - DEV Community
October 21, 2024 - We're using the Anthropic SDK library for Python to access the API: import anthropic · If you want to run this example you'll have to install it: pip install anthropic · Then we create a client: client = anthropic.Anthropic() By default, the ...
🌐
PyPI
pypi.org › project › langchain-anthropic
langchain-anthropic · PyPI
pip install langchain-anthropic Copy PIP instructions · Latest version · Released: Dec 12, 2025 · Integration package connecting Claude (Anthropic) APIs and LangChain · These details have been verified by PyPI · Changelog · Source · Repository · Stars: Forks: Open issues: Open PRs: langchain · These details have not been verified by PyPI · Documentation · Homepage · Reddit · Slack · Twitter · License: MIT · Requires: Python <4.0.0, >=3.10.0 ·
      » pip install langchain-anthropic
    
🌐
PyPI
pypi.org › project › anthropic › 0.2.6
anthropic · PyPI
This python repo provides access to Anthropic's safety-first language model APIs. For more information on our APIs, please check out Anthropic's documentation. pip install .
      » pip install anthropic
    
Published   Apr 03, 2023
Version   0.2.6
🌐
GitHub
github.com › anthropics › anthropic-sdk-python › releases
Releases · anthropics/anthropic-sdk-python
anthropics / anthropic-sdk-python Public · Notifications · You must be signed in to change notification settings · Fork 411 · Star 2.5k · Releases · anthropics/anthropic-sdk-python · 24 Nov 20:41 · stainless-app · v0.75.0 · 2eb9415 · Compare · Filter ·
Author   anthropics
🌐
Claude Docs
platform.claude.com › docs › en › api › client-sdks
Client SDKs - Claude Docs
Additional configuration is needed to use Anthropic's Client SDKs through a partner platform. If you are using Amazon Bedrock, see this guide; if you are using Google Cloud Vertex AI, see this guide; if you are using Microsoft Foundry, see this guide. Python library GitHub repo · Requirements: Python 3.8+ Installation: pip install anthropic ·
🌐
Anaconda.org
anaconda.org › anaconda › anthropic
Anthropic - conda install
The Anthropic Python SDK is a library for accessing the anthropic API. It provides a simple and intuitive interface for making requests to the API and handling responses.
🌐
DEV Community
dev.to › thomastaylor › anthropic-claude-with-tools-using-python-sdk-2fio
Anthropic Claude with tools using Python SDK - DEV Community
April 21, 2024 - In this post, we'll go over how to leverage these tools using the Python Anthropic SDK. Firstly, ensure that your Anthropic API key is available as an environment variable in your shell: ... Next, install the latest version of the Anthropic SDK using pip.