Unstructured-IO / Unstructured-IO/unstructured
Connector suggestion: anybrowse for live web content ingestion with Cloudflare bypass
Nobody has claimed this yet.
- Dominant language
- HTML
- Stars
- 15.5k
- Forks
- 1.3k
- Avg merge
- 4d 2h
- Merged PRs (30d)
- 13
Description
Context
Unstructured handles document parsing beautifully but getting live web content into the pipeline is still a pain -- especially for Cloudflare-protected sites.
Suggestion
anybrowse could work as a web source connector -- fetches URLs with real browser rendering and returns clean markdown ready for Unstructured to further process or chunk.
import requests
def fetch_url(url: str) -> str:
r = requests.post("https://anybrowse.dev/scrape", json={"url": url})
return r.json().get("markdown", "")
# Then pass to unstructured partition
from unstructured.partition.text import partition_text
elements = partition_text(text=fetch_url("https://example.com"))
Works on Cloudflare-protected sites, JS-rendered pages, and standard HTML.
- Free: 10/day, no key
- Paid: $5 for 3,000 scrapes
- Docs: https://anybrowse.dev/docs
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
No repository file, test, or entry point is identified in the issue. Clarify the connector's intended integration point and acceptance criteria before implementation; the issue currently does not define what done looks like.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- data-engineering
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 25/100