loongson/pypi/: pdfminer-six-20221105 metadata and description

Homepage Simple index

PDF parser and analyzer

author Yusuke Shinyama + Philippe Guglielmetti
author_email pdfminer@goulu.net
classifiers
  • Programming Language :: Python
  • Programming Language :: Python :: 3.6
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3 :: Only
  • Development Status :: 5 - Production/Stable
  • Environment :: Console
  • Intended Audience :: Developers
  • Intended Audience :: Science/Research
  • License :: OSI Approved :: MIT License
  • Topic :: Text Processing
description_content_type text/markdown
keywords pdf parser,pdf converter,layout analysis,text mining
license MIT/X
provides_extras image
requires_dist
  • charset-normalizer (>=2.0.0)
  • cryptography (>=36.0.0)
  • typing-extensions ; python_version < "3.8"
  • pytest ; extra == 'dev'
  • nox ; extra == 'dev'
  • black ; extra == 'dev'
  • mypy (==0.931) ; extra == 'dev'
  • sphinx ; extra == 'docs'
  • sphinx-argparse ; extra == 'docs'
  • Pillow ; extra == 'image'
requires_python >=3.6

Because this project isn't in the mirror_whitelist, no releases from root/pypi are included.

File Tox results History
pdfminer.six-20221105-py3-none-any.whl
Size
5 MB
Type
Python Wheel
Python
3

pdfminer.six

Continuous integration PyPI version gitter

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.

Features

How to use

from pdfminer.high_level import extract_text

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

Contributing

Be sure to read the contribution guidelines.

Acknowledgement

This repository includes code from pyHanko ; the original license has been included here.