1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
.. include:: header.rst
Welcome to pdf2docx
====================================
:title:`pdf2docx` is a **Python** library
to extract data from **PDF** with PyMuPDF_, parse layout with rule, and
generate **docx** files with ``python-docx``.
:title:`pdf2docx` is hosted on `GitHub <https://github.com/ArtifexSoftware/pdf2docx>`_ and registered on `PyPI <https://pypi.org/project/pdf2docx/>`_.
----
.. image:: images/intro.png
.. toctree::
:maxdepth: 2
:caption: USER GUIDE
installation
quickstart
techdoc
license
.. toctree::
:maxdepth: 2
:caption: API DOCUMENTATION
api/modules
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
.. include:: footer.rst
.. raw:: html
<script>
document.addEventListener('DOMContentLoaded', function() {
const canonical = document.createElement('link');
canonical.rel = 'canonical';
canonical.href = 'https://pdf2docx.readthedocs.io';
document.head.appendChild(canonical);
});
</script>
.. _PyMuPDF: https://pymupdf.io
|