Registry / data / breadability

breadability

JSON →
library0.1.20pypypiunverified

A Python port of the Readability HTML parser (originally by Arc90) for extracting readable content from HTML pages. Current version: 0.1.20. The library is in maintenance mode with infrequent releases.

pip install breadability
INSTALL
IMPORT
SIG · BREADABILITY
B
breadability
datapythonv0.1.20
Install
3.8s avg
Import
Disk
31MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v0.1.20 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 32.7MB
glibc
py 3.103.95 runs
installs and imports cleanly · install 3.8s · import 0.000s · 34MB
31MB installed
● package 31MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Article
from breadability.readable import Article
from breadability import Article

Fetch a URL and extract the readable article content.

import requests from breadability.readable import Article url = 'https://example.com/article' response = requests.get(url) article = Article(response.text) print(article.title) print(article.content)
Debug
Known issues
deprecatedThe library is no longer actively maintained; consider using readability-lxml or trafilatura instead.
fix
Switch to readability-lxml (pip install readability-lxml) or trafilatura for better maintained alternatives.
affects: all
gotchaImport paths differ from many tutorials. The main class 'Article' is in the 'breadability.readable' submodule, not directly in 'breadability'.
fix
Use 'from breadability.readable import Article'.
affects: all
gotchaThe library expects HTML string input, not a URL. You must fetch the page yourself (e.g., with requests).
fix
Use requests.get(url).text to get the HTML, then pass to Article().
affects: all
Upgrade
Version history
0.1.20latest on PyPI · released Apr 14, 2014
Audit
Dependencies

No dependency data recorded yet.

Agent activity
12 hits · last 30 days
node
10
OpenAI (training)
1
Resources
breadability — pip install breadability · libregistry