cool hacks |
Opening Number Of Websites Using Python Posted: 03 Feb 2014 12:30 AM PST So you just started in python programming, and want to prank your arch nemesis. Here i will teach you how to open any website on his computer using python. Step 1: open notepad and type import webbrowser In python the "import" statement is used to add a module to your project. In this case we want to add the webbrowser module. Step 2: webbrowser.open('http://SITE HERE!.com') This is calling the open function on your default web browser. You pass it an url in the form of a string. Possible usages: You can add as many websites as you want like show below webbrowser.open('http://coolhackingtrick.com') The complete code will look something like below import webbrowser Step 3 Save the file as visus.py Enjoy pranking your friends and if you wish to learn more programming then check out our article below. |
You are subscribed to email updates from Cool Hacking Tricks To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
No comments:
Post a Comment