Latrina

Untitled

Apr 5th, 2020
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. #!/usr/bin/env python3.8
  2.  
  3. # Interactive ping script
  4. website = input ("type website to ping: ")
  5.  
  6. from pythonping import ping
  7.  
  8. def pingcmd():
  9.     ping(website, verbose=True)
  10.  
  11. pingcmd()
Add Comment
Please, Sign In to add comment