Update README

pull/2/head
Vinayak Mehta 2018-09-12 18:47:14 +05:30
parent 81bdef4173
commit 0e7a3f6f18
1 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,8 @@
# Camelot: PDF Table Parsing for Humans # Camelot: PDF Table Parsing for Humans
Camelot is a Python library and command-line tool for extracting tables from PDF files. ![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!
## Usage ## Usage
@ -20,10 +22,10 @@ Camelot is a Python library and command-line tool for extracting tables from PDF
'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 # get a pandas dataframe! >>> tables[0].df # get a pandas DataFrame!
</pre> </pre>
There's a [command-line tool]() too! There's a [command-line interface]() too!
## Installation ## Installation