I have a bibtex file that contains roughly 640 entries (rising tendency). I use Jabref to maintain this file. Actually I want to clean up things and do stuff, where Jabref cannot help. So I thought writing a code and be as flexible as possible.
Some tasks are e.g. which articles have a missing "file" entry or "title" entry? Which articles have the same file entry, etc.
My approach was populating a list of dictionaries. Dictionary contains the information of one article in the bibtex file. For example:
elements = [{
'author': 'Ando, K. and Ota, H. and Oki, T',
'comment': 'modelling, fundamental diagram, plane, cellular automata',
'file': 'Ando1988.pdf',
'issue': '2',
'journal': 'Railway R',
'owner': 'bob',
'timestamp': '2008.01.09',
'title': 'Forecasting the flow of people',
'type': 'ARTICLE',
'volume': '45',
'year': '1988'},
{'author': "Helbing, D. and Farkas, I. J. and Moln\\'{a}r, P. and Vicsek, T",
'booktitle': 'Pedestrian and Evacuation Dynamics',
'editor': 'Schreckenberg, Michael and Scharma, Som Deo',
'file': 'Helbing2002.pdf',
'key': 'Helbing2002',
'owner': 'jack',
'publisher': 'Springer',
'timestamp': '2007.12.12',
'title': 'Simulation of pedestrian crowds in normal and evacuation situations',
'type': 'INPROCEEDINGS',
'year': '2002'
}]
My functions that operate on this structure start always with something like
for element in elements:
do_stuff with element
Although my code works fine, but somehow I have a feeling that I'm doing things brute force wise. This why I would like to initiate a discussion and ask you:
- Is there a neater/smarter/elegant structure than the one I'm using (list of dictionaries)?
- How would you organize the data such that processing the information becomes easier.
EDIT: I would like to mention that due to different type of articles (BOOK, PROCEEDINGS, ARTICLE, etc) and because I m only human, the dictionaries may have different keys and different numbers of keys.