Add CONTRIBUTING and CODE_OF_CONDUCT
parent
9dbbf09c59
commit
d7afe56711
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue