Metadata-Version: 2.1
Name: ChatGPTAutomation
Version: 0.1.2
Summary: A Python package for automating interactions with ChatGPT using Selenium.
Home-page: https://github.com/iamseyedalipro/ChatGPTAutomation
Author: Seyed Ali Hosseini
Author-email: iamseyedalipro@gmail.com
Keywords: chatgpt automation selenium
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Testing
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENCE.md
Requires-Dist: selenium ==4.9.0
Requires-Dist: pyperclip ==1.8.2

# ChatGPTAutomation

## Description
ChatGPTAutomation is a Python package designed to automate interactions with ChatGPT using Selenium. It simplifies the process of sending prompts, managing responses, and handling files in the ChatGPT interface, making it an ideal tool for developers and testers who require automated ChatGPT interactions.

## Features
- Automated sending of messages to ChatGPT.
- Support for file uploads to ChatGPT.
- Retrieval and storage of ChatGPT conversations.
- Customizable WebDriver settings for browser management.

## Installation
To install ChatGPTAutomation, simply run:
```bash
pip install ChatGPTAutomation
```

## Usage
Import the package and use it in your Python scripts as follows:
```python
from chatgpt_automation.chatgpt_automation import ChatGPTAutomation

# Initialize with path to Chrome and ChromeDriver
chat_bot = ChatGPTAutomation(chrome_path="path/to/chrome.exe", chrome_driver_path="path/to/chromedriver.exe")

# Example: Sending a prompt
chat_bot.send_prompt_to_chatgpt("Hello, ChatGPT!")

# Retrieve and save conversation
chat_bot.save_conversation("conversation.txt")
```

Send file with prompt:
```python
chat_bot.upload_file_for_prompt("test_file.txt")
chat_bot.send_prompt_to_chatgpt("Please explain to me what is in this file?")
```
check_response_status function:
```python
if chat_bot.check_response_status():
    print("Response is ready and complete.")
    # You can now proceed to retrieve or process the response.
else:
    print("There was an issue in generating the response.")
```

get the last response using return_last_response function:
```python
chat_bot.send_prompt_to_chatgpt("Hello, ChatGPT!")
response = chat_bot.return_last_response()
```

## Requirements
- Python 3.8 or higher
- Selenium==4.9.0
- Other dependencies can be found in `requirements.txt`

## License
This project is licensed under the MIT License - see the [LICENCE.md](LICENCE.md) file for details.

## Contact
For questions or feedback, please contact Seyed Ali Hosseini at iamseyedalipro@gmail.com.

## Acknowledgements
- OpenAI for ChatGPT
- Selenium contributors
