Martin Czygan

Results 64 comments of Martin Czygan
trafficstars

@zazi, thanks for the bug report. Could reproduce. The DNB endpoint is in general relatively broken. I believe I saw this error before: > Your request matches to many records...

> I cannot define the concrete set over there, or? Yes, oaicrawl was more of a one-shot for a particular endpoint and has a minimal feature set. > Thanks a...

@erikbern, gluish started as _glue_ for another project of ours, so that's why there's so much non-luigi-related code. But if we could move the essentials into luigi, I'd be happy....

Thanks @boerni667 for the report. It's ugly, but you can get around that by quoting a curly brace with a curly brace; I created an [example](https://gist.github.com/miku/eb419ba8226de9d7fb92e0ac101e65ab). In short: ``` $...

Yes, this is currently not possible ([shellout](https://github.com/miku/gluish/blob/3c29f56c3aa45df3e7fdb6553c95b74471d7b02a/gluish/utils.py#L86-L87) and [format](https://docs.python.org/3.7/library/stdtypes.html#str.format) interfere): ```python >>> shellout(""" echo "Hello {w}" | awk '{{ print $0 }}' """.format(w="World")) ... KeyError ' print $0 ' ```...

+1. I came across this issue, because I wanted to implement a streaming splitter in Apache Camel and ended up doing something like this: https://gist.github.com/miku/5720485. `MarcReader` implementing `Iterator` would be...

First, thanks for making this library available, it helped me to get rid of a C dependency from [cld2](https://github.com/rainycape/cld2). Just wanted to add a few additional data points concerning non-detection...

There's an upload of this dataset at: https://archive.org/details/crossref-2022-11-02 (139M docs).

Sorry for my overly delayed reply. > Since all previous harvests are written to /mydir (local cache), metha-sync implicitly sets the -from param according to the last harvest, correct? Yes....

Thanks for the cue. This should be possible today. ![](https://raw.githubusercontent.com/miku/metha/master/extra/sigint/592639.gif) We respond to [SIGINT](https://github.com/miku/metha/blob/e55e954e853a9ab4cb75d099df78e19aa7a1be74/harvest.go#L160). However, I added `os.Kill` in addition to `os.Interrupt` - in [0.2.40](https://github.com/miku/metha/releases/tag/v0.2.40).