Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/niedbalski/lp-show-my-bugs
Console client for displaying your Launchpad.net bugs
https://github.com/niedbalski/lp-show-my-bugs
Last synced: about 1 month ago
JSON representation
Console client for displaying your Launchpad.net bugs
- Host: GitHub
- URL: https://github.com/niedbalski/lp-show-my-bugs
- Owner: niedbalski
- License: mit
- Created: 2014-04-16T15:25:32.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-04-16T21:21:22.000Z (over 10 years ago)
- Last Synced: 2024-11-22T15:35:53.021Z (about 1 month ago)
- Language: Python
- Size: 156 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Launchpad show my bugs
======================Console utility that displays your current bug list from Launchpad.net
# Installation
Using pip
```shell
$ pip install lp-show-my-bugs
```
Using pip + github
```shell
$ pip install git+https://github.com/niedbalski/lp-show-my-bugs
```# Usage
## Using the ClI
Basic usage:
```bash
$ lp-show-my-bugs --author="niedbalski" --project="any-project" --sort_by="date_created:asc"
```Limiting results:
```bash
$ lp-show-my-bugs --author="niedbalski" --project="any-project" --sort_by="date_created:asc" --limit=10
```The output will looks like:
![Output](https://raw.github.com/niedbalski/lp-show-my-bugs/master/images/output.png)
## Programmatically
```python
from lp_show_my_bugs import LaunchpadShowMyBugs#specify the author
lp = LaunchpadShowMyBugs('niedbalski')#add filters, (multiple supported)
lp.add_filter('bug_target_name', 'any-project')#sort by date_created in descending order
lp.sort_by('date_created', 'desc')#fetch the assigned bugs
bugs = lp.fetch()for bug in bugs:
print bug.date_created, bug.title
```
=======