JIRA support for Flask without breaking PyCharm inspections.
Project description
A simple JIRA extension for Flask. Supports basic authentication and OAuth.
Supported Platforms
Probably works on other versions too.
Quickstart
Install:
pip install Flask-JIRA-Helper
Example:
# example.py
from flask import Flask
from flask.ext.jira import JIRA
app = Flask(__name__)
app.config['JIRA_SERVER'] = 'https://jira.mycompany.com'
app.config['JIRA_USER'] = 'jdoe'
app.config['JIRA_PASSWORD'] = 'SuperSecretP@ssw0rd'
jira = JIRA(app)
print jira.projects()
Factory Example
# extensions.py
from flask.ext.jira import JIRA
jira = JIRA()
# application.py
from flask import Flask
from extensions import jira
def create_app():
app = Flask(__name__)
app.config['JIRA_SERVER'] = 'https://jira.mycompany.com'
app.config['JIRA_USER'] = 'service'
app.config['JIRA_PASSWORD'] = 'SuperSecretP@ssw0rd'
jira.init_app(app)
return app
# manage.py
from application import create_app
app = create_app()
app.run()
Configuration
Flask-JIRA-Helper subclasses jira.client.JIRA and adds the init_app() method for delayed initialization (for applications that instantiate extensions in a separate file, but run init_app() in the same file Flask() was instantiated).
The following config settings are searched for in the Flask application’s configuration dictionary:
JIRA_SERVER – URL to JIRA server.
JIRA_USER – HTTP Basic authentication user name.
JIRA_PASSWORD – HTTP Basic authentication password.
JIRA_TOKEN – OAuth authentication access token.
JIRA_SECRET – OAuth authentication access token secret.
JIRA_CONSUMER – OAuth authentication consumer key.
JIRA_CERT – OAuth authentication key certificate data.
JIRA_IGNORE_INITIAL_CONNECTION_FAILURE – Ignore ConnectionError during init_app() for testing/development.
Changelog
0.2.0
Added JIRA_IGNORE_INITIAL_CONNECTION_FAILURE option.
Added Python 2.6 and 3.x support.
0.1.2
Fixed AttributeError when JIRA is instantiated but init_app() isn’t called.
0.1.1
Clearer error message when no credentials are specified.
0.1.0
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
File details
Details for the file Flask-JIRA-Helper-0.2.0.tar.gz
.
File metadata
- Download URL: Flask-JIRA-Helper-0.2.0.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5867ec3857ce653161873a506b6f61b23f9be66ea5571743d1cd4d0c18023bf5 |
|
MD5 | 2d892cb224353c6f0715ba34076a8daa |
|
BLAKE2b-256 | 3a9fa911483035187abce807fbcbd6758228660aae33b689b539fc74dbc37918 |