Add CONTRIBUTING and CODE_OF_CONDUCT

pull/2/head
Vinayak Mehta 2018-09-12 18:52:30 +05:30
parent 9dbbf09c59
commit d7afe56711
4 changed files with 5 additions and 3 deletions

View File

0
CONTRIBUTING.md 100644
View File

View File

@ -2,7 +2,7 @@
![license](https://img.shields.io/badge/license-MIT-lightgrey.svg) ![python-version](https://img.shields.io/badge/python-2.7-blue.svg) ![license](https://img.shields.io/badge/license-MIT-lightgrey.svg) ![python-version](https://img.shields.io/badge/python-2.7-blue.svg)
Camelot is a Python library which makes it easy for *anyone* to extract tables from PDF files! **Camelot** is a Python library which makes it easy for *anyone* to extract tables from PDF files!
## Usage ## Usage

View File

@ -14,7 +14,7 @@ Release v\ |version|. (:ref:`Installation <install>`)
.. image:: https://img.shields.io/badge/python-2.7-blue.svg .. image:: https://img.shields.io/badge/python-2.7-blue.svg
:target: https://pypi.org/project/camelot-py/ :target: https://pypi.org/project/camelot-py/
**Camelot** is a Python library and command-line tool for extracting tables from PDF files. **Camelot** is a Python library which makes it easy for *anyone* to extract tables from PDF files!
.. note:: Camelot only works with: .. note:: Camelot only works with:
@ -44,11 +44,13 @@ Usage
'page': 1 'page': 1
} }
>>> tables[0].to_csv('foo.csv') # to_json, to_excel, to_html >>> tables[0].to_csv('foo.csv') # to_json, to_excel, to_html
>>> tables[0].df >>> tables[0].df # get a pandas DataFrame!
.. csv-table:: .. csv-table::
:file: _static/csv/foo.csv :file: _static/csv/foo.csv
There's a [command-line interface]() too!
The User Guide The User Guide
-------------- --------------