Konstantin Lopuhin
Konstantin Lopuhin
If the number of results the query returns is greater than Cursor.itersize (currently 2000), the call to cursor.**iter** never returns. If I make it large, say 100000, the call finishes...
There are examples of using cookies in the docs, but no examples of setting method and body. I think it would be useful to add it, or perhaps even add...
Here is a traceback (without a way to reproduce unfortunately), which shows that most likely we still sometimes don't identify response type correctly: ``` [scrapy.core.scraper] Error downloading Traceback (most recent...
Consider a simple program: ``` import fire def add(a, zero=0): print('calculating...') print(a + zero) if __name__ == '__main__': fire.Fire(add) ``` And then suppose we make a typo in the argument...
The one in https://github.com/scrapinghub/extruct#all-in-one-extraction which is requesting ``'https://www.optimizesmart.com/how-to-use-open-graph-protocol/'`` does not work any more, it returns no data - perhaps we should self-host some example.
``extruct.extruct`` always calls ``parse_xmldom_html`` - it would be convenient if results of this parse call could be passed instead, in case we want to do some custom extractions outside.
Normally opengraph ```` tags are in the head, but having them in the body is also surprisingly common - in our internal article dataset they are present in body on...
More of a note to self - I'll expand it into something more reproducible or close: - explain_weights for xgboost regressor does not have a bias - is it possible...
There is an option for a frameless display (https://pywb.readthedocs.io/en/latest/manual/configuring.html#framed-vs-frameless-replay) which is awesome. But it still displays a banner. It would be great if there was a way to disable the...
I have a use-case where I have a "main" model which is trained with apex.amp at opt_level "O1", and all is fine. But I also have a small supplementary model...