Skip to main content

A Python package for automating interactions with ChatGPT using Selenium.

Project description

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:

pip install ChatGPTAutomation

Usage

Import the package and use it in your Python scripts as follows:

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:

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:

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:

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 file for details.

Contact

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

Acknowledgements

  • OpenAI for ChatGPT
  • Selenium contributors

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ChatGPTAutomation-0.1.3.tar.gz (10.5 kB view hashes)

Uploaded Source

Built Distribution

ChatGPTAutomation-0.1.3-py3-none-any.whl (10.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page