ading2210

Results 17 comments of ading2210

> `requests.exceptions.ProxyError: HTTPSConnectionPool(host='poe.com', port=443): Max retries exceeded with url: / (Caused by ProxyError('Cannot connect to proxy.', OSError(0, 'Error')))` It seems that you're trying to connect with a proxy. Can you...

Maybe try the `socks5h` protocol, which also proxies the DNS queries? Also, are you able to use the same proxy with the python requests module in a different script?

I could add OTP authentication into the library, but I'd leave actually reading the received emails up to the user. This'll probably make it into a future 0.3.x release.

I've gotten this library to work with Flask just fine. `client.send_message` is just a normal python generator, so you'd just create a wrapper around it and return that. Something like...

Theoretically, this has become possible recently with the addition of custom bots. It should be possible to create a new bot for each conversation, and just delete it once the...

This has been possible for a while with the custom bot functionality.

@alexeygoncharov Can you try updating your version of the library?

@FriendlyUser @alexeygoncharov Try editing the example file and adding `poe.logger.setLevel(logging.INFO)` before the client object is created and send the output here.

I'm not sure why that's happening, since it works perfectly fine for me. Maybe [this](https://stackoverflow.com/q/53720324) stackoverflow post could help? Also, the `poe-client` package is completely unrelated to this project or...

The cookies seem to have an expiration of 1 year in the future, so I'm not sure why this is happening. ![cookie](https://user-images.githubusercontent.com/71154407/230221453-a0575b7e-a5df-40f0-9971-5963f7313d4c.png) I'll try and see if I can figure...