All Projects → ptigas → bibpy

ptigas / bibpy

Licence: other
Bibtex parser in python

Programming Languages

TeX
3793 projects
python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to bibpy

my-writing-workflow
Tutorial for converting markdown files in to APA-formatted docs, based on my workflow.
Stars: ✭ 35 (+25%)
Mutual labels:  bibtex
JabRef-Browser-Extension
Browser extension for JabRef to allow importing of new items directly from the browser.
Stars: ✭ 73 (+160.71%)
Mutual labels:  bibtex
rfc-bibtex
A command line tool that creates bibtex entries for IETF RFCs and Internet Drafts.
Stars: ✭ 43 (+53.57%)
Mutual labels:  bibtex
econ-bst
BibTeX style file for economics.
Stars: ✭ 33 (+17.86%)
Mutual labels:  bibtex
LaTeX-Templates
Document templates composed using LaTeX for my college assignments and projects (Applicable for any other university or college) ✨
Stars: ✭ 18 (-35.71%)
Mutual labels:  bibtex
bibtex-tidy
Cleaner and Formatter for BibTeX files
Stars: ✭ 432 (+1442.86%)
Mutual labels:  bibtex
citeproc-el
A CSL 1.0.2 Citation Processor for Emacs.
Stars: ✭ 75 (+167.86%)
Mutual labels:  bibtex
snipmate-snippets-bib
Snipmate.vim support for BibTeX files
Stars: ✭ 13 (-53.57%)
Mutual labels:  bibtex
PubViz
PubViz is a tool for interactive visualization of publication data in BibTeX.
Stars: ✭ 14 (-50%)
Mutual labels:  bibtex
academic-cv-publications
Generate a customised list of publications for your LaTeX CV using BibTeX entries.
Stars: ✭ 60 (+114.29%)
Mutual labels:  bibtex
proofengineering-bib
BibTeX bibliographies for proof engineering-related papers
Stars: ✭ 24 (-14.29%)
Mutual labels:  bibtex
Rdpack
R package Rdpack provides functions and macros facilitating writing and management of R documentation.
Stars: ✭ 21 (-25%)
Mutual labels:  bibtex
scholia
Wikidata-based scholarly profiles
Stars: ✭ 166 (+492.86%)
Mutual labels:  bibtex
bib2xhtml
Convert BibTeX references into XHTML
Stars: ✭ 35 (+25%)
Mutual labels:  bibtex
gbt7714-bibtex-style
GB/T 7714-2015 BibTeX Style
Stars: ✭ 704 (+2414.29%)
Mutual labels:  bibtex
html2biblatex
A tiny bookmarklet for exporting web pages to BibLaTeX (all browsers / no installation).
Stars: ✭ 73 (+160.71%)
Mutual labels:  bibtex
bibtex-parser
BibTex Parser provides an API to read .bib files programmatically.
Stars: ✭ 36 (+28.57%)
Mutual labels:  bibtex
nom-bibtex
A feature complete bibtex parser using nom
Stars: ✭ 13 (-53.57%)
Mutual labels:  bibtex
ads2bibdesk
ads2bibdesk helps you add astrophysics articles listed on NASA/ADS to your BibDesk database using the new ADS Developer API
Stars: ✭ 32 (+14.29%)
Mutual labels:  bibtex
doi2bib
get the bibtex string given a doi
Stars: ✭ 127 (+353.57%)
Mutual labels:  bibtex

Bibpy

Build Status

About

Bibpy is a (yet another) BibTex file parser in python.

What's different ?

It doesn't depend on libraries like pyparser etc. It's small and fast. Also, sometimes it recovers from common errors.

What grammar is parsing ?

The BNF it parses is based on http://tex.stackexchange.com/questions/16490/the-gold-standard-in-bibtex-databases/16492#16492

A rough grammar (case-insensitive):

 Database  ::= (Junk '@' Entry)*
 Junk      ::= .*?
 Entry 	   ::= Record | Comment | String | Preamble
 Comment   ::= "comment" [^\n]* \n     -- ignored
 String    ::= "string" '{' Field* '}'
 Preamble  ::= "preamble" '{' .* '}'   -- (balanced)
 Record    ::= Type '{' Key ',' Field* '}'
       	   |   Type '(' Key ',' Field* ')' -- not handled
 Type  	   ::= Name
 Key   	   ::= Name
 Field     ::= Name '=' Value
 Name      ::= [^\s\"#%'(){}]*
 Value ::= [0-9]+
       |   '"' ([^'"']|\\'"')* '"'
       |   '{' .* '}'          -- (balanced)

License

(The MIT License)

Copyright (c) 2011 Panagiotis Tigkas

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].