You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import requests
|
|
import os
|
|
|
|
url = "https://onionoo.torproject.org/details"
|
|
r = requests.get(url)
|
|
|
|
with open("onionoo_details", "w") as output:
|
|
output.write(r.text)
|