Alexandre Paiva

Results 10 comments of Alexandre Paiva

The error is with the URL from figma. You are using https://www.figma.com/file/XX/YY?node-id=BLABLA&t=BLABLA-1 You need to remove everything after the '?', so in this case the URL should be: https://www.figma.com/file/XX/YY And...

Also getting: ``` 2023-09-05 00:10:34 - FATAL ERROR OCCURED: Traceback (most recent call last): File "main.py", line 4495, in signup File "concurrent\futures\_base.py", line 446, in result File "concurrent\futures\_base.py", line 391,...

> @staz9 https://bogdanfinn.gitbook.io/open-source-oasis/tls-client/request-headers#header-key-capitalization > > The client will change your header keys to title case when you are providing them all lowercase but using http1. Make sure to use http2...

Do you have multiple python versions running? virtual environments? maybe the script is running in one version and you installed in another version, leave here logs of your python versions...

> @AlexPaiva i think for this usecase there are some tools outside to control the network latency of your system. I doubt that its worth implementing some kind of simulation...

The error is with the URL from figma. You are using https://www.figma.com/file/XX/YY?node-id=BLABLA&t=BLABLA-1 You need to remove everything after the '?', so in this case the URL should be: https://www.figma.com/file/XX/YY And...

Stealth hasn't been updated in a while, is it still viable?

> Any idea how we could test this in automation, it may easily break if we have no test for it Yes, let me explain how it would differenciate for...

Sorry on the late reply, was very busy! You mean, why not use sys.executable directly correct?

The goal was to leave the entire thing as it was and only change when it's a frozen env, especially for testing. But agreed that it can be simplified.