{"id":48226733,"url":"https://github.com/aaronlyy/ventus","last_synced_at":"2026-04-04T19:24:03.914Z","repository":{"id":45571999,"uuid":"482816030","full_name":"aaronlyy/ventus","owner":"aaronlyy","description":"A Google Dorking Library \u0026 Command-Line Interface 🐲","archived":false,"fork":false,"pushed_at":"2023-09-15T22:41:04.000Z","size":313,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-28T12:38:43.303Z","etag":null,"topics":["dork","dorking","dorking-tool","google","google-dorking","scraper","scraping"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aaronlyy.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}},"created_at":"2022-04-18T11:07:39.000Z","updated_at":"2025-06-21T22:43:51.000Z","dependencies_parsed_at":"2022-08-04T16:00:35.949Z","dependency_job_id":null,"html_url":"https://github.com/aaronlyy/ventus","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/aaronlyy/ventus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronlyy%2Fventus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronlyy%2Fventus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronlyy%2Fventus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronlyy%2Fventus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aaronlyy","download_url":"https://codeload.github.com/aaronlyy/ventus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronlyy%2Fventus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31410384,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["dork","dorking","dorking-tool","google","google-dorking","scraper","scraping"],"created_at":"2026-04-04T19:24:02.458Z","updated_at":"2026-04-04T19:24:03.898Z","avatar_url":"https://github.com/aaronlyy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\".\\media\\banner.png\" alt=\"banner\"\u003e\n\u003c/p\u003e\n\n\u003ch3 align=\"center\"\u003eA Google Dorking library \u0026 Command-Line Interface 👾\u003c/h3\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg alt=\"GitHub last commit\" src=\"https://img.shields.io/github/last-commit/aaronlyy/ventus\"\u003e\n  \u003cimg alt=\"GitHub release (latest by date)\" src=\"https://img.shields.io/github/v/release/aaronlyy/ventus\"\u003e\n  \u003cimg alt=\"GitHub\" src=\"https://img.shields.io/github/license/aaronlyy/ventus\"\u003e\n\u003c/p\u003e\n\n## Installation\n\nInstall ventus with pip\n\n```pip install ventus```\n\n## Usage (command-line interface)\n\n```txt\nUsage: ventus [OPTIONS] QUERY\n\nOptions:\n  --help                Show this message and exit\n  -p, --paste           Search paste sites\n  -f, --files           Search filesharing sites\n  -i, --index           Search index of /\n  -d, --document        Search for DOCX files\n```\n\n## Usage (library)\n\n### Example 1: Search a string\n\n```py\nfrom ventus import search\n\nresults = search(\"test\")\n\nfor r in results:\n    print(r)\n```\n\n### Example 2: Search a raw dork query\n\n```py\nfrom ventus import search\n\nresults = search(\"site:wikipedia.com mercedes\")\n\nfor r in results:\n    print(r)\n\nfor r in results:\n    print(r)\n```\n\n### Example 3: Build and search a query using the query builder\n\n```py\nfrom ventus import search, Query\n\nq = Query()\nq.site(\"finance.yahoo.com\")\nq.intitle(\"AMD\")\n\nprint(q) # site:finance.yahoo.com intitle:AMD\n\n# search query\nresults = search(q)\n\nfor r in results:\n    print(r)\n```\n\n### Example 4: Add a keyword group to a query\n\n```py\nfrom ventus import search, Query, Filter\n\nq = Query()\nq.site(\"finance.yahoo.com\")\nq.intitle([\"BMW\", \"Mercedes\"], group_seperator=Filter.AND)\n\nprint(q) # site:finance.yahoo.com intitle:(BMW \u0026 Mercedes)\n\n# search query\nresults = search(q)\n\nfor r in results:\n    print(r)\n```\n\n## Roadmap\n\n- recode searcher and add support for pagination\n- add option to choose number of links to return\n- more pre configured searches in cli\n- recode query builder\n- show live updates while searching\n- add proxy from file support\n- add exceptions\n- refactor all files\n\n### About\n\nMade with ♥ by [aaronlyy](https://github.com/aaronlyy)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faaronlyy%2Fventus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faaronlyy%2Fventus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faaronlyy%2Fventus/lists"}