Metadata-Version: 2.0
Name: bibtex2html.py
Version: 1.0.1
Summary: bibtex to html.
Home-page: https://github.com/JianCheng/bibtex2html.py
Author: Jian Cheng
Author-email: jian.cheng.1983@gmail.com
License: BSD
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Dist: bibtexparser
Requires-Dist: bs4
Requires-Dist: docopt


# bibtex2html.py

[bibtex2html.py](https://github.com/JianCheng/bibtex2html.py) coverts a bibtex file into an html file.
It considers additional fields (e.g., note, code, etc.) in bibtex. 
It also can show corresponding google scholar citations related with bibtex entries by parsing the google scholar profile. 


## Dependancies

Dependencies can be satisfied by running `pip install -r requirements.txt`


## Examples

* Generate paper lists by type and by year using a configuration file. It requires access to google scholar.

```
./bibtex2html/bibtex2html.py examples/papers.bib examples/papers.html -c examples/papers.ini 
```

* Do not show paper citations if you cannot access google scholar. Override options in configuration file.

```
./bibtex2html/bibtex2html.py examples/papers.bib examples/papers.html -c examples/papers.ini -i "{'show_citation':'no', 'show_total_citation':False}"
```


* Generate paper list by type with a selected first author and selected years.

```
./bibtex2html/bibtex2html.py examples/papers.bib examples/papers.html -c examples/papers.ini -i "{'show_paper_style':'type', 'selection_and': {'author_first': ['Jian Cheng'], 'year':[2010,2013] }}"
```


