Metadata-Version: 2.1
Name: chatgpt_interface
Version: 0.1.7
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
Project-URL: Bug Tracker, https://github.com/spicanet/ChatGPTInterface/issues
Project-URL: Source, https://github.com/spicanet/ChatGPTInterface
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: selenium>=3.141.0
Requires-Dist: webdriver-manager>=3.4.2

# 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()
```
