Collect issues from multiple bitbucket repositories and generate a nice html page.
Project description
The gocept.bbissues distribution
Collect open issues from multiple bitbucket repositories and generate a nice html page.
This package is compatible with Python version 2.7.
You have to provide a config file with the following content:
[config]
log = issues.log
# The next line is optional it defaults to index.jj2 in the package
template_path = template.jj2
[bitbucket]
projects = owner:project1
owner:project2
[github]
projects = owner:project1
owner:project2
The template will be rendered using jinja2, and could have the following content:
{% for project in projects %}
<h2>{{project.name}}</h2>
{% for issue in project.issues %}
<h3>{{issue.title}}</h3>
<pre>
{{issue.title}}
{{issue.content}}
{{issue.status}}
{{issue.created}}
{{issue.priority}}
{{issue.url}}
{{issue.author}}
</pre>
{% endfor %}
{% endfor %}
Developing gocept.bbissues
- Author:
- Online documentation:
- PyPI page:
- Issues:
- Source code:
- Current change log:
https://bitbucket.org/gocept/gocept.bbissues/raw-file/tip/CHANGES.txt
Change log for gocept.bbissues
0.2 (2016-01-13)
Add Github as issue source.
0.1 (2015-04-08)
initial release
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
gocept.bbissues-0.2.zip
(17.8 kB
view details)
File details
Details for the file gocept.bbissues-0.2.zip.
File metadata
- Download URL: gocept.bbissues-0.2.zip
- Upload date:
- Size: 17.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3f01465dfeeba29921f6d6ed69b969a2f698c2555bd12982ab03369a30583ad
|
|
| MD5 |
cb867a99fc4caab97e6ffa8da8f2391d
|
|
| BLAKE2b-256 |
f6322d8adc56e85fc2062d9bf3fae041628a52a833a410facb318979a2e46fe9
|