Skip to content

Commit

Permalink
Updated requirements file with script requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
sneakerhax committed Oct 21, 2021
1 parent 2d6c69b commit 42d2cef
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
dnspython3
netaddr
requests
whois
2 changes: 1 addition & 1 deletion scripts/cidr_conversion_ip.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys

# requires: netaddr
# install: pip3 install netaddr
# install: python3 -m pip install netaddr

ip_list = sys.argv[1]
cidr_list = []
Expand Down
2 changes: 1 addition & 1 deletion scripts/status_code_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import requests

# requires: requests
# install: pip3 install requests
# install: python3 -m pip install requests

websites = ["http://example.com"]

Expand Down
2 changes: 1 addition & 1 deletion scripts/webserver_find.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys

# requires: requests
# install: pip3 install requests
# install: python3 -m pip install requests

usage = "usage: servercheck.py <http://url> <ports>"

Expand Down

0 comments on commit 42d2cef

Please sign in to comment.