Metadata-Version: 2.1
Name: PoePT
Version: 0.1.3
Summary: Python package for interacting with the POE chatbot
Home-page: https://github.com/saikyo0/PoePT
Author: Saikyo0
Author-email: mamaexus@gmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

# PoePT
PoePT is a Selenium Python package that provides a simple interface for interacting with the Poe chatbot.
Giving you access to multiple chatbots like:
- ChatGPT-3
- ChatGPT-4
- Claude-Instant  
 <br />


## Installation
You can install PoePT using pip:
```
pip install poept
```  
<br />


## Requirements:
- a POE account (make one at poe.com) 
- Chrome

  
<br />

## Usage
Here's an example of how to use PoePT to log in to the Poe chatbot and ask a question:

- create connection with bot
- login is ***needed*** every time but will only ask for code if you havent logged in before
```python
from poept import PoePT

bot = PoePT()
bot.login("your_email@example.com") 
```
- Once you're logged in, you can ask a question to the chatbot of your choice and retrieve the result:

```python
result = bot.ask(bot="sage", prompt="hello")
print(result)
```
- When you're done with your session, be sure to close the connection:

```python
bot.close()
```


  
<br />

## Extra

- status of client

```python
status = bot.stat
```
| Status | Meanings                                 |
|--------|------------------------------------------|
| false  | the bot isn't connected and cant answer  |
| ready  | the bot is connected and ready to answer |
| wait   | the bot is generating an answer          |
  
<br />

- Get Live Updating Result

```python
from poept import PoePT

bot = PoePT()
bot.login("mohammedaminsultan01@gmail.com") 
result = bot.ask(bot="sage", prompt="hello")

while(bot.stat == "wait"):
    print(bot.response)

#run the while loop by threading
```

- Live voice Input

```python
print("Listening...") 
question = bot.livevoice(timeout=2)
print("Recording complete.")
result = bot.ask(bot="sage", prompt=question)
print("\nresponse:", result)
```
  
<br />

- File voice Input
```python
question = bot.filevoice("audio.wav")
result = bot.ask(bot="sage", prompt=question)
print("\nresponse:", result)
```
  
<br />

- clear cookies

```python
status = bot.status()
```
  
<br />

- configure classes and keys
```python
bot.config(
    website="https://poe.com/",
    clear_key="ChatMessageInputFooter_chatBreakButton__hqJ3v", 
    code_area="input.VerificationCodeInput_verificationCodeInput__YD3KV", 
    talk_key="//button[contains(., 'Talk')]", 
    email_area="input[type='email']", 
    email_key="//button[contains(., 'Email')]", 
    go_key="//button[contains(., 'Go')]", 
    log_key="//button[contains(., 'Log')]", 
    text_area="GrowingTextArea_textArea__eadlu", 
    send_key="button.ChatMessageSendButton_sendButton__OMyK1", 
    chat_element="ChatMessagesView_infiniteScroll__K_SeP", 
    msg_element="ChatMessage_messageRow__7yIr2"
)
```

| KEY           | Value                                                     |
|---------------|-----------------------------------------------------------|
| website       | "https://poe.com/"                                        |
| clear_key     | "ChatMessageInputFooter_chatBreakButton__hqJ3v"           |
| code_area     | "input.VerificationCodeInput_verificationCodeInput__YD3KV"|
| talk_key      | "//button[contains(., 'Talk')]"                           |
| email_area    | "input[type='email']"                                     |
| email_key     | "//button[contains(., 'Email')]"                          |
| go_key        | "//button[contains(., 'Go')]"                             |
| log_key       | "//button[contains(., 'Log')]"                            |
| text_area     | "GrowingTextArea_textArea__eadlu"                         |
| send_key      | "button.ChatMessageSendButton_sendButton__OMyK1"          |
| chat_element  | "ChatMessagesView_infiniteScroll__K_SeP"                  |
| msg_element   | "ChatMessage_messageRow__7yIr2"                           |
  
<br />

## Contributing 
If you encounter a bug or would like to suggest a new feature, please open an issue on the GitHub repository. Pull requests are also welcome! 

<a href=https://github.com/saikyo0>saikyo0</a>
