Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DNSPerformanceTest improvements #2

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# PythonDNSPerformancetest #

Just the code for the Youtube-Let's Code.
Make sure you have done
Make sure you have done:

`pip install dnspython`

Youtube:
YouTube:
https://youtu.be/MP8lMbgv1Ls

and feel free to add more Nameservers and domains for a better test
And feel free to add more Nameservers and domains for a better test.
4 changes: 2 additions & 2 deletions dnsperformancetest.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@

dnsserver = ['1.1.1.1','4.2.2.1','8.8.8.8','9.9.9.9','80.80.80.80','208.67.222.123','199.85.126.20','185.228.168.168','77.88.8.7','176.103.130.132','156.154.70.3','8.26.56.26']

domains = ['google.com', 'amazon.com', 'facebook.com', 'the-morpheus.de']
domains = ['google.com', 'amazon.com', 'facebook.com', 'the-morpheus.de', 'cloudflare.com']

toplist = []

for i in dnsserver:
avg = 0
for j in domains:
try:
resolv = dns.resolver.Resolver()
resolv = dns.resolver.Resolver.resolve()
resolv.nameservers = [i]
resolv.timeout = 1
start = time.time()
Expand Down