https://github.com/remoteoss/pdf_to_text
Extracts text from PDF
https://github.com/remoteoss/pdf_to_text
Last synced: 8 months ago
JSON representation
Extracts text from PDF
- Host: GitHub
- URL: https://github.com/remoteoss/pdf_to_text
- Owner: remoteoss
- License: gpl-2.0
- Archived: true
- Created: 2022-04-28T12:22:18.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-12T04:15:43.000Z (over 3 years ago)
- Last Synced: 2025-10-12T08:13:46.989Z (9 months ago)
- Language: Elixir
- Size: 154 KB
- Stars: 7
- Watchers: 0
- Forks: 4
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# PdfToText
Extracts text from a PDF file. Still just an experiment 🎉
## License
Using GPLv2 due to the usage of said license on Poppler.
## Installation
## Install Rust
Use Rustup to install Rust:
`curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh`
### Install Poppler
- For OSX: `brew install poppler`
- For Debian: `apt-get install libpoppler-glib-dev`
### Add dependency to Elixir project
```elixir
def deps do
[
{:pdf_to_text, git: "https://github.com/remoteoss/pdf_to_text.git"}
]
end
```