user895v
user895v
I've made socks5h work on my machine. Here's how. ### Short answer: This repo uses outdated *.DLL, *.SO, *.DYLIB libraries in [FlorianREGAZ/Python-Tls-Client/tls_client/dependencies/](https://github.com/FlorianREGAZ/Python-Tls-Client/tree/master/tls_client/dependencies), you need to update them with latest [version](https://github.com/bogdanfinn/tls-client/releases)....
@aaugustin Thank you for reply. I have actually tested with more websockets as well. For example this code bumps memory to ~161MB (which is roughly still the same ~1.1MB per...
I also tried to inspect if the problem is with asyncio for some reason. And this code keeps memory at ~10MB so asyncio works perfectly fine. ``` import asyncio async...
@aaugustin Confirming your findings. I got very similar results as you. The issue lies in TLS connection - it is the source of high memory usage. If we use `wss`...
One more thing I noticed on **WindowsOS** is the default use of **proactor_events** which cause **32.0 KiB** additional memory allocation per connection. Whereas **macOS** uses **selector_events** which cause only **380...