omk-crawl 2.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. omk_crawl-2.0.0/.github/workflows/ci.yml +49 -0
  2. omk_crawl-2.0.0/.gitignore +30 -0
  3. omk_crawl-2.0.0/CHANGELOG.md +36 -0
  4. omk_crawl-2.0.0/CONTRIBUTING.md +52 -0
  5. omk_crawl-2.0.0/LICENSE.txt +75 -0
  6. omk_crawl-2.0.0/NOTICE.md +109 -0
  7. omk_crawl-2.0.0/PKG-INFO +361 -0
  8. omk_crawl-2.0.0/README.md +306 -0
  9. omk_crawl-2.0.0/SECURITY.md +27 -0
  10. omk_crawl-2.0.0/SKILL.md +206 -0
  11. omk_crawl-2.0.0/assets/demos/01-auto-escalation.gif +0 -0
  12. omk_crawl-2.0.0/assets/demos/02-tool-discovery.gif +0 -0
  13. omk_crawl-2.0.0/assets/demos/03-diagnose.gif +0 -0
  14. omk_crawl-2.0.0/assets/demos/04-json-output.gif +0 -0
  15. omk_crawl-2.0.0/assets/demos/05-python-api.gif +0 -0
  16. omk_crawl-2.0.0/assets/demos/06-browser-test.gif +0 -0
  17. omk_crawl-2.0.0/assets/demos/browser-screenshot.png +0 -0
  18. omk_crawl-2.0.0/assets/omk-crawling-hero.jpeg +0 -0
  19. omk_crawl-2.0.0/examples/01_quickstart_markdown.py +34 -0
  20. omk_crawl-2.0.0/examples/02_structured_css.py +37 -0
  21. omk_crawl-2.0.0/examples/03_deep_crawl.py +34 -0
  22. omk_crawl-2.0.0/examples/04_batch_arun_many.py +35 -0
  23. omk_crawl-2.0.0/examples/05_markitdown_convert.py +27 -0
  24. omk_crawl-2.0.0/examples/06_autoscraper_learn.py +32 -0
  25. omk_crawl-2.0.0/examples/07_curl_impersonate.py +23 -0
  26. omk_crawl-2.0.0/examples/README.md +48 -0
  27. omk_crawl-2.0.0/install.sh +60 -0
  28. omk_crawl-2.0.0/omk_crawl/__init__.py +16 -0
  29. omk_crawl-2.0.0/omk_crawl/cli.py +137 -0
  30. omk_crawl-2.0.0/omk_crawl/detect.py +189 -0
  31. omk_crawl-2.0.0/omk_crawl/pipeline.py +80 -0
  32. omk_crawl-2.0.0/omk_crawl/py.typed +0 -0
  33. omk_crawl-2.0.0/omk_crawl/result.py +73 -0
  34. omk_crawl-2.0.0/omk_crawl/router.py +380 -0
  35. omk_crawl-2.0.0/omk_crawl/tools/__init__.py +46 -0
  36. omk_crawl-2.0.0/omk_crawl/tools/autoscraper_tool.py +71 -0
  37. omk_crawl-2.0.0/omk_crawl/tools/base.py +60 -0
  38. omk_crawl-2.0.0/omk_crawl/tools/browser_use_tool.py +60 -0
  39. omk_crawl-2.0.0/omk_crawl/tools/crawl4ai_tool.py +85 -0
  40. omk_crawl-2.0.0/omk_crawl/tools/curl_cffi_tool.py +50 -0
  41. omk_crawl-2.0.0/omk_crawl/tools/markitdown_tool.py +37 -0
  42. omk_crawl-2.0.0/omk_crawl/tools/scrapling_tool.py +48 -0
  43. omk_crawl-2.0.0/pyproject.toml +73 -0
  44. omk_crawl-2.0.0/references/choosing.md +33 -0
  45. omk_crawl-2.0.0/references/cli.md +67 -0
  46. omk_crawl-2.0.0/references/deep-crawl.md +129 -0
  47. omk_crawl-2.0.0/references/docker-mcp.md +81 -0
  48. omk_crawl-2.0.0/references/extraction.md +110 -0
  49. omk_crawl-2.0.0/references/routing.md +54 -0
  50. omk_crawl-2.0.0/references/tools/autoscraper.md +55 -0
  51. omk_crawl-2.0.0/references/tools/browser-use.md +49 -0
  52. omk_crawl-2.0.0/references/tools/crawlee.md +65 -0
  53. omk_crawl-2.0.0/references/tools/curl-impersonate.md +56 -0
  54. omk_crawl-2.0.0/references/tools/markitdown.md +50 -0
  55. omk_crawl-2.0.0/references/tools/scrapling.md +79 -0
  56. omk_crawl-2.0.0/references/tools/scrapy.md +48 -0
  57. omk_crawl-2.0.0/references/tools/scrcpy.md +46 -0
  58. omk_crawl-2.0.0/scripts/cast2gif.py +181 -0
  59. omk_crawl-2.0.0/scripts/cast2svg.py +115 -0
  60. omk_crawl-2.0.0/scripts/check-versions.sh +50 -0
  61. omk_crawl-2.0.0/scripts/demo_browser.py +59 -0
  62. omk_crawl-2.0.0/scripts/record-demos.sh +51 -0
  63. omk_crawl-2.0.0/tests/test_cli.py +29 -0
  64. omk_crawl-2.0.0/tests/test_core.py +161 -0
  65. omk_crawl-2.0.0/tests/test_router.py +490 -0
@@ -0,0 +1,49 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ branches: [main]
8
+
9
+ jobs:
10
+ lint:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: actions/setup-python@v5
15
+ with:
16
+ python-version: "3.12"
17
+ - run: pip install ruff
18
+ - run: ruff check omk_crawl/ tests/
19
+
20
+ test:
21
+ runs-on: ubuntu-latest
22
+ strategy:
23
+ matrix:
24
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
25
+ steps:
26
+ - uses: actions/checkout@v4
27
+ - uses: actions/setup-python@v5
28
+ with:
29
+ python-version: ${{ matrix.python-version }}
30
+ - run: pip install -e ".[dev]"
31
+ - run: pytest tests/ -v --tb=short
32
+
33
+ build:
34
+ runs-on: ubuntu-latest
35
+ steps:
36
+ - uses: actions/checkout@v4
37
+ - uses: actions/setup-python@v5
38
+ with:
39
+ python-version: "3.12"
40
+ - run: pip install build
41
+ - run: python -m build
42
+ - run: |
43
+ python -c "
44
+ import zipfile, glob
45
+ whl = glob.glob('dist/*.whl')[0]
46
+ names = zipfile.ZipFile(whl).namelist()
47
+ assert any('py.typed' in n for n in names), 'py.typed missing from wheel'
48
+ print('py.typed found in wheel ✓')
49
+ "
@@ -0,0 +1,30 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.egg-info/
5
+ dist/
6
+ build/
7
+ .venv/
8
+ venv/
9
+
10
+ # Node
11
+ node_modules/
12
+ package-lock.json
13
+
14
+ # crawl4ai / crawlee artifacts
15
+ crawl4ai_cache/
16
+ storage/
17
+ apify_storage/
18
+
19
+ # autoscraper models
20
+ *-model/
21
+ *.json.bak
22
+
23
+ # OS
24
+ .DS_Store
25
+ Thumbs.db
26
+
27
+ # IDE
28
+ .idea/
29
+ .vscode/
30
+ *.swp
@@ -0,0 +1,36 @@
1
+ # Changelog
2
+
3
+ ## [2.0.0] — 2026-07-24
4
+
5
+ ### Added
6
+ - **scrapling** as 10th tool with dedicated `references/tools/scrapling.md`
7
+ - **insane-search** as 11th referenced tool (OMK internal sibling)
8
+ - Full shoutout section in NOTICE.md for all 11 upstream projects
9
+ - `scripts/check-versions.sh` — upstream version drift checker
10
+ - `CHANGELOG.md` — this file
11
+ - Repo-level `README.md` with quick-start and tool router table
12
+ - `.gitignore` for Python/Node artifacts
13
+
14
+ ### Changed
15
+ - SKILL.md frontmatter description compressed (~800 → ~400 chars) for faster skill routing
16
+ - SKILL.md metadata.tools now includes scrapling + insane-search (10 entries)
17
+ - NOTICE.md restructured: license summary table, per-project shoutout with descriptions
18
+ - routing.md updated with scrapling reference link (was "형제 스킬" text-only)
19
+ - All references synced from v1 skill at `~/.omk/agent/skills/omk-crawling/`
20
+
21
+ ### License verification
22
+ All 11 upstream licenses verified via GitHub API on 2026-07-24:
23
+ - Apache-2.0: crawl4ai, crawlee, scrcpy
24
+ - MIT: browser-use, curl-impersonate, curl_cffi, autoscraper, markitdown
25
+ - BSD-3-Clause: scrapy, scrapling
26
+ - OMK internal: insane-search
27
+
28
+ ## [1.0.0] — 2026-07-23
29
+
30
+ ### Added
31
+ - Initial skill: 8 tools (crawl4ai, scrapy, crawlee, browser-use, curl-impersonate, autoscraper, markitdown, scrcpy)
32
+ - 6-layer routing architecture
33
+ - 7 runnable examples
34
+ - 13 reference documents
35
+ - NOTICE.md with license table
36
+ - LICENSE.txt (Apache-2.0 + crawl4ai attribution addendum)
@@ -0,0 +1,52 @@
1
+ # Contributing to omk-crawling
2
+
3
+ ## Setup
4
+
5
+ ```bash
6
+ git clone https://github.com/dmae97/omk-crawling.git
7
+ cd omk-crawling
8
+ pip install -e ".[all,dev]"
9
+ ```
10
+
11
+ ## Running tests
12
+
13
+ ```bash
14
+ pytest tests/ -v
15
+ ruff check omk_crawl/ tests/
16
+ ```
17
+
18
+ ## Code style
19
+
20
+ - Python 3.10+ syntax, `from __future__ import annotations` in every module
21
+ - Type hints on all public APIs
22
+ - `ruff` with `select = ["E", "F", "I", "W", "UP"]`, line-length 100
23
+ - Docstrings on all public classes and functions
24
+ - Tests for every new feature and bug fix
25
+
26
+ ## Adding a tool adapter
27
+
28
+ 1. Create `omk_crawl/tools/<name>_tool.py` extending `BaseTool`
29
+ 2. Set `name`, `pip_package`, `layer`, `needs_browser`, `needs_llm`
30
+ 3. Implement `fetch()` — must not raise, return `CrawlResult` with error
31
+ 4. Register in `omk_crawl/tools/__init__.py` (`ALL_TOOLS`, optionally `ESCALATION_CHAIN`)
32
+ 5. Add the pip package to `pyproject.toml` extras
33
+ 6. Add tests in `tests/`
34
+
35
+ ## Pull requests
36
+
37
+ - One logical change per PR
38
+ - Include tests
39
+ - Keep commits atomic with clear messages
40
+ - CI must pass (lint + test + build)
41
+
42
+ ## Shoutouts
43
+
44
+ This project went from 63/100 to 90+ through iterative code review.
45
+ Huge thanks to everyone who contributed feedback and tooling:
46
+
47
+ - **dmae97** — project author, all commits, driving the review-fix cycles
48
+ - **OMK (Open Multi-agent Kit)** — coding agent harness that coordinated the implementation
49
+ - **Claude (Anthropic)** — AI pair programmer for all 4 review-fix rounds
50
+ - **ruff** — linting that caught unused imports, import ordering, and style issues
51
+ - **pytest** — 71 tests keeping everything honest through every refactor
52
+ - **The code reviewers** — 4 rounds of brutally specific feedback (CF 503 escalation halt, silent verbose, markdown pollution, dead code, robots.txt wiring, thread safety, timeout honesty) that turned a working prototype into production-quality code
@@ -0,0 +1,75 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ Copyright 2026 omk-crawling contributors
6
+
7
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
+
9
+ 1. Definitions.
10
+
11
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
16
+
17
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
18
+
19
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
20
+
21
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
22
+
23
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
24
+
25
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
26
+
27
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
28
+
29
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
30
+
31
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
32
+
33
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
34
+
35
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
36
+
37
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
38
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
39
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
40
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
41
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
42
+
43
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
44
+
45
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
46
+
47
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
48
+
49
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
50
+
51
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
52
+
53
+ END OF TERMS AND CONDITIONS
54
+
55
+ ---
56
+
57
+ ## crawl4ai Attribution Addendum (upstream requirement)
58
+
59
+ The following attribution is required by crawl4ai's Apache-2.0 license addendum.
60
+ It applies to any use of crawl4ai or derivative works that include crawl4ai:
61
+
62
+ All distributions, publications, or public uses of this software, or derivative works based on this software, must include the following attribution:
63
+
64
+ "This product includes software developed by UncleCode (https://x.com/unclecode) as part of the Crawl4AI project (https://github.com/unclecode/crawl4ai)."
65
+
66
+ This attribution must be displayed in a prominent and easily accessible location, such as:
67
+
68
+ - For software distributions: In a NOTICE file, README file, or equivalent documentation.
69
+ - For publications (research papers, articles, blog posts): In the acknowledgments section or a footnote.
70
+ - For websites/web applications: In an "About" or "Credits" section.
71
+ - For command-line tools: In the help/usage output.
72
+
73
+ This requirement ensures proper credit is given for the use of Crawl4AI and helps promote the project.
74
+
75
+ ---
@@ -0,0 +1,109 @@
1
+ # NOTICE — omk-crawling
2
+
3
+ This OMK skill packages **documentation, routing, and examples** for the crawling/scraping/
4
+ extraction toolbox below. **No upstream library is vendored here** — each is installed
5
+ separately from PyPI / npm / native packages. Only docs and examples live in this directory.
6
+ Respect each upstream license when you use the tool.
7
+
8
+ ## Upstream Tools
9
+
10
+ | Tool | Version | License | Upstream |
11
+ |------|---------|---------|----------|
12
+ | crawl4ai | 0.9.2 | Apache-2.0 **(+ attribution addendum)** | https://github.com/unclecode/crawl4ai |
13
+ | scrapy | 2.17.0 | BSD-3-Clause | https://github.com/scrapy/scrapy |
14
+ | crawlee (JS) | 3.17.0 | Apache-2.0 | https://github.com/apify/crawlee |
15
+ | crawlee (Python) | 1.8.3 | Apache-2.0 | https://github.com/apify/crawlee-python |
16
+ | browser-use | 0.13.6 | MIT | https://github.com/browser-use/browser-use |
17
+ | curl-impersonate | native (C) | MIT | https://github.com/lwthiker/curl-impersonate |
18
+ | curl_cffi (binding) | 0.15.0 | MIT | https://github.com/lexiforest/curl_cffi |
19
+ | autoscraper | 1.1.14 | MIT | https://github.com/alirezamika/autoscraper |
20
+ | markitdown | 0.1.6 | MIT | https://github.com/microsoft/markitdown |
21
+ | scrcpy | 4.1 | Apache-2.0 | https://github.com/Genymobile/scrcpy |
22
+ | scrapling | 0.4.11 | BSD-3-Clause | https://github.com/d4vinci/Scrapling |
23
+
24
+ ## Shoutouts 🙏
25
+
26
+ omk-crawling exists because these 11 projects did the hard work first.
27
+ Every tool below is referenced, documented, and routed by this skill.
28
+ **Thank you to every maintainer and contributor.**
29
+
30
+ ### 1. Crawl4AI — [unclecode/crawl4ai](https://github.com/unclecode/crawl4ai)
31
+ > The LLM-first web crawler. Markdown output, deep crawling, MCP server, adaptive crawling.
32
+ > By **UncleCode** ([@unclecode](https://x.com/unclecode)). Apache-2.0 + attribution.
33
+ >
34
+ > *"This product includes software developed by UncleCode (https://x.com/unclecode)
35
+ > as part of the Crawl4AI project (https://github.com/unclecode/crawl4ai)."*
36
+
37
+ ### 2. Scrapy — [scrapy/scrapy](https://github.com/scrapy/scrapy)
38
+ > The mature, battle-tested crawling framework. Spiders, pipelines, middleware, 10+ years of ecosystem.
39
+ > By **Zyte** and the Scrapy community. BSD-3-Clause.
40
+
41
+ ### 3. Crawlee — [apify/crawlee](https://github.com/apify/crawlee)
42
+ > Production-grade crawling infrastructure. Queues, auto-scaling, proxy rotation, unified storage.
43
+ > By **Apify**. Apache-2.0. JS/TS first-class + official Python port.
44
+
45
+ ### 4. Browser-Use — [browser-use/browser-use](https://github.com/browser-use/browser-use)
46
+ > LLM agents that drive a real browser. Login, multi-step navigation, form filling, clicking.
47
+ > By **Browser Use team**. MIT.
48
+
49
+ ### 5. curl-impersonate — [lwthiker/curl-impersonate](https://github.com/lwthiker/curl-impersonate)
50
+ > Browser TLS/JA3/HTTP2 fingerprint impersonation. The lightest way past fingerprint-based 403s.
51
+ > By **lwthiker**. MIT.
52
+
53
+ ### 6. curl_cffi — [lexiforest/curl_cffi](https://github.com/lexiforest/curl_cffi)
54
+ > Python bindings for curl-impersonate. `requests`-like API with `impersonate="chrome124"`.
55
+ > By **lexiforest**. MIT.
56
+
57
+ ### 7. Autoscraper — [alirezamika/autoscraper](https://github.com/alirezamika/autoscraper)
58
+ > Give it examples, it learns extraction rules. No browser, no selectors, ultra-lightweight.
59
+ > By **Alireza Mika**. MIT.
60
+
61
+ ### 8. MarkItDown — [microsoft/markitdown](https://github.com/microsoft/markitdown)
62
+ > Convert PDF, Office, images, audio, HTML → Markdown for LLM input.
63
+ > By **Microsoft**. MIT.
64
+
65
+ ### 9. scrcpy — [Genymobile/scrcpy](https://github.com/Genymobile/scrcpy)
66
+ > Android screen mirroring and control. The bridge when data lives only in a mobile app.
67
+ > By **Genymobile** (Romain Vimont). Apache-2.0.
68
+
69
+ ### 10. Scrapling — [d4vinci/Scrapling](https://github.com/d4vinci/Scrapling)
70
+ > Stealth scraping framework. Cloudflare Turnstile bypass, adaptive selectors, spider framework.
71
+ > By **d4vinci**. BSD-3-Clause.
72
+
73
+ ### 11. insane-search — [fivetaku/gptaku_plugins](https://github.com/fivetaku/gptaku_plugins)
74
+ > Exhaustive multi-source search & auto-bypass for blocked websites.
75
+ > rg → ast-grep → knowledge graph → git history → MCP → WAF grid → Playwright.
76
+ > By **fivetaku** ([@fivetaku](https://github.com/fivetaku)) via the
77
+ > [GPTaku Plugins](https://github.com/fivetaku/gptaku_plugins) marketplace.
78
+ > The "single blocked URL" breaker and WAF escalation engine in this toolbox.
79
+ > **Huge shoutout to fivetaku for building the most insane search plugin in the ecosystem.** 🙏
80
+
81
+ ## crawl4ai attribution (required)
82
+
83
+ crawl4ai's license (Apache-2.0) carries a mandatory attribution addendum (see
84
+ [`LICENSE.txt`](LICENSE.txt)). Any distribution, publication, or public use of crawl4ai or
85
+ derivative works must display:
86
+
87
+ > "This product includes software developed by UncleCode (https://x.com/unclecode)
88
+ > as part of the Crawl4AI project (https://github.com/unclecode/crawl4ai)."
89
+
90
+ Short form for agent/tool output:
91
+
92
+ > This project uses Crawl4AI (https://github.com/unclecode/crawl4ai) for web data extraction.
93
+
94
+ ## License Summary
95
+
96
+ | License | Tools | Key obligation |
97
+ |---------|-------|----------------|
98
+ | Apache-2.0 | crawl4ai, crawlee, scrcpy | Attribution + NOTICE retention. crawl4ai has extra addendum. |
99
+ | MIT | browser-use, curl-impersonate, curl_cffi, autoscraper, markitdown | Retain copyright + license notice. |
100
+ | BSD-3-Clause | scrapy, scrapling | Retain copyright + license. No endorsement use. |
101
+ | GPTaku Plugins | insane-search | fivetaku/gptaku_plugins marketplace. |
102
+
103
+ ## Notes
104
+
105
+ - MIT / BSD-3-Clause / Apache-2.0 all permit use with attribution; retain upstream copyright
106
+ and license notices when you redistribute any of these libraries' code.
107
+ - Only crawl4ai's full license text is bundled ([`LICENSE.txt`](LICENSE.txt)) because its
108
+ addendum explicitly requires displaying attribution. For the others, this NOTICE + the
109
+ upstream links satisfy attribution since no code is vendored.