Suppress or remove python tabula-py warnings
tabula-py author is here. Setting silent=True
suppresses the tabula-java logs.
see also:
https://github.com/chezou/tabula-py/blob/e11d6f0ac518810b6d92b60a815e34f32f6bf085/tabula/io.py#L65
https://tabula-py.readthedocs.io/en/latest/tabula.html#tabula.io.build_options
Tabula provides a built in feature to suppress java warning.
Try silent=True
parameter in request:
tabula.read_pdf("/path/to/sample.pdf", pages="all", silent=True)
Documentation Source