Metadata-Version: 2.1
Name: chatgpt_interface
Version: 0.1.3
Summary: A Python interface for interacting with ChatGPT via web interface using Selenium
Home-page: https://github.com/spicanet/ChatGPTInterface
Author: SpicaNet
Author-email: dev@spicanet.net
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: selenium
Requires-Dist: webdriver-manager

# ChatGPT Interface

A Python interface for interacting with ChatGPT via web interface using Selenium.

## Installation

```
pip install chatgpt_interface
```

## Usage

```python
from chatgpt_interface import ChatGPTInterface

chatgpt = ChatGPTInterface()
chatgpt.open_chat("URL_of_ChatGPT_Web_Interface")
chatgpt.send_prompt("Hello, how are you?")
response = chatgpt.get_response()
print(response)
chatgpt.close()
```
