Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mishakorzik authored Sep 30, 2022
1 parent 56d56c6 commit a88a9cf
Showing 1 changed file with 53 additions and 2 deletions.
55 changes: 53 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,53 @@
# Spower
A python library for search data on shodan, google, duckduckgo
## Installing

**With pip**
```bash
pip install spower
```

**With manual**
```
```

- [x] Easy to use
- [x] Fuctional search
- [x] more results +75
- [x] Fast result
- [x] no API keys are required
- [x] does not take up much memory
- [ ] Support Bing, Yandex search

## Usage

**easy search using this library**
```python

#Search with Google
>>> from spower import *
>>> search.google("mishakorzik")
['https://github.com/mishakorzik', 'https://github.com/mishakorzik/AllHackingTools', ...
>>>

#Search with DuckDuckGo
>>> from spower import *
>>> search.duckduckgo("mishakorzik")
'["https://github.com/mishakorzik/IpHack", "https://github.com/mishakorzik/virus.bat", ...
>>>

#Search with Shodan
>>> from spower import *
>>> search.shodan("github")
[+] IP : 192.30.25*.***
[+] Port : 80
[+] Org : GitHub, Inc.
[+] Country : United States
[+] longitude : -77.0****
[+] latitude : 38.8****
[+] City : Washington
[+] Layer : tcp
[+] Domains : ['github.com']
[+] Hostnames : ['lb-192-30-25*-***-iad.github.com']
>>>

```

0 comments on commit a88a9cf

Please sign in to comment.