ucsky / bibtex-csv

Converts bibtex files to CSV.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bibtex-csv

Converts bibtex files to CSV.

Overview

This program converts bibliography databases stored in the BibTeX / BibLaTeX format to the comma-separated value format.

Dependencies

This script requires Python 3.3.3. It was not tested with other versions of Python. Python 2 will definitely not work.

Usage

Input is via standard input, output is via standard output. Files can be processed using your operating system's built in file pipe / redirection operators (see examples below).

Examples

  • Converting a single .bib file:
./convert.py < bibliography.bib > spreadsheet.csv
  • Converting multiple .bib files:
cat *.bib | ./convert.py > spreadsheet.csv

About

Converts bibtex files to CSV.

License:MIT License


Languages

Language:Python 83.5%Language:TeX 16.5%