Skip to content

Commit

Permalink
doc: fix notebook link
Browse files Browse the repository at this point in the history
  • Loading branch information
chezou authored Jun 25, 2020
1 parent 70fa2cf commit 72c60f6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,22 +55,22 @@ tabula-py enables you to extract table from PDF into DataFrame and JSON. It also
import tabula
# Read pdf into DataFrame
df = tabula.read_pdf("test.pdf", pages='all')
# Read pdf into a list of DataFrame
dfs = tabula.read_pdf("test.pdf", pages='all')
# Read remote pdf into DataFrame
df2 = tabula.read_pdf("https://github.com/tabulapdf/tabula-java/raw/master/src/test/resources/technology/tabula/arabic.pdf")
# Read remote pdf into a list of DataFrame
dfs2 = tabula.read_pdf("https://github.com/tabulapdf/tabula-java/raw/master/src/test/resources/technology/tabula/arabic.pdf")
# convert PDF into CSV
tabula.convert_into("test.pdf", "output.csv", output_format="csv", pages='all')
# convert all PDFs in a directory
tabula.convert_into_by_batch("input_directory", output_format='csv', pages='all)
See `example notebook <./examples/tabula_example.ipynb>`_ for more detail. I also recommend to read `the tutorial article <https://aegis4048.github.io/parse-pdf-files-while-retaining-structure-with-tabula-py>`_ written by `@aegis4048 <https://github.com/aegis4048>`_.
See `example notebook <https://nbviewer.jupyter.org/github/chezou/tabula-py/blob/master/examples/tabula_example.ipynb>`_ for more detail. I also recommend to read `the tutorial article <https://aegis4048.github.io/parse-pdf-files-while-retaining-structure-with-tabula-py>`_ written by `@aegis4048 <https://github.com/aegis4048>`_.
.. Note::
If you face some issue, we'd recommend to try `tabula.app <https://tabula.technology>`_ to see the limitation of tabula-java.
Also, see :ref:`faq` as well.
Also, see :ref:`faq` as well.

0 comments on commit 72c60f6

Please sign in to comment.