Skip to content

Commit

Permalink
Merge pull request geekcomputers#259 from Mosrod/patch-1
Browse files Browse the repository at this point in the history
Update get_youtube_view.py
  • Loading branch information
geekcomputers authored Nov 20, 2017
2 parents 299f0da + 140ea84 commit d308bc0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions get_youtube_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
from selenium import webdriver

#adding ability to change number of repeats
count = int(raw_input("Number of times to be repeated: "))
count = int(input("Number of times to be repeated: "))
#Same as before
x = raw_input("Enter the URL (no https): ")
x = input("Enter the URL (no https): ")
print( "Length of video:")
minutes = int(raw_input("Minutes "))
seconds = int(raw_input("Seconds "))
minutes = int(input("Minutes "))
seconds = int(input("Seconds "))

#Calculating the refreshrate from the user input
refreshrate = minutes * 60 + seconds
Expand Down

0 comments on commit d308bc0

Please sign in to comment.