yuchenlin / rebiber

A simple tool to update bib entries with their official information (e.g., DBLP or the ACL anthology).
https://yuchenlin.xyz/
MIT License
2.63k stars 158 forks source link

Incomplete bib entry for conference #30

Closed xiaosen-wang closed 3 years ago

xiaosen-wang commented 3 years ago

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!

StepinSilence commented 3 years ago

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.

xiaosen-wang commented 3 years ago

That works! Thanks very much!