From d7afe567110820dc5b5c85a734d0227e29372936 Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Wed, 12 Sep 2018 18:52:30 +0530 Subject: [PATCH] Add CONTRIBUTING and CODE_OF_CONDUCT --- CODE_OF_CONDUCT.md | 0 CONTRIBUTING.md | 0 README.md | 2 +- docs/index.rst | 6 ++++-- 4 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 CODE_OF_CONDUCT.md create mode 100644 CONTRIBUTING.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..e69de29 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md index 4735261..52bd87c 100644 --- a/README.md +++ b/README.md @@ -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) -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 diff --git a/docs/index.rst b/docs/index.rst index 7cf02c6..f2b1e53 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -14,7 +14,7 @@ Release v\ |version|. (:ref:`Installation `) .. image:: https://img.shields.io/badge/python-2.7-blue.svg :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: @@ -44,11 +44,13 @@ Usage 'page': 1 } >>> tables[0].to_csv('foo.csv') # to_json, to_excel, to_html - >>> tables[0].df + >>> tables[0].df # get a pandas DataFrame! .. csv-table:: :file: _static/csv/foo.csv +There's a [command-line interface]() too! + The User Guide --------------