The official Python library for the anthropic API
Project description
Claude SDK for Python
The Claude SDK for Python provides access to the Claude API from Python applications.
Documentation
Full documentation is available at platform.claude.com/docs/en/api/sdks/python.
Installation
pip install anthropic
Getting started
import os
from anthropic import Anthropic
client = Anthropic(
api_key=os.environ.get("ANTHROPIC_API_KEY"), # This is the default and can be omitted
)
message = client.messages.create(
max_tokens=1024,
messages=[
{
"role": "user",
"content": "Hello, Claude",
}
],
model="claude-opus-4-6",
)
print(message.content)
Requirements
Python 3.9+
Contributing
See CONTRIBUTING.md.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file anthropic-0.84.0.tar.gz.
File metadata
- Download URL: anthropic-0.84.0.tar.gz
- Upload date:
- Size: 539.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.13 {"installer":{"name":"uv","version":"0.9.13"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72f5f90e5aebe62dca316cb013629cfa24996b0f5a4593b8c3d712bc03c43c37
|
|
| MD5 |
f3187c81613d996fff6fd92e57f7672f
|
|
| BLAKE2b-256 |
04ea0869d6df9ef83dcf393aeefc12dd81677d091c6ffc86f783e51cf44062f2
|
File details
Details for the file anthropic-0.84.0-py3-none-any.whl.
File metadata
- Download URL: anthropic-0.84.0-py3-none-any.whl
- Upload date:
- Size: 455.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.13 {"installer":{"name":"uv","version":"0.9.13"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
861c4c50f91ca45f942e091d83b60530ad6d4f98733bfe648065364da05d29e7
|
|
| MD5 |
c2e22d71cdcedda364c99ded94a40be3
|
|
| BLAKE2b-256 |
64ca218fa25002a332c0aa149ba18ffc0543175998b1f65de63f6d106689a345
|