This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jon_irenicus
Recipients David.Edelsohn, jon_irenicus, pitrou
Date 2013-06-22.20:56:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1371934594.81.0.127603213191.issue18286@psf.upfronthosting.co.za>
In-reply-to
Content
#David Edelsohn
It's not changing anything.


with open('url_list.txt') as f:
    content = f.readlines()
    content = ''.join(content)
    content = list(content)
    if content[0] == 'h' and content[1] == 't' and content[2] =='t':
        print("Make sure that you remove http:/ !")
        time.sleep(1)
        sys.exit("")
    elif content[0] != 'w' and content[1] != 'w' and content[2] != 'w':
        print("Make sure that you have the www. at the start!")
        print(content[0],content[1])
        time.sleep(1)
        sys.exit("")
        os.system("CLS")
    else:
        print("Configuration looks fine!")
        time.sleep(1)
        with open('url_list.txt') as f:
            content_url = f.readlines()
            content_join = ''.join(content_url)
            print("You will load video url",content_join,".")
            time.sleep(1)
            os.system("CLS")
            print("Processing...")
            time.sleep(1)
        

global x
x = 0
time.sleep(1)
if x > 35:
    print("Warning! Your computer could go unstable!")
    time.sleep(1)
    os.system("CLS")
    print("Are you sure you want to select that many? - yes - no")
    while "1" == "1":
        _answer_ = input("|yes| |no| - ")
        if _answer == "yes":
            break
        elif answer == "no":
            sys.exit("Quitting application")
        else:
            print("Invalid input!")
            time.sleep(1)
            os.system("CLS")
    
elif x in range(1,35):
    print("Seems fine")
elif x < 0:
    print("Warning!")
    print("Out of range value!")
    os.system("CLS")
    time.sleep(5)
    sys.exit("")
os.system("CLS")
time.sleep(5)
print("Starting now!")
while x > 0:
    x = x - 1
    os.system("start "+content_join)

time.sleep(10)
os.system("taskkill /f /im chrome.exe")
os.system("start test.py")
sys.exit("restarting")
History
Date User Action Args
2013-06-22 20:56:34jon_irenicussetrecipients: + jon_irenicus, pitrou, David.Edelsohn
2013-06-22 20:56:34jon_irenicussetmessageid: <1371934594.81.0.127603213191.issue18286@psf.upfronthosting.co.za>
2013-06-22 20:56:34jon_irenicuslinkissue18286 messages
2013-06-22 20:56:34jon_irenicuscreate