156 lines
7.4 KiB
Plaintext
156 lines
7.4 KiB
Plaintext
Metadata-Version: 2.1
|
||
Name: tabula-py
|
||
Version: 2.10.0
|
||
Summary: Simple wrapper for tabula-java, read tables from PDF into DataFrame
|
||
Author-email: Aki Ariga <chezou@gmail.com>
|
||
Maintainer-email: Aki Ariga <chezou@gmail.com>
|
||
License: The MIT License (MIT)
|
||
Copyright (c) 2016 Michiaki Ariga
|
||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
||
Project-URL: Homepage, https://github.com/chezou/tabula-py
|
||
Project-URL: Bug Reports, https://github.com/chezou/tabula-py/issues
|
||
Project-URL: Funding, https://github.com/sponsors/chezou
|
||
Keywords: data frame,pdf,table
|
||
Classifier: Development Status :: 5 - Production/Stable
|
||
Classifier: Topic :: Text Processing :: General
|
||
Classifier: License :: OSI Approved :: MIT License
|
||
Classifier: Programming Language :: Python :: 3.13
|
||
Classifier: Programming Language :: Python :: 3.12
|
||
Classifier: Programming Language :: Python :: 3.11
|
||
Classifier: Programming Language :: Python :: 3.10
|
||
Classifier: Programming Language :: Python :: 3.9
|
||
Requires-Python: >=3.9
|
||
Description-Content-Type: text/markdown
|
||
License-File: LICENSE
|
||
Requires-Dist: pandas >=0.25.3
|
||
Requires-Dist: numpy >1.24.4
|
||
Requires-Dist: distro
|
||
Provides-Extra: dev
|
||
Requires-Dist: pytest ; extra == 'dev'
|
||
Requires-Dist: ruff ; extra == 'dev'
|
||
Requires-Dist: mypy ; extra == 'dev'
|
||
Requires-Dist: Flake8-pyproject ; extra == 'dev'
|
||
Provides-Extra: doc
|
||
Requires-Dist: sphinx ==7.1.2 ; extra == 'doc'
|
||
Requires-Dist: sphinx-rtd-theme ==1.3.0 ; extra == 'doc'
|
||
Requires-Dist: Jinja2 ==3.1.2 ; extra == 'doc'
|
||
Provides-Extra: jpype
|
||
Requires-Dist: jpype1 ; extra == 'jpype'
|
||
Provides-Extra: test
|
||
Requires-Dist: pytest ; extra == 'test'
|
||
|
||
# tabula-py
|
||
|
||
[](https://github.com/chezou/tabula-py/actions/workflows/pythontest.yml)
|
||
[](https://badge.fury.io/py/tabula-py)
|
||
[](https://tabula-py.readthedocs.io/en/latest/?badge=latest)
|
||

|
||
[](https://github.com/sponsors/chezou)
|
||
|
||
`tabula-py` is a simple Python wrapper of [tabula-java](https://github.com/tabulapdf/tabula-java), which can read tables in a PDF.
|
||
You can read tables from a PDF and convert them into a pandas DataFrame. tabula-py also enables you to convert a PDF file into a CSV, a TSV or a JSON file.
|
||
|
||
You can see [the example notebook](https://nbviewer.jupyter.org/github/chezou/tabula-py/blob/master/examples/tabula_example.ipynb) and try it on Google Colab, or we highly recommend reading [our documentation](https://tabula-py.readthedocs.io/en/latest/), especially the FAQ section.
|
||
|
||

|
||
|
||
## Requirements
|
||
|
||
- Java 8+
|
||
- Python 3.8+
|
||
|
||
### OS
|
||
|
||
I confirmed working on macOS and Ubuntu. But some people confirm it works on Windows 10. See also [the documentation for the detailed installation for Windows 10](https://tabula-py.readthedocs.io/en/latest/getting_started.html#get-tabula-py-working-windows-10).
|
||
|
||
## Usage
|
||
|
||
- [Documentation](https://tabula-py.readthedocs.io/en/latest/)
|
||
- [FAQ](https://tabula-py.readthedocs.io/en/latest/faq.html) would be helpful if you have an issue
|
||
- [Example notebook on Google Colaboratory](https://colab.research.google.com/github/chezou/tabula-py/blob/master/examples/tabula_example.ipynb)
|
||
|
||
### Install
|
||
|
||
Ensure you have a Java runtime and set the PATH for it.
|
||
|
||
```bash
|
||
pip install tabula-py
|
||
```
|
||
|
||
If you want to leverage faster execution with jpype, install with `jpype` extra.
|
||
|
||
```sh
|
||
pip install tabula-py[jpype]
|
||
```
|
||
|
||
### Example
|
||
|
||
tabula-py enables you to extract tables from a PDF into a DataFrame, or a JSON. It can also extract tables from a PDF and save the file as a CSV, a TSV, or a JSON.
|
||
|
||
```py
|
||
import tabula
|
||
|
||
# Read pdf into list of DataFrame
|
||
dfs = tabula.read_pdf("test.pdf", pages='all')
|
||
|
||
# Read remote pdf into 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 file
|
||
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 [an example notebook](https://nbviewer.jupyter.org/github/chezou/tabula-py/blob/master/examples/tabula_example.ipynb) for more details. I also recommend reading [the tutorial article](https://aegis4048.github.io/parse-pdf-files-while-retaining-structure-with-tabula-py) written by [@aegis4048](https://github.com/aegis4048), and [another tutorial](https://www.dunderdata.com/blog/read-trapped-tables-within-pdfs-as-pandas-dataframes) written by [@tdpetrou](https://github.com/tdpetrou).
|
||
|
||
### Contributing
|
||
|
||
Interested in helping out? I'd love to have your help!
|
||
|
||
You can help by:
|
||
|
||
- [Reporting a bug](https://github.com/chezou/tabula-py/issues).
|
||
- Adding or editing documentation.
|
||
- Contributing code via a Pull Request. See also [for the contribution](docs/contributing.rst)
|
||
- Write a blog post or spread the word about `tabula-py` to people who might be able to benefit from using it.
|
||
|
||
#### Contributors
|
||
|
||
- [@lahoffm](https://github.com/lahoffm)
|
||
- [@jakekara](https://github.com/jakekara)
|
||
- [@lcd1232](https://github.com/lcd1232)
|
||
- [@kirkholloway](https://github.com/kirkholloway)
|
||
- [@CurtLH](https://github.com/CurtLH)
|
||
- [@nikhilgk](https://github.com/nikhilgk)
|
||
- [@krassowski](https://github.com/krassowski)
|
||
- [@alexandreio](https://github.com/alexandreio)
|
||
- [@rmnevesLH](https://github.com/rmnevesLH)
|
||
- [@red-bin](https://github.com/red-bin)
|
||
- [@Gallaecio](https://github.com/Gallaecio)
|
||
- [@red-bin](https://github.com/red-bin)
|
||
- [@alexandreio](https://github.com/alexandreio)
|
||
- [@bpben](https://github.com/bpben)
|
||
- [@Bueddl](https://github.com/Bueddl)
|
||
- [@cjotade](https://github.com/cjotade)
|
||
- [@codeboy5](https://github.com/codeboy5)
|
||
- [@manohar-voggu](https://github.com/manohar-voggu)
|
||
- [@deveshSingh06](https://github.com/deveshSingh06)
|
||
- [@grfeller](https://github.com/grfeller)
|
||
- [@djbrown](https://github.com/djbrown)
|
||
- [@swar](https://github.com/swar)
|
||
- [@mvoggu](https://github.com/mvoggu)
|
||
- [@tdpetrou](https://github.com/tdpetrou)
|
||
|
||
#### Another support
|
||
|
||
You can also support our continued work on `tabula-py` with a donation on GitHub Sponsors or [Patreon](https://www.patreon.com/chezou).
|