diff --git a/README.md b/README.md index f9d7d430517..bc8121113b6 100644 --- a/README.md +++ b/README.md @@ -36,4 +36,7 @@ In the scripts the comments etc are lined up correctly when they are viewed in [ - `testlines.py` - This very simple script open a file and prints out 100 lines of whatever is set for the line variable. -- `serial_scanner.py` contains a method called ListAvailablePorts which returns a list with the names of the serial ports that are in use in our computer, this method works only on Linux and Windows (can be extended for mac osx). If no port is found, an empty list is returned. \ No newline at end of file +- `serial_scanner.py` contains a method called ListAvailablePorts which returns a list with the names of the serial ports that are in use in our computer, this method works only on Linux and Windows (can be extended for mac osx). If no port is found, an empty list is returned. + +- `get_youtube_view.py` - This is very simple python script to get more views for your youtube videos.Some times I use for repeating my favorite songs by this scripts. + diff --git a/get_youtube_view.py b/get_youtube_view.py new file mode 100644 index 00000000000..dde2c346904 --- /dev/null +++ b/get_youtube_view.py @@ -0,0 +1,13 @@ +import time +import webbrowser + +#how much views you want + +totalBreaks = 30 +countBreaks = 0 + +print("Enjoy your Time\n" +time.ctime()) +while(countBreaks < totalBreaks): + time.sleep(5) + webbrowser.open("https://www.youtube.com/watch?v=o6A7nf3IeeA") + countBreaks = countBreaks+1