{"id":31600233,"url":"https://github.com/firstflush/weaver","last_synced_at":"2026-05-07T15:41:13.019Z","repository":{"id":316294568,"uuid":"1055912719","full_name":"FirstFlush/Weaver","owner":"FirstFlush","description":"Async web scraping tool for HTTP and browser-based scraping","archived":false,"fork":false,"pushed_at":"2025-09-23T18:30:28.000Z","size":59,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-23T20:27:44.886Z","etag":null,"topics":["curl","curl-cffi","etl-pipeline","playwright","playwright-python","proxy","python3","scraper","tls-fingerprinting","web","webdriver","webscraper","webscraping","webscraping-data"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FirstFlush.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-13T03:08:14.000Z","updated_at":"2025-09-23T18:30:31.000Z","dependencies_parsed_at":"2025-09-23T20:27:49.316Z","dependency_job_id":"7b5c4705-6315-4f8a-aafe-56313c8608e5","html_url":"https://github.com/FirstFlush/Weaver","commit_stats":null,"previous_names":["firstflush/weaver"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/FirstFlush/Weaver","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FirstFlush%2FWeaver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FirstFlush%2FWeaver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FirstFlush%2FWeaver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FirstFlush%2FWeaver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FirstFlush","download_url":"https://codeload.github.com/FirstFlush/Weaver/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FirstFlush%2FWeaver/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278572005,"owners_count":26008686,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["curl","curl-cffi","etl-pipeline","playwright","playwright-python","proxy","python3","scraper","tls-fingerprinting","web","webdriver","webscraper","webscraping","webscraping-data"],"created_at":"2025-10-06T06:54:02.827Z","updated_at":"2025-10-06T06:54:05.528Z","avatar_url":"https://github.com/FirstFlush.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Weaver\n\nA modern, async-first web scraping framework for Python that combines the speed of HTTP requests with the power of browser automation.\n\n## Why Weaver?\n\n- **Unified Interface**: One framework, two scraping modes - use HTTP requests for speed or browser automation for JavaScript-heavy sites\n- **Fully Async**: Native asyncio support across HTTP requests and browser automation for maximum concurrency\n- **Anti-Detection**: Stealth capabilities to help you blend in\n- **Flexible**: Mix and match HTTP and browser scraping within the same spider\n- **Proxy Integration**: Built-in support for static and rotating proxy configurations\n\n## Quick Start\n\n```python\nfrom weaver import BaseSpider, BrowserConfig\n\nclass BlogSpider(BaseSpider):\n    def run(self):\n        # Your scraping logic here\n        pass\n\n# Browser-based scraping\nbrowser_config = BrowserConfig()\nwith BlogSpider(browser_config=browser_config) as spider:\n    spider.run()\n```\n\n## Features\n\n- **HTTP Client**: Fast async requests using aiohttp\n- **Browser Client**: Full browser automation with Playwright  \n- **Proxy Support**: Rotate through proxies seamlessly\n- **Stealth Mode**: Anti-detection capabilities\n- **Context Management**: Proper cleanup of resources automatically\n\n## Installation\n\n```bash\n# Install the package\npip install weaver  # Coming soon\n\n# Install browser binaries (required for browser automation)\nplaywright install\n\n# Or install only Chromium to save space (~100MB vs ~300MB)\nplaywright install chromium\n```\n\n## Basic Usage\n\n### HTTP-Only Scraping\n```python\nfrom weaver import BaseSpider, HttpConfig\n\nclass FastSpider(BaseSpider):\n    def run(self):\n        # Use self.http_client for requests\n        pass\n\nhttp_config = HttpConfig()\nwith FastSpider(http_config=http_config) as spider:\n    spider.run()\n```\n\n### Browser Automation\n```python\nfrom weaver import BaseSpider, BrowserConfig\n\nclass BrowserSpider(BaseSpider):\n    def run(self):\n        # Use self.browser_client for Playwright\n        pass\n\nbrowser_config = BrowserConfig()\nwith BrowserSpider(browser_config=browser_config) as spider:\n    spider.run()\n```\n\n### Hybrid Scraping\n```python\nfrom weaver import BaseSpider, HttpConfig, BrowserConfig\n\nclass HybridSpider(BaseSpider):\n    def run(self):\n        # Use both self.http_client and self.browser_client\n        pass\n\nhttp_config = HttpConfig()\nbrowser_config = BrowserConfig()\nwith HybridSpider(http_config=http_config, browser_config=browser_config) as spider:\n    spider.run()\n```\n\n## Development Status\n\n⚠️ **Early Development**: Weaver is in active development. APIs may change frequently. Not recommended for production use yet.\n\n## Requirements\n\n- Python 3.10+\n- aiohttp\n- playwright\n\n## Contributing\n\nThis project is in early stages. Contributions, ideas, and feedback are welcome!\n\n## License\n\nMIT License","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffirstflush%2Fweaver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffirstflush%2Fweaver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffirstflush%2Fweaver/lists"}