
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
python-jira-analysis
Advanced tools
clone python-jira-analysis
hg clone ssh://hg@bitbucket.org/fikander/python-jira-analysis
create Python virtual environment and active it
virtualenv venv
. venv/bin/activate
run setup package - it will download and install all dependencies in the virtual env
cd python-jira-analysis
python ./setup.py install
NOTE: OSX: if installation of numpy module fails above due, try running this:
ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future pip install numpy
ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future python ./setup.py install
create SQLite database where stats will be saved. Database is created at ~/jira_analysis.sqlite3 (your home directory)
jira_analysis_manage.py syncdb
create config.ini file with your credentials (see FAQ below)
activate virtual environment if not active
. venv/bin/activate
run Django development server. IMPORTANT: config.ini should be in directory you're running jira_analysis_manage.py from
jira_analysis_manage.py runserver
make sure that server is running and navigate to http://localhost:8000/admin
create new Project definition object and fill all the fields. Example values for SOA project:
"bugTypes": "Bug",
"updated": "2014-03-26T15:01:12.399Z",
"project_name": "Shazam on Android",
"endStatuses": "5,6",
"versions": "4.5.0,4.6.0",
"timestamp": "2014-03-26T15:01:12.399Z",
"startStatuses": "10033",
"project_key": "SOA",
"jql": "type NOT IN subTaskIssueTypes() AND (labels IS EMPTY OR labels NOT IN (old_for_review)) AND (Resolution IS EMPTY OR Resolution NOT IN (Duplicate))",
"histogramBins": 360,
"minLeadTime": 60,
"devStatuses": "10033,10035",
"qaStatuses": "10004,10003,10071,10038",
"owner": 1,
"statuses": "1,4,10089,10000,10048,10069,10068,10030,10076,10033,10035,10004,10003,10071,10038,5,6"
NOTE: you can use /statuses URL to get a list of all available statuses with their ids
http://localhost:8000/
use SQlite Database Browser to execute SQL, e.g.:
ALTER TABLE project ADD COLUMN tag varchar(64)
[general]
default-jira-profile=jira
[jira]
url=https://jira.shazamteam.net
user=JIRA_USERNAME
pass=JIRA_PASSWORD
FAQs
JIRA dashboard tools for Kanban
We found that python-jira-analysis demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.