import bibtexparser
ss="""
@inproceedings{tmp,
title = {Comparison of the accuracy of {OpenStreetMap} for {Ireland} with {Google} {Maps} and {Bing} {Maps}},
author = {Ciepluch, Blalej and Jacob, Ricky and Mooney, Peter and Winstanley, Adam},
month = jul,
year = {2010},
}
"""
with open('test.foo', 'w') as bibfile:
bibfile.write(ss)
with open('test.foo') as bibtex_file:
bib_database = bibtexparser.load(bibtex_file)
print(bib_database.entries)
The following fails with
"UndefinedString": 'jul':