jira-select


Namejira-select JSON
Version 3.1.1 PyPI version JSON
download
home_pagehttps://github.com/coddingtonbear/jira-select
SummaryEasily run complex SQL-like queries far beyond what Jira's standard JQL query language can provide.
upload_time2023-08-15 19:49:54
maintainer
docs_urlNone
authorAdam Coddington
requires_python>=3.6
licenseMIT
keywords jira csv sql
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![](https://github.com/coddingtonbear/jira-select/workflows/Run%20Tests/badge.svg) [![Join the chat at https://gitter.im/coddingtonbear/jira-select](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/coddingtonbear/jira-select?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

# Jira-Select: Get the data you want to see out of Jira

![](https://coddingtonbear-public.s3-us-west-2.amazonaws.com/github/jira-select/demo.3.gif)

Jira-select is a command-line tool and library that lets you run SQL-like
queries against your Jira instance that are far beyond what Jira's built-in
query language can provide.

Jira has its own query language
but there are many limitations around what JQL is capable of.
Some data is returned in arcane formats
(e.g. sprint names are returned as a string looking something like
``com.atlassian.greenhopper.service.sprint.Sprint@14b1c359[id=436...``),
data cannot be grouped (there's nothing like SQL's `GROUP BY` statement),
and because of that lack of grouping, there are no aggregation functions --
no `SUM`-ing story points or estimates per-assignee for you.
And if you want to write a custom function for processing a field,
well, I'm not even sure where you'd begin.
Jira-select makes those things easy.

If you've ever found yourself held back by the limitations of Jira's
built-in query language, this tool may make your life easier.
Using Jira-select you can perform a wide variety of SQL-like query
operations including grouping, aggregation, custom functions, and more.

## Supported Platforms

- Linux
- Windows
- OSX

## Installation

You can either install from pip:

```
pip install jira-select
```

_or_ you can download the latest packaged release here:

https://github.com/coddingtonbear/jira-select/releases

_or_ you can build from source:

```
git clone https://github.com/coddingtonbear/jira-select.git
cd jira-select
pip install -e .
```

## Quickstart

First, you need to configure `jira-select` to connect to your jira instance:

```
jira-select configure
```

Then, you can open up your shell:

```
jira-select shell
```

Now, you can type out your query -- the below will find issues assigned
to you:

```yaml
select:
 Issue Key: key
 Issue Summary: summary
from: issues
where:
  - assignee = "your-email@somecompany.com"
  - resolution is null
```

The editor uses `vi` bindings by default; so once you're ready to submit
your query, press `Esc` followed by `Enter` and after a short wait (watch the progressbars), you'll be shown your results. Press `q` to exit your results.

---

- Documentation for Jira-select is available on [ReadTheDocs](http://jira-select.readthedocs.org/).
- Please post issues on [Github](http://github.com/coddingtonbear/jira-select/issues).
- Questions? Ask them on [Gitter](https://gitter.im/coddingtonbear/jira-select).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/coddingtonbear/jira-select",
    "name": "jira-select",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "jira,csv,sql",
    "author": "Adam Coddington",
    "author_email": "me@adamcoddington.net",
    "download_url": "https://files.pythonhosted.org/packages/7c/4a/bfc19be7216da064a7351f5b1a37e349048fcea406332332436d854b40ae/jira-select-3.1.1.tar.gz",
    "platform": null,
    "description": "![](https://github.com/coddingtonbear/jira-select/workflows/Run%20Tests/badge.svg) [![Join the chat at https://gitter.im/coddingtonbear/jira-select](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/coddingtonbear/jira-select?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n# Jira-Select: Get the data you want to see out of Jira\n\n![](https://coddingtonbear-public.s3-us-west-2.amazonaws.com/github/jira-select/demo.3.gif)\n\nJira-select is a command-line tool and library that lets you run SQL-like\nqueries against your Jira instance that are far beyond what Jira's built-in\nquery language can provide.\n\nJira has its own query language\nbut there are many limitations around what JQL is capable of.\nSome data is returned in arcane formats\n(e.g. sprint names are returned as a string looking something like\n``com.atlassian.greenhopper.service.sprint.Sprint@14b1c359[id=436...``),\ndata cannot be grouped (there's nothing like SQL's `GROUP BY` statement),\nand because of that lack of grouping, there are no aggregation functions --\nno `SUM`-ing story points or estimates per-assignee for you.\nAnd if you want to write a custom function for processing a field,\nwell, I'm not even sure where you'd begin.\nJira-select makes those things easy.\n\nIf you've ever found yourself held back by the limitations of Jira's\nbuilt-in query language, this tool may make your life easier.\nUsing Jira-select you can perform a wide variety of SQL-like query\noperations including grouping, aggregation, custom functions, and more.\n\n## Supported Platforms\n\n- Linux\n- Windows\n- OSX\n\n## Installation\n\nYou can either install from pip:\n\n```\npip install jira-select\n```\n\n_or_ you can download the latest packaged release here:\n\nhttps://github.com/coddingtonbear/jira-select/releases\n\n_or_ you can build from source:\n\n```\ngit clone https://github.com/coddingtonbear/jira-select.git\ncd jira-select\npip install -e .\n```\n\n## Quickstart\n\nFirst, you need to configure `jira-select` to connect to your jira instance:\n\n```\njira-select configure\n```\n\nThen, you can open up your shell:\n\n```\njira-select shell\n```\n\nNow, you can type out your query -- the below will find issues assigned\nto you:\n\n```yaml\nselect:\n Issue Key: key\n Issue Summary: summary\nfrom: issues\nwhere:\n  - assignee = \"your-email@somecompany.com\"\n  - resolution is null\n```\n\nThe editor uses `vi` bindings by default; so once you're ready to submit\nyour query, press `Esc` followed by `Enter` and after a short wait (watch the progressbars), you'll be shown your results. Press `q` to exit your results.\n\n---\n\n- Documentation for Jira-select is available on [ReadTheDocs](http://jira-select.readthedocs.org/).\n- Please post issues on [Github](http://github.com/coddingtonbear/jira-select/issues).\n- Questions? Ask them on [Gitter](https://gitter.im/coddingtonbear/jira-select).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Easily run complex SQL-like queries far beyond what Jira's standard JQL query language can provide.",
    "version": "3.1.1",
    "project_urls": {
        "Homepage": "https://github.com/coddingtonbear/jira-select",
        "Issue Tracker": "https://github.com/coddingtonbear/jira-select/issues"
    },
    "split_keywords": [
        "jira",
        "csv",
        "sql"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c4abfc19be7216da064a7351f5b1a37e349048fcea406332332436d854b40ae",
                "md5": "3ed0cf32c4ca0f45dbec51da9d970c67",
                "sha256": "24e30381b5b8dd2e5ad15e01a26428d6f2f5f09d513e9a2aec12693a4db71ced"
            },
            "downloads": -1,
            "filename": "jira-select-3.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "3ed0cf32c4ca0f45dbec51da9d970c67",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 91603,
            "upload_time": "2023-08-15T19:49:54",
            "upload_time_iso_8601": "2023-08-15T19:49:54.123651Z",
            "url": "https://files.pythonhosted.org/packages/7c/4a/bfc19be7216da064a7351f5b1a37e349048fcea406332332436d854b40ae/jira-select-3.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-15 19:49:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "coddingtonbear",
    "github_project": "jira-select",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "jira-select"
}
        
Elapsed time: 0.10007s