This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from qbittorrentapi import Client | |
import sys, time | |
#----------------CONFIG---------------- | |
catagoriesToExclude = ['autodl-1', 'autodl-2', 'autodl-3'] | |
tagsToExclude = ['tackerName'] | |
uploadSpeedCutOff = 15000000 | |
uploadSpeedCutOffToggle = True | |
tag = 'Temp Paused' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#This is my death generating program! Created by Daniel Williams, feel free to use and share improvments! | |
import random | |
print('This is a program to guess your death age!') | |
age = int(input('How old are you? ')) | |
print('So you are %s years old?'% age) | |
userinput = input('NO CAPS: Yes or No?: ') | |
if userinput == 'no':#Loops from here :) | |
print('You made a mistake!') | |
print('Restart the program') | |
raise SystemExit #Remember for test, ends code. |