New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

slate3k

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

slate3k

Extract text from PDF documents easily.

  • 0.5.3
  • PyPI
  • Socket score

Maintainers
1

====================================================== slate: the easiest way to get text from PDFs in Python

THIS PROJECT IS A FORK OF slate

Original project is https://github.com/timClicks/slate . It is not supported Python3. I thank the original writer @timClicks and other contributors.

Slate

Slate is a Python package that simplifies the process of extracting text from PDF files. It depends on the PDFMiner package.

Slate provides one class, PDF. PDF takes a file-like object and will extract all text from the document, presentating each page as a string of text::

>>> with open('example.pdf', 'rb') as f:
...    doc = slate.PDF(f)
...
>>> doc
[..., ..., ...]
>>> doc[1]
'Text from page 2...'

If your pdf is password protected, pass the password as the second argument::

>>> with open('secrets.pdf', 'rb') as f:
...     doc = slate.PDF(f, 'password')
...
>>> doc[0]
"My mother doesn't know this, but..."

More complex operations

If you would like access to the images, font files and other information, then take some time to learn the PDFMiner API.

What is wrong with PDFMiner?

  1. Getting simple things done, like extracting the text is quite complex. The program is not designed to return Python objects, which makes interfacing things irritating.
  2. It's an extremely complete set of tools, with multiple and moderately steep learning curves.
  3. It's not written with hackability in mind.

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc