Metadata-Version: 2.1
Name: anthropic
Version: 0.2.7
Summary: Library for accessing the anthropic API
Author: Anthropic
License: MIT
Project-URL: homepage, https://github.com/anthropics/anthropic-sdk-python
Project-URL: repository, https://github.com/anthropics/anthropic-sdk-python.git
Keywords: anthropic,anthropicai
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# 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](https://console.anthropic.com/docs).

## How to use

```
pip install .
export ANTHROPIC_API_KEY=<insert token here>
python examples/basic_sync.py
python examples/basic_stream.py
python examples/count_tokens.py
```
