Raphael Geronimi
Raphael Geronimi
In some cases, Trafilatura repeats the document title in the body. E.g. with this URL: ``` https://sebastianraschka.com/blog/2022/confidence-intervals-for-ml.html ``` and this code: ``` extraction = trafilatura.core.bare_extraction(content_tree, include_comments=False) title = extraction["title"] body...
I am trying to use multi-level inheritance in Hero: The master page skeleton for the whole website is "page.html": ``` ... ... PAGE ... ``` For the admin part of...
In the following function, ```prealloc``` is confused by ```buf``` being redeclared: ``` func copySort(w io.Writer, r io.Reader, sep rune, keys []int) error { // Copy the header line. var buf...
🐞 **Describe the bug** Aiohttp server redirects ( triggered through "raise HTTPFound(...)") fail sometimes, depending on the final webserver targeted by the redirect, when the URL includes a question mark...
## What do these changes do? Fix https://github.com/aio-libs/aiohttp/issues/5319 ## Are there changes in behavior for the user? No if their code was correct, i.e. if they didn't use buggy URLs...
The code managing the cancellation of inactive orders (https://github.com/erdewit/ib_insync/blob/006fcfc19bb7578e267096e61ae74fae6aff90e1/ib_insync/ib.py#L681) declares them immediately as Cancelled, as opposed to PendingCancel. There is one common case where this seems premature: unavailable shares to...
ib_insync's filled quantity algorithm performs a sum of the quantity of all the trade's fills: https://github.com/erdewit/ib_insync/blob/20180813c2c768c408f1febe7e1373423dd9d0f0/ib_insync/wrapper.py#L436 These fills are communicated as "executions" by IB through the execDetails callback. However IB...
Project has not received updates for more than one year, is it still maintained? Or should we migrate to another framework (unfortunately I could not find a framework with such...
Python 2 is now deprecated. In a Python 3 environment the "npm install" command fails as it tries to run node-gyp in a deprecated (from the Python 2 era) 3.8...
Stroking is unsupported on cubic bezier path segments: // Add3 adds a cubic segment to the stroker. func (k *stroker) Add3(b, c, d fixed.Point26_6) { panic("freetype/raster: stroke unimplemented for cubic...