<h1 align="left">
Godork - Scrape Google search quickly
</h1>
<div align="left">
<a href="https://python.org"><img src="https://img.shields.io/badge/Built%20with-Python-Blue"></a>
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/license-MIT-_red.svg"></a>
<a href="https://github.com/thd3r/godork/releases"><img src="https://img.shields.io/github/release/thd3r/godork.svg"></a>
<a href="https://pypi.python.org/pypi/godork/"><img src="https://img.shields.io/pypi/v/godork.svg"></a>
<a href="https://github.com/thd3r/godork/issues?q=is%3Aissue+is%3Aclosed"><img src="https://img.shields.io/github/issues-closed-raw/thd3r/godork?color=dark-green&label=issues%20fixed"></a>
</div>
```
__ __
___ ____ ___/ /__ ____/ /__
/ _ `/ _ \/ _ / _ \/ __/ '_/ v2.0.0
\_, /\___/\_,_/\___/_/ /_/\_\ latest
/___/
thd3r & societyprojects
```
**Godork** is a fast tool to scrape links and titles from google search results using [asyncio](https://docs.python.org/3/library/asyncio.html) library which uses cooperative multitasking combined with [aiohttp](https://docs.aiohttp.org) and with this tool you can extract links including their titles. This tool is also able to bypass restrictions imposed by providers
## Resources
- [Requirements](#requirements)
- [Installation](#installation)
- [from Pypi](#from-pypi)
- [from GitHub](#from-github)
- [Options](#options)
- [Usage](#usage)
- [Basic Usage](#basic-usage)
- [Help & Bugs](#help--bugs)
- [Contributors](#contributors-heart)
- [License](#license)
- [Support](#support)
## Requirements
```
# This is required for the pydub library
$ sudo apt install ffmpeg
# Check the version of the google-chrome browser
$ google-chrome --version
# If the browser version does not exist run this command
$ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
$ sudo apt -f install
$ sudo dpkg -i google-chrome-stable_current_amd64.deb
# After that, take the version from your google-chrome browser and place it here
$ wget https://storage.googleapis.com/chrome-for-testing-public/{PUT_THAT_VERSION_HERE}/linux64/chromedriver-linux64.zip
$ unzip chromedriver-linux64.zip
$ cd chromedriver-linux64
$ sudo mv chromedriver /usr/bin
```
## Installation
**Godork** requires **python 3.8** or higher to install successfully
### from Pypi
```sh
pip install godork
```
### from Github
```sh
git clone https://github.com/thd3r/godork.git
cd codork
python3 setup.py install
```
## Options
Here are all the options it supports.
| Options | Description |
|------------------ |------------------------------------------------ |
| -d, --dorks | single dork or file containing dorks |
| -p, --proxy | http proxy to use with godork (eg http://127.0.0.1:8080) |
| --no-headless | run in graphical mode when bypassing |
| --update-tools | update godork to the latest version |
# Usage
### Basic Usage
```sh
godork --dorks site:*.com
```
> [!WARNING]
> Developers assume no liability and are not responsible for any issue or damage.
## Help & Bugs
If you are still confused or found a bug, please [open the issue](https://github.com/thd3r/godork/issues). All bug reports are appreciated, some features have not been tested yet due to lack of free time.
## Contributors :heart:
<p align="left">
<a href="https://github.com/societyprojects"><img src="https://avatars.githubusercontent.com/u/181974230?s=400&v=4" width="50" height="50" alt="" style="max-width: 100%;"></a>
</p>
## License
Godork is distributed under [MIT License](https://github.com/thd3r/godork/blob/main/LICENSE.md).
<img src="https://img.shields.io/badge/license-MIT-000000.svg?style=for-the-badge">
## Support
<a href="https://www.buymeacoffee.com/thd3r" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>
Raw data
{
"_id": null,
"home_page": "https://github.com/thd3r/godork",
"name": "godork",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "godork, google dorks, google dorking",
"author": "Thunder (@thd3r)",
"author_email": "thd3r@proton.me",
"download_url": "https://files.pythonhosted.org/packages/7a/96/85bad6f9d4808f050df8c93596b2b2689891a86b1e7fc6f9e555df729bc4/godork-2.0.5.tar.gz",
"platform": null,
"description": "<h1 align=\"left\">\n Godork - Scrape Google search quickly\n</h1>\n\n<div align=\"left\">\n <a href=\"https://python.org\"><img src=\"https://img.shields.io/badge/Built%20with-Python-Blue\"></a>\n <a href=\"https://opensource.org/licenses/MIT\"><img src=\"https://img.shields.io/badge/license-MIT-_red.svg\"></a>\n <a href=\"https://github.com/thd3r/godork/releases\"><img src=\"https://img.shields.io/github/release/thd3r/godork.svg\"></a>\n <a href=\"https://pypi.python.org/pypi/godork/\"><img src=\"https://img.shields.io/pypi/v/godork.svg\"></a>\n <a href=\"https://github.com/thd3r/godork/issues?q=is%3Aissue+is%3Aclosed\"><img src=\"https://img.shields.io/github/issues-closed-raw/thd3r/godork?color=dark-green&label=issues%20fixed\"></a>\n</div>\n\n```\n __ __ \n ___ ____ ___/ /__ ____/ /__\n / _ `/ _ \\/ _ / _ \\/ __/ '_/ v2.0.0\n \\_, /\\___/\\_,_/\\___/_/ /_/\\_\\ latest\n/___/ \n thd3r & societyprojects\n```\n\n**Godork** is a fast tool to scrape links and titles from google search results using [asyncio](https://docs.python.org/3/library/asyncio.html) library which uses cooperative multitasking combined with [aiohttp](https://docs.aiohttp.org) and with this tool you can extract links including their titles. This tool is also able to bypass restrictions imposed by providers\n\n## Resources\n- [Requirements](#requirements)\n- [Installation](#installation)\n\t- [from Pypi](#from-pypi)\n\t- [from GitHub](#from-github)\n- [Options](#options)\n- [Usage](#usage)\n\t- [Basic Usage](#basic-usage)\n- [Help & Bugs](#help--bugs)\n- [Contributors](#contributors-heart)\n- [License](#license)\n- [Support](#support)\n\n\n## Requirements\n\n```\n# This is required for the pydub library\n$ sudo apt install ffmpeg\n\n# Check the version of the google-chrome browser\n$ google-chrome --version\n\n# If the browser version does not exist run this command\n$ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb\n$ sudo apt -f install\n$ sudo dpkg -i google-chrome-stable_current_amd64.deb\n\n# After that, take the version from your google-chrome browser and place it here\n$ wget https://storage.googleapis.com/chrome-for-testing-public/{PUT_THAT_VERSION_HERE}/linux64/chromedriver-linux64.zip\n$ unzip chromedriver-linux64.zip\n$ cd chromedriver-linux64 \n$ sudo mv chromedriver /usr/bin\n```\n\n## Installation\n\n**Godork** requires **python 3.8** or higher to install successfully\n\n### from Pypi\n\n```sh\npip install godork\n```\n\n### from Github\n\n```sh\ngit clone https://github.com/thd3r/godork.git\ncd codork\npython3 setup.py install\n```\n\n## Options\n\nHere are all the options it supports.\n\n| Options \t| Description \t|\n|------------------\t|------------------------------------------------\t|\n| -d, --dorks | single dork or file containing dorks |\n| -p, --proxy | http proxy to use with godork (eg http://127.0.0.1:8080) |\n| --no-headless | run in graphical mode when bypassing |\n| --update-tools | update godork to the latest version |\n\n# Usage\n\n### Basic Usage\n\n```sh\ngodork --dorks site:*.com\n```\n\n> [!WARNING]\n> Developers assume no liability and are not responsible for any issue or damage.\n\n## Help & Bugs\n\nIf you are still confused or found a bug, please [open the issue](https://github.com/thd3r/godork/issues). All bug reports are appreciated, some features have not been tested yet due to lack of free time.\n\n## Contributors :heart:\n\n<p align=\"left\">\n<a href=\"https://github.com/societyprojects\"><img src=\"https://avatars.githubusercontent.com/u/181974230?s=400&v=4\" width=\"50\" height=\"50\" alt=\"\" style=\"max-width: 100%;\"></a>\n</p>\n\n## License\n\nGodork is distributed under [MIT License](https://github.com/thd3r/godork/blob/main/LICENSE.md).\n\n<img src=\"https://img.shields.io/badge/license-MIT-000000.svg?style=for-the-badge\">\n\n## Support\n\n<a href=\"https://www.buymeacoffee.com/thd3r\" target=\"_blank\"><img src=\"https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png\" alt=\"Buy Me A Coffee\" style=\"height: 60px !important;width: 217px !important;\" ></a>\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Scrape Google search quickly",
"version": "2.0.5",
"project_urls": {
"Homepage": "https://github.com/thd3r/godork"
},
"split_keywords": [
"godork",
" google dorks",
" google dorking"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "a5feb6a3a8fca7fdd9456cc40347f4da96c17a8b1a14c4abf57bb2de5c3072a6",
"md5": "850ff995cd2592b356410511e38ef08a",
"sha256": "370eb047c437c168763f8480eb48b9c90947107ffb65269c5df3a26505e94d83"
},
"downloads": -1,
"filename": "godork-2.0.5-py3-none-any.whl",
"has_sig": false,
"md5_digest": "850ff995cd2592b356410511e38ef08a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 10036,
"upload_time": "2024-11-27T07:38:31",
"upload_time_iso_8601": "2024-11-27T07:38:31.728463Z",
"url": "https://files.pythonhosted.org/packages/a5/fe/b6a3a8fca7fdd9456cc40347f4da96c17a8b1a14c4abf57bb2de5c3072a6/godork-2.0.5-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a9685bad6f9d4808f050df8c93596b2b2689891a86b1e7fc6f9e555df729bc4",
"md5": "dafefdaf52c9639dada87128c4720807",
"sha256": "17bfe5a04c3be75c0e61c9d705c6b489b787ce515e918dc6798e63df18c0b7de"
},
"downloads": -1,
"filename": "godork-2.0.5.tar.gz",
"has_sig": false,
"md5_digest": "dafefdaf52c9639dada87128c4720807",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9492,
"upload_time": "2024-11-27T07:38:33",
"upload_time_iso_8601": "2024-11-27T07:38:33.709744Z",
"url": "https://files.pythonhosted.org/packages/7a/96/85bad6f9d4808f050df8c93596b2b2689891a86b1e7fc6f9e555df729bc4/godork-2.0.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-27 07:38:33",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "thd3r",
"github_project": "godork",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "godork"
}