pdfminer.six


Namepdfminer.six JSON
Version 20231228 PyPI version JSON
download
home_pagehttps://github.com/pdfminer/pdfminer.six
SummaryPDF parser and analyzer
upload_time2023-12-28 21:25:32
maintainer
docs_urlNone
authorYusuke Shinyama + Philippe Guglielmetti
requires_python>=3.6
licenseMIT/X
keywords pdf parser pdf converter layout analysis text mining
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            pdfminer.six
============

[![Continuous integration](https://github.com/pdfminer/pdfminer.six/actions/workflows/actions.yml/badge.svg)](https://github.com/pdfminer/pdfminer.six/actions/workflows/actions.yml)
[![PyPI version](https://img.shields.io/pypi/v/pdfminer.six.svg)](https://pypi.python.org/pypi/pdfminer.six/)
[![gitter](https://badges.gitter.im/pdfminer-six/Lobby.svg)](https://gitter.im/pdfminer-six/Lobby?utm_source=badge&utm_medium)

*We fathom PDF*

Pdfminer.six is a community maintained fork of the original PDFMiner. It is a tool for extracting information from PDF
documents. It focuses on getting and analyzing text data. Pdfminer.six extracts the text from a page directly from the
sourcecode of the PDF. It can also be used to get the exact location, font or color of the text.

It is built in a modular way such that each component of pdfminer.six can be replaced easily. You can implement your own
interpreter or rendering device that uses the power of pdfminer.six for other purposes than text analysis.

Check out the full documentation on
[Read the Docs](https://pdfminersix.readthedocs.io).


Features
--------

* Written entirely in Python.
* Parse, analyze, and convert PDF documents.
* Extract content as text, images, html or [hOCR](https://en.wikipedia.org/wiki/HOCR).
* PDF-1.7 specification support. (well, almost).
* CJK languages and vertical writing scripts support.
* Various font types (Type1, TrueType, Type3, and CID) support.
* Support for extracting images (JPG, JBIG2, Bitmaps).
* Support for various compressions (ASCIIHexDecode, ASCII85Decode, LZWDecode, FlateDecode, RunLengthDecode,
  CCITTFaxDecode)
* Support for RC4 and AES encryption.
* Support for AcroForm interactive form extraction.
* Table of contents extraction.
* Tagged contents extraction.
* Automatic layout analysis.

How to use
----------

* Install Python 3.8 or newer.
* Install pdfminer.six.

  `pip install pdfminer.six`

* (Optionally) install extra dependencies for extracting images.

  `pip install 'pdfminer.six[image]'`

* Use the command-line interface to extract text from pdf.

  `pdf2txt.py example.pdf`

* Or use it with Python. 

```python
from pdfminer.high_level import extract_text

text = extract_text("example.pdf")
print(text)
```

Contributing
------------

Be sure to read the [contribution guidelines](https://github.com/pdfminer/pdfminer.six/blob/master/CONTRIBUTING.md). 

Acknowledgement
---------------

This repository includes code from `pyHanko` ; the original license has been included [here](/docs/licenses/LICENSE.pyHanko).



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pdfminer/pdfminer.six",
    "name": "pdfminer.six",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "pdf parser,pdf converter,layout analysis,text mining",
    "author": "Yusuke Shinyama + Philippe Guglielmetti",
    "author_email": "pdfminer@goulu.net",
    "download_url": "https://files.pythonhosted.org/packages/31/b1/a43e3bd872ded4deea4f8efc7aff1703fca8c5455d0c06e20506a06a44ff/pdfminer.six-20231228.tar.gz",
    "platform": null,
    "description": "pdfminer.six\n============\n\n[![Continuous integration](https://github.com/pdfminer/pdfminer.six/actions/workflows/actions.yml/badge.svg)](https://github.com/pdfminer/pdfminer.six/actions/workflows/actions.yml)\n[![PyPI version](https://img.shields.io/pypi/v/pdfminer.six.svg)](https://pypi.python.org/pypi/pdfminer.six/)\n[![gitter](https://badges.gitter.im/pdfminer-six/Lobby.svg)](https://gitter.im/pdfminer-six/Lobby?utm_source=badge&utm_medium)\n\n*We fathom PDF*\n\nPdfminer.six is a community maintained fork of the original PDFMiner. It is a tool for extracting information from PDF\ndocuments. It focuses on getting and analyzing text data. Pdfminer.six extracts the text from a page directly from the\nsourcecode of the PDF. It can also be used to get the exact location, font or color of the text.\n\nIt is built in a modular way such that each component of pdfminer.six can be replaced easily. You can implement your own\ninterpreter or rendering device that uses the power of pdfminer.six for other purposes than text analysis.\n\nCheck out the full documentation on\n[Read the Docs](https://pdfminersix.readthedocs.io).\n\n\nFeatures\n--------\n\n* Written entirely in Python.\n* Parse, analyze, and convert PDF documents.\n* Extract content as text, images, html or [hOCR](https://en.wikipedia.org/wiki/HOCR).\n* PDF-1.7 specification support. (well, almost).\n* CJK languages and vertical writing scripts support.\n* Various font types (Type1, TrueType, Type3, and CID) support.\n* Support for extracting images (JPG, JBIG2, Bitmaps).\n* Support for various compressions (ASCIIHexDecode, ASCII85Decode, LZWDecode, FlateDecode, RunLengthDecode,\n  CCITTFaxDecode)\n* Support for RC4 and AES encryption.\n* Support for AcroForm interactive form extraction.\n* Table of contents extraction.\n* Tagged contents extraction.\n* Automatic layout analysis.\n\nHow to use\n----------\n\n* Install Python 3.8 or newer.\n* Install pdfminer.six.\n\n  `pip install pdfminer.six`\n\n* (Optionally) install extra dependencies for extracting images.\n\n  `pip install 'pdfminer.six[image]'`\n\n* Use the command-line interface to extract text from pdf.\n\n  `pdf2txt.py example.pdf`\n\n* Or use it with Python. \n\n```python\nfrom pdfminer.high_level import extract_text\n\ntext = extract_text(\"example.pdf\")\nprint(text)\n```\n\nContributing\n------------\n\nBe sure to read the [contribution guidelines](https://github.com/pdfminer/pdfminer.six/blob/master/CONTRIBUTING.md). \n\nAcknowledgement\n---------------\n\nThis repository includes code from `pyHanko` ; the original license has been included [here](/docs/licenses/LICENSE.pyHanko).\n\n\n",
    "bugtrack_url": null,
    "license": "MIT/X",
    "summary": "PDF parser and analyzer",
    "version": "20231228",
    "project_urls": {
        "Homepage": "https://github.com/pdfminer/pdfminer.six"
    },
    "split_keywords": [
        "pdf parser",
        "pdf converter",
        "layout analysis",
        "text mining"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb9ce46fe7502b32d7db6af6e36a9105abb93301fa1ec475b5ddcba8b35ae23a",
                "md5": "0c6d36468f6ab3ae0dc632cdffa3b654",
                "sha256": "e8d3c3310e6fbc1fe414090123ab01351634b4ecb021232206c4c9a8ca3e3b8f"
            },
            "downloads": -1,
            "filename": "pdfminer.six-20231228-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0c6d36468f6ab3ae0dc632cdffa3b654",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 5614515,
            "upload_time": "2023-12-28T21:25:30",
            "upload_time_iso_8601": "2023-12-28T21:25:30.329053Z",
            "url": "https://files.pythonhosted.org/packages/eb/9c/e46fe7502b32d7db6af6e36a9105abb93301fa1ec475b5ddcba8b35ae23a/pdfminer.six-20231228-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31b1a43e3bd872ded4deea4f8efc7aff1703fca8c5455d0c06e20506a06a44ff",
                "md5": "adf6243a664f652c2ec39e50e2d64c55",
                "sha256": "6004da3ad1a7a4d45930cb950393df89b068e73be365a6ff64a838d37bcb08c4"
            },
            "downloads": -1,
            "filename": "pdfminer.six-20231228.tar.gz",
            "has_sig": false,
            "md5_digest": "adf6243a664f652c2ec39e50e2d64c55",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 7362505,
            "upload_time": "2023-12-28T21:25:32",
            "upload_time_iso_8601": "2023-12-28T21:25:32.863830Z",
            "url": "https://files.pythonhosted.org/packages/31/b1/a43e3bd872ded4deea4f8efc7aff1703fca8c5455d0c06e20506a06a44ff/pdfminer.six-20231228.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-28 21:25:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pdfminer",
    "github_project": "pdfminer.six",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pdfminer.six"
}
        
Elapsed time: 0.27363s