Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
suchsoak authored Feb 5, 2024
1 parent 6431d38 commit 53df842
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,14 @@ It will try to make the connection with the tor project, if this rejects the pro
If you want, you can change the sites for make the requests.
```sh
r = requests.get('https://www.torproject.org/')
proxy = requests.get('https://www.proxysite.com/')
vpnproton = requests.get('https://protonvpn.com/')
proxy = requests.get('https://www.proxysite.com/')
vpnproton = requests.get('https://protonvpn.com/')
proxylist = requests.get('https://free-proxy-list.net/')
proxylist2 = requests.get('https://www.proxyscrape.com/free-proxy-list')
OnWorks = requests.get('https://www.onworks.net/')
nordvpn = requests.get('https://nordvpn.com/')
shodan = requests.get('https://www.shodan.io/')
zoomeye = requests.get('https://www.zoomeye.org/')
```
## Status Code
Expand All @@ -112,6 +117,11 @@ The expression **results.upload/1024/1024** is used to convert the upload speed
print("−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−")
print("Upload:", speed.upload / 1024 / 1024, "Mbps")
print("−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−")
print("Ping:", speed.ping, "ms")
print("−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−")
print("Bytes:", speed.bytes_received, "bytes")
print("−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−")
print("Server:", speed.server['sponsor'])
```
**If you want, you can change**
Expand Down

0 comments on commit 53df842

Please sign in to comment.