commit 8898420325395d7e5d8ec153f46abf939ec35152 Author: Simon Quigley Date: Thu Dec 10 21:42:20 2015 -0600 Added file, should work diff --git a/main.py b/main.py new file mode 100644 index 0000000..00a3a2a --- /dev/null +++ b/main.py @@ -0,0 +1,18 @@ +import sys +import launchpadlib +from launchpadlib.launchpad import Launchpad +def no_credential(): + print("Can't proceed without Launchpad credentials.") + sys.exit() +launchpad = Launchpad.login_with('Mass package bug subscription adder', 'staging', credential_save_failed=no_credential) +teamtowrite = (raw_input('What person/team would you like to use for this(ID not full name)? ')) +filepath = (raw_input('Please specify the path of the input file: ')) +with open(filepath, "r") as ins: + filearray = [] + for line in ins: + filearray.append(line) +for i in range(len(filearray)): + print("Assigning:") + print(filearray[i]) + lp.distributions['ubuntu'].getSourcePackage(name=filearray[i]).addBugSubscription(subscriber=lp.people[teamtowrite]) + print("Complete")