Metadata-Version: 2.1
Name: easychatgpt
Version: 0.0.2
Summary: An unofficial yet elegant interface of the ChatGPT API using browser automation that bypasses cloudflare detection and recaptchas.
Home-page: https://github.com/acheong08/ChatGPT
Author: LanLan
Author-email: 3281448091@proton.me
License: GNU General Public License v2.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: selenium (~=4.7.2)
Requires-Dist: undetected-chromedriver (~=3.1.7)
Requires-Dist: pypasser

## EasyChatGPT

> An unofficial yet elegant interface of the ChatGPT API using browser automation that bypasses cloudflare detection and recaptchas.

## Install

```pip install easychatgpt```

## Features

- [x] Bypass Cloudflare's anti-bot protection using `undetected_chromedriver`
- [x] Audio Recaptcha solver

## Usage

Copy the .env file and put in your openai email and password
```bash
cp .env.example .env
```

Simple Usuage
```python
from easychatgpt.chatgpt import ChatClient
import os

OPENAI_EMAIL = os.getenv("OPENAI_EMAIL")
OPENAI_PASSWORD = os.getenv("OPENAI_PASSWORD")

chat = ChatClient(OPENAI_EMAIL,OPENAI_PASSWORD)

answer = chat.interact("Introduce your self")

print(answer)
```


## TODOS
1. Headless Support
2. Session login
3. Rapid Deploys
