Jskalc

Jskalc

Hi everyone :waving_hand: I’ve just released ExtractousEx, an Elixir library for extracting text and metadata from various document formats using the Rust-based Extractous library. There are some other libraries doing this, just they were either not supporting all Extractous options, or not providing precompiled Rust binaries. This project aims to provide 100% coverage of options available in Extractous library.

Fun fact: Extractous itself is based on Apache Tika compiled using GraalVM to the native code. So, in reality we’re able to run Java code through Rust in Elixir with a performance of a native function :exploding_head:
Key Features:

  • Extract from PDF, Office docs, HTML, CSV, Markdown, EPUB, and more
  • ~18x faster than unstructured-io with ~11x less memory usage
  • Precompiled binaries for macOS, Linux, and Windows (no Rust compilation needed)
  • Extract from files, bytes, or URLs with identical APIs
  • Optional XML output preserving document structure

Installation:

{:extractous_ex, “~> 0.2.0”}

Usage:

{:ok, result} = ExtractousEx.extract_from_file(“document.pdf”)

IO.puts(result.content)
# "This is my content"

IO.inspect(result.metadata)
# %{
#  "Content-Length" => ["7335065"],
#  "access_permission:extract_for_accessibility" => ["true"],
#  "access_permission:modify_annotations" => ["true"],
#  "pdf:docinfo:modified" => ["2025-04-07T14:20:54Z"],
#  ...
}


# Extract from binary data in memory
{:ok, data} = File.read("document.pdf")
{:ok, result} = ExtractousEx.extract_from_bytes(data)

# With options
{:ok, result} = ExtractousEx.extract_from_url(url, xml: true, pdf: [ocr_strategy: "NO_OCR"])

Available on extractous_ex | Hex with full documentation on ExtractousEx v0.2.1 — Documentation.

PS I would greatly appreciate a :star: on github! :hugs:

https://github.com/Valian/extractous_ex

Where Next? Top

Trending in Announcing Top

woylie
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries. offset-based pagination with...
New
MRdotB
I needed to reuse React components from my Chrome extension in my Phoenix/LiveView backend. I noticed that for Svelte/Vue, there are live...
New
woylie
I released Doggo, a collection of unstyled Phoenix components. https://github.com/woylie/doggo Features Unstyled Phoenix components....
New
GenericJam
Edit: 2026 May 15 - This post is archived. Mob is alive!! Main docs: mob v0.7.11 — Documentation A bit of explanation for the slightly c...
New
JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
anuaralfetahe
Hello Published a new library - ProcessHub! ProcessHub is a library designed to manage process distribution within the Elixir cluster. ...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New
AstonJ
This showed up on my feed.. anyone heard of it? Just hype? Ox Alpha is a reasoning model designed for coding, sustained ag...
New
bartblast
Hey folks, I just published a post about Hologram’s funding and where the project goes next - the short version: Curiosum as Main Spons...
New
CodeSync
:microphone: ElixirConf 2026 - Call for Talks is open! We’re heading to Chicago :united_states: :round_pushpin: In person + virtual :d...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews