pymorphy2
PyPDF2
Our great sponsors
pymorphy2 | PyPDF2 | |
---|---|---|
0 | 28 | |
1,042 | 5,326 | |
0.4% | 4.2% | |
0.0 | 9.5 | |
2 months ago | 6 days ago | |
Python | Python | |
MIT License | BSD 3-Clause |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
pymorphy2
We haven't tracked posts mentioning pymorphy2 yet.
Tracking mentions began in Dec 2020.
PyPDF2
-
How to convert SVGs containing text to a PDF?
I still haven't needed to do that part in Rust yet, unfortunately. My mother is still using the pypdf-based concatenator I wrote for her years ago.
-
Recommendations for parsing text from .pdf files
I did an extremely quick search and am linking this without knowing anything about it.
-
Any good tutorials for working with pdfs in Rust?
As other posters have said, if you're just generating PDFs, that's doable with minor library support. If you want to open existing PDFs and do anything non-trivial with them, you'll want a mature, powerful PDF parsing library. PDFKit, which is part of macOS is pretty amazing. If you need portability, something like Python's PyPDF2 is probably the best bet. Knowing the Rust community, though, we'll probably get a library at least as good in Rust in a surprisingly short amount of time.
-
The Pdfalyzer is a tool for visualizing the inner tree structure of a PDF in large and colorful diagrams as well as scanning its internals for suspicious content
Feel free. I poked around the PyPDF2 code and it seems like reading signatures is something it supports via xfa_form property (GitHub issue where this was discussed; seems to have been closed v. recently) . would probably be a very simple PR provided you knew where to look for that property.
This tool was built to fill a gap in the PDF assessment landscape. Didier Stevens's pdfid.py and pdf-parser.py are still the best game in town when it comes to PDF analysis tools but they lack in the visualization department and also don't give you much to work with as far as giving you a data model you can write your own code around. Peepdf seemed promising but turned out to be in a buggy, out of date, and more or less unfixable state. And neither of them offered much in the way of tooling for embedded binary analysis. Thus I felt the world might be slightly improved if I strung together a couple of more stable/well known/actively maintained open source projects (AnyTree, PyPDF2, and Rich) into this tool.
-
This Week in Python
PyPDF2 – A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files
-
Need help with indexing pdf tables in python
Maybe PyPDF2 https://pythonhosted.org/PyPDF2/
-
Could you give examples of types of NLP projects you worked on at work in real business scenarios?
Many of our PDFs were buggy, and many python libraries to work with PDFs are buggy. The library PyPDF2 works well on many PDFs, but hangs in this loop on others. Attempts to use most python PDF libraries resulted in endless log files of:
-
pdf2doi : A python library to retrieve the DOI (or other identifiers) from a pdf file
Look into the metadata of the .pdf file (extracted via PyPDF2) and see if any string matches the pattern of a DOI or an arXiv ID. Priority is given to the metadata which contains the word 'doi' in its label.
-
Where should I start - I have a specific project I want to work on
I also think Python with the requests library is a pretty good way to go (possibly along with this PyPDF library, but let me give you a bit more context for what you'll need to do to solve this problem.
What are some alternatives?
PDFMiner - Python PDF Parser (Not actively maintained). Check out pdfminer.six.
ReportLab
pdfplumber - Plumb a PDF for detailed information about each char, rectangle, line, et cetera — and easily extract text and tables.
WeasyPrint - The awesome document factory
Camelot - A Python library to extract tabular data from PDFs
borb - borb is a library for reading, creating and manipulating PDF files in python.
textract - extract text from any document. no muss. no fuss.
pdfminer.six - Community maintained fork of pdfminer - we fathom PDF
pdftabextract - A set of tools for extracting tables from PDF files helping to do data mining on (OCR-processed) scanned documents.
PyPDF4 - A utility to read and write PDFs with Python
csvkit - A suite of utilities for converting to and working with CSV, the king of tabular file formats.