🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

UniParse

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

UniParse

A library to parse PDF, DOCX, and TXT files

1.0.1
PyPI
Maintainers
1

UniParse

A Python library to parse PDF, DOCX, and TXT files, now with resume summarization capabilities.

Installation

pip install UniParse

How to Use

from UniParse import FileParser

parser = FileParser('path/to/your/file.pdf')
content = parser.parse()
print(content)

Features

  • Parse text from PDF files
  • Extract content from DOCX documents
  • Read text from TXT files

Parsing Resumes and Extracting Information

from UniParse import ResumeParser

parser = ResumeParser('path/to/resume.pdf')
data = parser.get_extracted_data()

print("Resume Data:")
print(data)

Keywords

parse parser pdf docx txt uniparse uniparser

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