owmeta.bibtex module¶
-
owmeta.bibtex.bibtex_to_document(bibtex_entry, context=None)[source]¶ Takes a single BibTeX entry and translates it into a
Documentobject
-
owmeta.bibtex.load(bibtex_file)[source]¶ Load BibTeX records from a file
Parameters: - bibtex_file : file object
File containing one or more BibTex records
Returns: bibtexparser.bibdatabase.BibDatabaseRecords represented in the string
-
owmeta.bibtex.load_from_file_named(file_name)[source]¶ Loads from a file with the given name
Parameters: - file_name :
str Name of the bibtex file to open
Returns: bibtexparser.bibdatabase.BibDatabaseRecords from the named file
- file_name :
-
owmeta.bibtex.loads(bibtex_string)[source]¶ Load BibTeX records from a string
Parameters: - bibtex_string :
str Text of one or more BibTex records
Returns: bibtexparser.bibdatabase.BibDatabaseRecords represented in the string
- bibtex_string :