Jeroen Clemens Vermunt

Results 8 comments of Jeroen Clemens Vermunt

I want to drop this relevant link here: https://stackoverflow.com/questions/71603314/ssl-error-unsafe-legacy-renegotiation-disabled/72374542#72374542 Here is a very useful piece of code to circumvent the issue without downgrading: ```` import requests import urllib3 import SSL...

I think that I have the same issue, is the following output during scraping considered running smoothly? ```` [scrapy.downloadermiddlewares.redirect] DEBUG: Redirecting (301) to from [scrapy.core.engine] DEBUG: Crawled (200) (referer: None)...

I have this issue but on row.update() ```` table = ws.get_table('table') rows = table.get_rows() for row in rows: pprint(row.values) row.update([['test', 'test2', 'a', 'b', 'c', 'd']]) ```` output: ```` [['My, 'test',...

possible solution mentioned here: https://stackoverflow.com/questions/65210929/ms-graph-api-update-tablerow-fail-for-400-client-error-bad-request-for-url

Thanks Daviareias, I added this to my setup and it seems to be working for now. The `sendCommand` function would be nice as well, something like this: ```` local function...

I am on Wayland and seeing the same result as @vineoak, is there a solution without having to swich to X11?

Not quite a full feature yet but I wrote a function which maps question names and answers to ids, I use it for myself and could maybe be useful as...