Metadata-Version: 2.2
Name: py-deepseek-api
Version: 1.0.0
Summary: Unoffical DeepSeek API for Python
Home-page: https://github.com/robbinhust/py-deepseek-api
Author: robbinhust
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.32.3
Requires-Dist: safe-dict>=1.0.3
Requires-Dist: wasmtime>=29.0.0
Requires-Dist: pycryptodome>=3.21.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Unoffical DeepSeek API for Python

A reverse-engineered DeepSeek API. Fully extensible for chatbots and other applications.

---

## Installation
Install the package using pip:

```bash
pip install py-deepseek-api
```

## Usage

### Basic example (streamed):

```python
from deepseek import DeepSeekApi, Conversation

deepseek_api = DeepSeekApi(your_token_here)

conv = Conversation(deepseek_api)

conv.continuous_chat()
```

### How to Get a Token?
You can easily obtain a token using your email and password:
```python
token = deepseek_api.login(email, password)
print(token)
```

### All API methods
For detailed usage and advanced developer guides, refer to the [Wiki](https://github.com/robbinhust/py-deepseek-api/wiki/).

## Reporting Issues
If you encounter bugs or have feature requests, please open an issue on the [GitHub Issues page](https://github.com/robbinhust/py-deepseek-api/issues/). Make sure to provide detailed information and steps to reproduce the problem.

## Disclaimer
This API is intended for educational purposes only. Any use for commercial purposes is strictly prohibited without prior permission. If any violation occurs, please contact me for immediate removal.
