Skip to main content

A Python library for scraping the Google search engine.

Project description

pypi

Banner

dorkify

dorkify is a Python library for searching Google, easily. dorkify uses requests and BeautifulSoup4 to scrape Google.

Installation

To install, run the following command:

python3 -m pip install dorkify

usage

To get results for a search term, simply use the search function in dorkify. For example, to get results for "Google" in Google, just run the following program:

from dorkify import search
search("Google")

Additional options

dorkify supports a few additional options. By default, dorkify returns 10 results. This can be changed. To get a 100 results on Google for example, run the following program.

from dorkify import search
search("exploit-db", num_results=100)

In addition, you can change the language google searches in. For example, to get results in French run the following program:

from dorkify import search
search("exploit-db", lang="en")

dorkify.search

dorkify.search(str: term, int: num_results=10, str: lang="en") -> list

In the new version of dorkify you can search on a specified site:

from dorkify import search

search("site:exploit-db.com "gmail"")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

dorkify-3.1-py3-none-any.whl (2.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page