Advertisement
Guest User

Untitled

a guest
Dec 1st, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. from urllib.request import urlopen
  2.  
  3. response = urlopen('https://images.offensive-security.com/kali-linux-light-2018.4-amd64.iso.torrent')
  4. html = response.read()
  5. with open("torrent.torrent", "w") as proto:
  6. proto.write(html.decode("ISO-8859-1"))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement