Skip to content

Commit 2312e15

Browse files
committed
Merge pull request #42 from NafisFaysal/master
get/hack More views for youtube videos
2 parents 8c3fa0e + 28a99fa commit 2312e15

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,7 @@ In the scripts the comments etc are lined up correctly when they are viewed in [
3636

3737
- `testlines.py` - This very simple script open a file and prints out 100 lines of whatever is set for the line variable.
3838

39-
- `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.
39+
- `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.
40+
41+
- `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.
42+

get_youtube_view.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import time
2+
import webbrowser
3+
4+
#how much views you want
5+
6+
totalBreaks = 30
7+
countBreaks = 0
8+
9+
print("Enjoy your Time\n" +time.ctime())
10+
while(countBreaks < totalBreaks):
11+
time.sleep(5)
12+
webbrowser.open("https://www.youtube.com/watch?v=o6A7nf3IeeA")
13+
countBreaks = countBreaks+1

0 commit comments

Comments
 (0)