Metadata-Version: 2.1
Name: dorkify
Version: 3.1
Summary: A Python library for scraping the Google search engine.
Home-page: https://github.com/probablynothate/dorkify
Author: hate
Author-email: 
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4 (==4.9.3)
Requires-Dist: requests (==2.25.1)

[***pypi***](https://pypi.org/project/dorkify)

# Banner

<img src="https://cdn.discordapp.com/attachments/942412994736963614/942551697404874762/unknown.png">

# 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:
```bash
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:
```python
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.
```python
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:
```python
from dorkify import search
search("exploit-db", lang="en")
```
## dorkify.search
```python
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:

```python
from dorkify import search

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



