<!-- mobian-agent-page publisher="dailydev" canonical="https://daily.dev/posts/bridging-elixir-and-python-with-oban-ksknqtocl" -->

---
title: Bridging Elixir and Python with Oban | daily.dev
description: Oban, the job processing library for Elixir, now has a Python counterpart that enables seamless cross-language job exchange via a shared PostgreSQL database....
canonical: https://daily.dev/posts/bridging-elixir-and-python-with-oban-ksknqtocl
twitter:card: summary_large_image
twitter:site: @dailydotdev
og:type: website
og:site_name: daily.dev
og:title: Bridging Elixir and Python with Oban | daily.dev
og:description: Oban, the job processing library for Elixir, now has a Python counterpart that enables seamless cross-language job exchange via a shared PostgreSQL database....
og:url: https://daily.dev/posts/bridging-elixir-and-python-with-oban-ksknqtocl
og:image: https://api.daily.dev/og/posts/KSKnQTOcl.png
og:image:alt: Bridging Elixir and Python with Oban
og:image:width: 1200
og:image:height: 630
og:locale: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Bridging Elixir and Python with Oban

**[ElixirStatus](https://daily.dev/sources/elixirstatus)** · 6 min read · 0 upvotes · 0 comments

## Summary

Oban, the job processing library for Elixir, now has a Python counterpart that enables seamless cross-language job exchange via a shared PostgreSQL database. Both libraries read and write to the same `oban_jobs` table, allowing Elixir apps to enqueue jobs for Python workers and vice versa. A demo app called 'Badge Forge' illustrates the pattern: Elixir enqueues badge generation jobs, a Python worker uses WeasyPrint to render PDFs, then enqueues a confirmation job back to Elixir. A standalone Oban Web Docker image provides dashboard monitoring for all connected instances. The approach avoids HTTP calls or external message queues, using the database itself as the task broker.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://oban.pro/articles/bridging-with-oban>

## Similar posts on daily.dev

- [Oban.py - deep dive](https://daily.dev/posts/oban-py---deep-dive-to5vviuxh) · Hacker News · 0 upvotes · 0 comments
- [Code BEAM Europe - Learning Resources / Talks - Erlang Forums](https://daily.dev/posts/code-beam-europe---learning-resources-talks---erlang-forums-7sgqizpws) · Erlang Forums · 0 upvotes · 0 comments
- [Unlocking Agentic Workflows with Oban](https://daily.dev/posts/unlocking-agentic-workflows-with-oban-1jyghzxxs) · Elixir Forum · 0 upvotes · 0 comments

---

Tags: [#python](https://daily.dev/tags/python), [#postgresql](https://daily.dev/tags/postgresql), [#elixir](https://daily.dev/tags/elixir)

[View this post on daily.dev](https://daily.dev/posts/bridging-elixir-and-python-with-oban-ksknqtocl)

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://daily.dev/#organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180},"sameAs":["https://twitter.com/dailydotdev","https://github.com/dailydotdev","https://www.linkedin.com/company/daily-dev-ltd"]},{"@type":"WebSite","@id":"https://daily.dev/#website","url":"https://daily.dev","name":"daily.dev","publisher":{"@id":"https://daily.dev/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://daily.dev/search?q={search_term_string}"},"query-input":"required name=search_term_string"}}]}
{"@context":"https://schema.org","@type":"TechArticle","headline":"Bridging Elixir and Python with Oban","url":"https://daily.dev/posts/bridging-elixir-and-python-with-oban-ksknqtocl","mainEntityOfPage":{"@type":"WebPage","@id":"https://daily.dev/posts/bridging-elixir-and-python-with-oban-ksknqtocl"},"datePublished":"2026-02-19T11:29:10.987Z","dateModified":"2026-02-19T11:38:33.832Z","description":"Oban, the job processing library for Elixir, now has a Python counterpart that enables seamless cross-language job exchange via a shared PostgreSQL database....","image":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/5410a3b2fcc2a5869daa0b3b26059d94?_a=AQAEuop","thumbnailUrl":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/5410a3b2fcc2a5869daa0b3b26059d94?_a=AQAEuop","isAccessibleForFree":true,"articleSection":"ElixirStatus","inLanguage":"en","publisher":{"@type":"Organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180}},"author":{"@type":"Organization","name":"ElixirStatus","logo":"https://media.daily.dev/image/upload/t_logo,f_auto/v1/logos/22e4640538124187827caf8cc8e39190","url":"https://daily.dev/sources/elixirstatus"},"commentCount":0,"discussionUrl":"https://daily.dev/posts/bridging-elixir-and-python-with-oban-ksknqtocl","interactionStatistic":[{"@type":"InteractionCounter","interactionType":{"@type":"LikeAction"},"userInteractionCount":0},{"@type":"InteractionCounter","interactionType":{"@type":"CommentAction"},"userInteractionCount":0}],"keywords":"python,postgresql,elixir","timeRequired":"PT6M"}
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://daily.dev"},{"@type":"ListItem","position":2,"name":"ElixirStatus","item":"https://daily.dev/sources/elixirstatus"},{"@type":"ListItem","position":3,"name":"Bridging Elixir and Python with Oban"}]}
```

