Advertisement
GameNationRDF

Python Website Launcher & File Manager version 0.0.3

Sep 15th, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.52 KB | None | 0 0
  1. #Python Launcher version 0.0.3
  2. #Coded by GameNationRDF
  3. #It will be updated frequently with bug fixes and new feautures!
  4. import webbrowser
  5. import sys
  6. print ("Type in the website address and hit enter!")
  7. print ("")
  8. print ("Hit enter without typing anything to open up your file manager!")
  9. print ("")
  10. print ("Basically type 'exit' to close program!")
  11. print ("")
  12. while True:
  13.     x=str(input("Enter web adress here: "))
  14.     if x == ("exit"):
  15.         sys.exit()
  16.     else:
  17.         handle=webbrowser.get()
  18.         handle.open(x)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement