yuchenlin / rebiber

A simple tool to update bib entries with their official information (e.g., DBLP or the ACL anthology).

Home Page:https://yuchenlin.xyz/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incomplete bib entry for conference

xiaosen-wang opened this issue · comments

Hello, I find that some papers accepted by some conferences (e.g. AAAI 2020) cannot be indexed. The reason might be that we can only download the first 1000 entries when the accepted papers are more than 1,000 from DBLP. Is there any way to address such problem? Thanks very much!

Hello, @xiaosen-wang. You can use the parameter "f" defined in DBLP API.

Take the ICML 2021 as an example. The original download link is

https://dblp.uni-trier.de/search/publ/api?q=toc%3Adb%2Fconf%2Ficml%2Ficml2021.bht%3A&h=1000&format=bib1&rd=1a

It only contains the first 1,000 records. To download additional records, use the parameter "f"

https://dblp.uni-trier.de/search/publ/api?q=toc%3Adb%2Fconf%2Ficml%2Ficml2021.bht%3A&h=1000&format=bib1&rd=1a&f=1000

Then you get the subsequent 1,000 records.

That works! Thanks very much!