This is sort of like cryptodb but includes things outside IACR. It isn't
clear where to draw the line, because there are a LOT of third-tier conferences
and journals. See the code in sax_parser.py where there are others listed
in comments.
See also Google scholar
This includes a python parser for DBLP. There are quite a few available, but this one uses minimal RAM and parses it incrementally.
The code consists of several parts:
- the
sax_parser.pythat downloads and parses the DBLP data to produce a JSON file of articles. - the
create.sqlto create the database. Note that we store ORCIDs but we do not cross-reference cryptodb. - the
insertdb.pycode to insert into the database. - the
wwwcode for the web interface. This is written in PHP for simplicity.