UNKNOWN
Project description
Launchpad show my bugs
======================
Console utility that displays your current bug list from Launchpad.net
How to use
==========
# 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
```
=======
lp-show-my-bugs
===============
Console client for displaying your Launchpad.net bugs
======================
Console utility that displays your current bug list from Launchpad.net
How to use
==========
# 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
```
=======
lp-show-my-bugs
===============
Console client for displaying your Launchpad.net bugs
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
lp-show-my-bugs-0.0.4.tar.gz
(3.0 kB
view details)
File details
Details for the file lp-show-my-bugs-0.0.4.tar.gz
.
File metadata
- Download URL: lp-show-my-bugs-0.0.4.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0edcd7b8c17a3332b7dc259619b27144a2a49cd2e3c03a018a9ff6f0c1a2b840 |
|
MD5 | a07f9113685fecd9636ad1ac56c4563c |
|
BLAKE2b-256 | a14faf42bd341adbb12dde3500231dd5e61bcd93b03c19c4d30c20e18640db5c |