C W
C W
Shoving debugging into requests, the insertion of brackets into the request *is* working: ``` durr@nmscrape /m/S/MangaCMS> python3 wat.py Starting new HTTPS connection (1): api.mangadex.org:443 send: b'GET /manga?translatedLanguage%5B%5D=en HTTP/1.1\r\nHost: api.mangadex.org\r\nUser-Agent: python-requests/2.21.0\r\nAccept-Encoding:...
Ok, digging further, the `/manga` endpoint has renamed the `translatedLanguage` parameter to `availableTranslatedLanguage`, which is the cause of that issue. Hacking the handling of the `availableTranslatedLanguage` parameter into `__parse_manga_params` makes...
Ah, good to know. This is kind of a silly project, so I'll just switch to Debian 10 for the OS. > My suggestion for folks who are just trying...
Huh, that's super weird. I've not tested this on any postgres install newer then 12, mostly because the one DB I have has a 8+ TB database and I don't...
See if you can (manually) run some of the queries in https://github.com/fake-name/pg-spgist_hamming/blob/master/bktree/sql/utilities.sql, for example. That would let us narrow down where the issue is . While the install process should...
There's still a logic bug here. `if imagepaths is not none or imagepaths|length == 0` makes no sense, because if `imagepaths` is none, it still evaluates the length check. I...
For the moment, I believe you can manually do `rpc.host_exceptions = True` to work around the issue.
One fruity idea: If the plugin can access the chrome devtools, you can puppet a remote tab to fetch, and then retreive the rendered HTML after it's been rendered by...
Note that some of the headers they say are useless are actually important in some cases. There's a decent discussion on hacker news [here](https://news.ycombinator.com/item?id=17074721). The idea is good, but fastly's...
Well, that is somewhat helpful.