Crawl and parse CS conferences, and outputs bib files. You can also directly get the output bib files at lihebi/biber-dist.
You can install it as a racket package:
raco pkg install https://github.com/lihebi/biber
Dependencies:
- sxml
- html-parsing
- roman-numeral
raco pkg install sxml html-parsing roman-numeral
But currently I didn’t expose cmd interface. So you will need to use the APIs, e.g.
(require biber/bibgen
biber/bib-write)
(parameterize ([BIBDIR "~/git/biber-dist/"])
(gen-bib-and-write 'icml 2019)
(gen-bib-and-write 'naacl 2019))
See main.rkt for more examples. I haven’t tested using it as a package though, so there might be some minor problems accessing the APIs.