We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be helpful to have a Docling CLI as a no-code conversion shortcut, also making Docling accessible to non-Python users.
# default could be Markdown export docling /path/to/my.pdf # specifying export type docling --to-json /path/to/my.pdf # enabling ocr docling --ocr /path/to/my.pdf # specifying output location docling --out output.md /path/to/my.pdf # using a local folder docling /path/to/inputdir # using a URL docling https://arxiv.org/pdf/2408.09869
A standard library for CLI implementation is Typer.
The text was updated successfully, but these errors were encountered:
Also, (if possible)
docling --to-json --tables-only /path/to/foo.pdf
:)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
It would be helpful to have a Docling CLI as a no-code conversion shortcut, also making Docling accessible to non-Python users.
Possible usage
Implementation notes
A standard library for CLI implementation is Typer.
The text was updated successfully, but these errors were encountered: