
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
A Python package for automating interactions with ChatGPT using Selenium. Chatgpt automation without api. Chatgptautomation
ChatGPTAutomation is a Python package that automates interactions with ChatGPT using Selenium, streamlining the process for developers and testers. π
Install with:
pip install ChatGPTAutomation
from chatgpt_automation.chatgpt_automation import ChatGPTAutomation
chat_bot = ChatGPTAutomation(
username="<your username here>", # Optional
password="<your password here>" # Optional
)
from chatgpt_automation.chatgpt_automation import ChatGPTAutomation
chat_bot = ChatGPTAutomation(
chrome_path="path/to/chrome.exe",
chrome_driver_path="path/to/chromedriver.exe",
username="<your username here>", # Optional
password="<your password here>" # Optional
)
# Send prompt
chat_bot.send_prompt_to_chatgpt("Hello, ChatGPT!")
# Save conversation
chat_bot.save_conversation("conversation.txt")
chat_bot.upload_file_for_prompt("test_file.txt")
chat_bot.send_prompt_to_chatgpt("Explain this file?")
if chat_bot.check_response_status():
print("Response ready.")
else:
print("Response issue.")
chat_bot.send_prompt_to_chatgpt("Hello, ChatGPT!")
response = chat_bot.return_last_response()
chat_bot.switch_model(4)
if chat_bot.check_login_page():
chat_bot.login()
The gmail_login_setup
function in ChatGPTAutomation
allows you to automate the process of logging into ChatGPT using a Gmail account.
To automatically log in using Gmail credentials, you can use the gmail_login_setup
method. This method requires the email and password to be set either as parameters or within the class instance.
# Automatic login using stored credentials
chat_bot.gmail_login_setup()
# Alternatively, specify the credentials directly
chat_bot.gmail_login_setup(email="your.email@gmail.com", password="yourpassword")
if you logged in to the google account but logged out from openai account can use this function for login with that gmail
chat_bot.login_using_gamil("iamseyedalipro@gmail.com") #this is optional you can set the email first of setup on username field
The ChatGPTAutomation
class includes configurable delays for various operations, defined in the DelayTimes
class:
CONSTRUCTOR_DELAY
: Time to wait for initialization.SEND_PROMPT_DELAY
: Delay after sending a prompt to ChatGPT.UPLOAD_FILE_DELAY
: Delay following a file upload.RETURN_LAST_RESPONSE_DELAY
: Wait time to fetch the last response.OPEN_NEW_CHAT_DELAY
: Delay in opening a new chat session.DEL_CURRENT_CHAT_OPEN_MENU_DELAY
: Wait time before deleting current chat.DEL_CURRENT_CHAT_AFTER_DELETE_DELAY
: Delay after deleting current chat.DEL_CURRENT_CHAT_BEFORE_OPEN_NEW_CHAT_DELAY
: Wait time before opening new chat after deletion.CHECK_RESPONSE_STATUS_DELAY
: Interval to check response status.These delays are crucial for the stability and reliability of automated interactions with ChatGPT.
The ChatGPTAutomation
class comes with default delay settings for various operations, suitable for most use cases. However, you might find the need to adjust these delay times based on your network speed, system performance, or specific use case requirements. Hereβs how you can customize these delay times.
The delay settings are part of the DelayTimes
inner class in ChatGPTAutomation
. They are defined as class variables and can be accessed directly using the class name.
To change the delay times, access the respective variable in the DelayTimes
class and set it to your desired value (in seconds). Hereβs an example of how to do this:
from chatgpt_automation.chatgpt_automation import ChatGPTAutomation
# Access and modify delay times
ChatGPTAutomation.DelayTimes.CONSTRUCTOR_DELAY = 10 # Set constructor delay to 10 seconds
ChatGPTAutomation.DelayTimes.SEND_PROMPT_DELAY = 25 # Set send prompt delay to 25 seconds
# ... similarly for other delay times
# Initialize ChatGPTAutomation with customized delay times
chat_bot = ChatGPTAutomation(
username="<your username here>",
password="<your password here>"
)
# The rest of your code...
By following these steps and recommendations, you can fine-tune the behavior of the ChatGPTAutomation
class to best fit your automation needs.
requirements.txt
for more.MIT License - see LICENCE.md.
Seyed Ali Hosseini π§βπ» - iamseyedalipro@gmail.com π§.
FAQs
A Python package for automating interactions with ChatGPT using Selenium. Chatgpt automation without api. Chatgptautomation
We found that ChatGPTAutomation demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Β It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.