Skip to content

Commit

Permalink
doc: update docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
chezou committed Aug 27, 2023
1 parent e629613 commit 4f9857d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tabula/io.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""This module is a wrapper of tabula, which enables table extraction from a PDF.
This module extracts tables from a PDF into a pandas DataFrame. Currently, the
implementation of this module uses subprocess.
This module extracts tables from a PDF into a pandas DataFrame via jpype.
Instead of importing this module, you can import public interfaces such as
:func:`read_pdf()`, :func:`read_pdf_with_template()`, :func:`convert_into()`,
Expand All @@ -14,7 +13,7 @@
Example:
>>> import tabula
>>> df = tabula.read_pdf("/path/to/sample.pdf", pages="all")
>>> dfs = tabula.read_pdf("/path/to/sample.pdf", pages="all")
"""

import errno
Expand Down

0 comments on commit 4f9857d

Please sign in to comment.