From 85c82155233e47c9bbd23f20715715ced0bf5a68 Mon Sep 17 00:00:00 2001 From: NafisFaysal Date: Tue, 22 Mar 2016 01:08:50 +0600 Subject: [PATCH 1/2] get/hack More views for youtube videos --- get_youtube_view.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 get_youtube_view.py 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 From 28a99fa1ff5d2cb6dd4ccc90dec757c59eec3685 Mon Sep 17 00:00:00 2001 From: Nafis Faysal Date: Tue, 22 Mar 2016 01:46:55 +0600 Subject: [PATCH 2/2] update README.md add get_youtube_view.py details --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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. +