This repository was archived by the owner on Apr 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 21 files changed +101
-0
lines changed Expand file tree Collapse file tree 21 files changed +101
-0
lines changed Original file line number Diff line number Diff line change 1+ from camelot import __version__ # noqa: F401
2+ from camelot import format_string # noqa F401
3+ from camelot import formatter # noqa F401
4+ from camelot import handler # noqa F401
5+ from camelot import logger # noqa F401
6+ from camelot import plot # noqa F401
Original file line number Diff line number Diff line change 1+ __all__ = ("main" ,)
2+
3+
4+ def main ():
5+ from camelot .cli import cli
6+
7+ cli ()
8+
9+
10+ if __name__ == "__main__" :
11+ main ()
Original file line number Diff line number Diff line change 1+ from camelot .__version__ import PRERELEASE # noqa: F401
2+ from camelot .__version__ import REVISION # noqa F401
3+ from camelot .__version__ import VERSION # noqa F401
4+ from camelot .__version__ import __author__ # noqa F401
5+ from camelot .__version__ import __author_email__ # noqa F401
6+ from camelot .__version__ import __description__ # noqa F401
7+ from camelot .__version__ import __license__ # noqa F401
8+ from camelot .__version__ import __title__ # noqa F401
9+ from camelot .__version__ import __url__ # noqa F401
10+ from camelot .__version__ import __version__ # noqa F401
11+ from camelot .__version__ import generate_version # noqa F401
Original file line number Diff line number Diff line change 1+ from .image_conversion import ImageConversionBackend # noqa: F401
Original file line number Diff line number Diff line change 1+ from camelot .backends .ghostscript import Ghostscript # noqa: F401
Original file line number Diff line number Diff line change 1+ from camelot .backends .image_conversion import BACKENDS # noqa: F401
2+ from camelot .backends .image_conversion import ImageConversionBackend # noqa: F401
Original file line number Diff line number Diff line change 1+ from camelot .backends .poppler_backend import PopplerBackend # noqa: F401
Original file line number Diff line number Diff line change 1+ from camelot .cli import Config # noqa: F401
2+ from camelot .cli import cli # noqa F401
3+ from camelot .cli import lattice # noqa F401
4+ from camelot .cli import logger # noqa F401
5+ from camelot .cli import pass_config # noqa F401
6+ from camelot .cli import stream # noqa F401
Original file line number Diff line number Diff line change 1+ from camelot .core import TABLE_AREA_PADDING # noqa: F401
2+ from camelot .core import TEXTEDGE_REQUIRED_ELEMENTS # noqa F401
3+ from camelot .core import Cell # noqa F401
4+ from camelot .core import Table # noqa F401
5+ from camelot .core import TableList # noqa F401
6+ from camelot .core import TextEdge # noqa F401
7+ from camelot .core import TextEdges # noqa F401
Original file line number Diff line number Diff line change 1+ from camelot .handlers import PDFHandler # noqa: F401
You can’t perform that action at this time.
0 commit comments