Launchpad web services API
0
votes
0answers
8 views
Batch Launchpadlib api queries together
I want to get information about all the ubuntu bugs filed till date. So I used the launchpadlib api to get all of them using the id. I start a loop at id 1 and continue. But this is a very slow ...
0
votes
1answer
53 views
Getting all the bugs associated with a user using launchpadlib
On each users Launchpad homepage, there's a tab entitled Bugs. I've been looking through the Launchpad API reference for the person object but can't find anything that seems like it would return all ...
0
votes
1answer
18 views
non-ascii fields in list of all members in launchpad team using the launchpadapi?
I've written this python script to list all the display_name's from a team members in Launchpad:
from launchpadlib.launchpad import Launchpad
cachedir = "/home/username/.launchpadlib/cache/"
...
4
votes
2answers
49 views
How do I list all members in a Launchpad team?
How can I produce a text file list of all members in Launchpad team?
For example, this page only shows the list of users in batches of 75:
http://launchpad.net/~launchpad-beta-testers/+members
I ...
2
votes
1answer
104 views
Access the Ubuntu bug database using launchladlib
I'm trying to write a Python script using launchpadlib that can access the Ubuntu bug database, but I can't find any obvious way to restrict the search to the bugs of a particular project/distro. I ...