{ "info": { "author": "Rudiger Wolf", "author_email": "rudiger.wolf@throughputfocus.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Topic :: Office/Business :: Scheduling", "Topic :: Utilities" ], "description": "JIRA Metrics Data extract utility\n=================================\n\nThis utility helps extract data from JIRA for processing with the\nActionableAgile\u2122 Analytics tool (https://www.actionableagile.com/analytics-tools/),\nas well as ad-hoc analysis using Excel.\n\nThis version of the tool is a fork from Martin (https://github.com/optilude/jira-cycle-extract). It has been modified to produce metrics based on issue sizes in adition to the existing metrics based on issue counts. Additional exports of issue data size changes enable easier backlog change analysis.\n\nIt will produce a CSV file with one row for each JIRA issue matching a set of\nfilter criteria, containing basic information about the issue as well as the\ndate the issue entered each step in the main cycle workflow.\n\nThis data can be used to produce a Cumulative Flow Diagram, a cycle time\nscatterplot, a cycle time histogram, and other analytics based on cycle time.\n\nTo make it easier to draw these diagrams, the tool can also be used to output\nCSV files with pre-calculated values for charting in e.g. Excel.\n\nFinally, if you have the right dependencies installed, it can output basic\ncharts as images.\n\nInstallation\n------------\n\nInstall Python 2.7 or Python 3.5 and pip. See http://pip.readthedocs.org/en/stable/installing/.\n\nInstall using `pip`::\n\n $ pip install jira-metrics-extract\n\nTo install cli and all dependencies down load the requirements.txt file and then install using `pip`::\n\n $ pip install -r requirements.txt\n\nThis will install a binary called `jira-metrics-extract`. You can test that it was\ncorrectly installed using::\n\n $ jira-metrics-extract --help\n\nIf you are using Anaconda then download environment.yml.\n\nInstall using `conda`::\n\n $ conda env create -f environment.yml\n\nActivate the new environment:\n\nLinux, OS X: source activate jira-metrics\nWindows: activate jira-metrics\n\nYou can test that it was correctly installed using::\n\n $ jira-metrics-extract --help\n\nIf you only installed the jira-metrics-extract with pip and you want to use the built-in charting capabilities, then you need to install Seaborn\n(which in turn installs Matplotlib and SciPy) and Statsmodels. You can get\nthese with the `charting` extra::\n\n $ pip install jira-metrics-extract[charting]\n\nThese dependencies are not installed by default because they can sometimes\nbe a bit tricky to install.\n\nUsing Docker\n------------\n\nIf you have Docker installed, you can run `jira-metrics-extract` as a docker image::\n\n $ docker run --rm -it -v \"$PWD\":/data optilude/jira-metrics-extract:latest --help\n\nThis will map the working directory (`/data`) of the containerised\napplication to the current working directory (`$PWD`). Any files you\nspecify on the command line (without any further path prefixes) will be\nread from or output to the current directory, e.g::\n\n $ docker run --rm -it -v \"$PWD\":/data myhomedir/jira-metrics-extract:latest config.yml cycle.csv\n\nConfiguration\n-------------\n\nWrite a YAML configuration file like so, calling it e.g. `config.yaml`::\n\n # How to connect to JIRA?\n Connection:\n domain: https://myserver.atlassian.net/\n username: myusername # If missing or and not in an environment var, you will be prompted at runtime\n password: secret # If missing or and not in an environment var, you will be prompted at runtime\n verify: False # If missing True is assumed.\n\n #Criteria:\n # Project:\n # - ATCM # JIRA project key. Can query across multiple projects, add additional rows.\n # Issue types: # Which issue types to include? - Delivery Story - Task - Bug\n # - Delivery Story\n # - Bug\n # Valid resolutions: # Which resolution statuses to include (unresolved is always included)\n # - SIGNED OFF\n # - DONE\n # JQL: fixVersion = \"ATCM Release 1.0\" and priority = Must AND status != Withdrawn\n # # Additional filter as raw JQL, optional eg labels != \"Spike\"\n\n #Criteria:\n # Project:\n # - ATCM # JIRA project key. Can query across multiple projects, add additional rows.\n # Issue types:\n # - Delivery Story\n # - NFR\n # Valid resolutions:\n # - SIGNED OFF\n # - DONE\n # JQL: fixVersion = \"ATCM Release 1.0\" \n\n # Compound query when work done by multiple teams as part of a larger programme.\n Queries:\n Attribute: ATCM\n Criteria:\n - Value: Team ATCM\n Project:\n - ATCM # JIRA project key. Can query across multiple projects, add additional rows.\n Issue types: # Which issue types to include? - Delivery Story - Task - Bug\n - Delivery Story\n - Bug\n Valid resolutions: # Which resolution statuses to include (unresolved is always included)\n - SIGNED OFF\n - DONE\n JQL: fixVersion = \"ATCM Release 1.0\" and priority = Must AND status != Withdrawn\n\n - Value: Team NFR\n Project:\n - ATCM # JIRA project key. Can query across multiple projects, add additional rows.\n Issue types: # Which issue types to include? - Delivery Story - Task - Bug\n - NFR\n Valid resolutions: # Which resolution statuses to include (unresolved is always included)\n - SIGNED OFF\n - DONE\n JQL: fixVersion = \"ATCM Release 1.0\" and priority = Must AND status != Withdrawn\n\n # Describe the workflow. Each step can be mapped to either a single JIRA\n # status, or a list of statuses that will be treated as equivalent\n # At least two steps are required. Specify the steps in order.\n\n Workflow:\n Open:\n - OPEN\n - To Do\n - New\n - Not Started\n - Parked\n Analysis:\n - REFINE\n - CANDIDATE FOR SPRINT\n - REFINE\n - Research\n Committed:\n - READY FOR SPRINT\n - Prioritised\n Develop:\n - Reopened\n - BUILD\n - DEVELOPMENT COMPLETE\n - READY FOR BPO SIGN OFF\n - BLOCKED\n - Awaiting review\n - In Progress\n - In review\n - Ready to Test\n - Awaiting Sign Off\n - In QA\n - Integrated\n - Reviewed\n - In Acceptance\n - Story Development\n - Doing\n Done:\n - BUILD TO RELEASE\n - HASS QA\n - READY FOR LIVE\n - DONE\n - Closed\n - Resolved\n - Signed Off\n\n # High level Actionable Agile Metrics approach to viewing work flow\n # Map key columns to open, backlog, committed, final, complete, abandoned\n Workflow StatusTypes Mapping:\n Open: open\n Analysis : backlog\n Committed : committed\n Develop : final\n Done : complete\n\n # Map field names to additional attributes to extract\n Attributes:\n #Components: Component/s\n #Priority: Priority\n Release: Fix version/s\n StoryPoints: Story Points\n Labels: labels\n\n #Known values:\n # Release:\n # - \"ABC Release 1.0\"\n\n # Additional parameters that can be overridden by command line options\n Max Results: 1000\n Quantiles:\n - 0.5\n - 0.85\n - 0.95\n # This could be date (e.g. 8th Aug 2016) or relative date as in example below\n Charts From: 1 month ago\n Charts To: today \n\nIf you are unfamiliar with YAML, remember that:\n\n* Comments start with `#`\n* Sections are defined with a name followed by a colon, and then an indented\n block underneath. `Connection`, `Criteria`, `Workflow` and `Attributes` area\n all sections in the example above.\n* Indentation has to use spaces, not tabs!\n* Single values can be set using `Key: value` pairs. For example,\n `Project: ABC` above sets the key `Project` to the value `ABC`.\n* Lists of values can be set by indenting a new block and placing a `-` in front\n of each list value. In the example above, the `Issue types` list contains\n the values `Story` and `Defect`.\n\nThe sections for `Connection`, `Criteria` and `Workflow` are required.\n\nUnder `Conection`, only `Domain` is required. If not specified, the script will\nlook for environment variables and if those are not found it will prompt for \nboth or either of username and password when run.\n\nUnder `Criteria`, all fields are technically optional, but you should specify\nat least some of them to avoid an unbounded query. `Issue types` and\n`Valid resolutions` can be set to either single values or lists.\n\nUnder `Workflow`, at least two steps are required. Specify the steps in order.\nYou may either specify a single workflow value or a list (as shown for `Done`\nabove), in which case multiple JIRA statuses will be collapsed into a single\nstate for analytics purposes.\n\nThe file, and values for things like workflow statuses and attributes, are case\ninsensitive.\n\nWhen specifying attributes, use the *name* of the field (as rendered on screen\nin JIRA), not its id (as you might do in JQL), so e.g. use `Component/s` not\n`components`.\n\nThe attributes `Type` (issue type), `Status` and `Resolution` are always\nincluded.\n\nWhen specifying fields like `Component/s` or `Fix version/s` that may have\nlists of values, only the first value set will be used.\n\nMultiple queries\n----------------\n\nIf it is difficult to construct a single set of criteria that returns all\nrequired issues, multiple `Criteria` sections can be wrapped into a `Queries`\nblock, like so::\n\n Queries:\n Attribute: Team\n Criteria:\n - Value: Team 1\n Project: ABC\n Issue types:\n - Story\n - Bug\n Valid resolutions:\n - Done\n - Closed\n JQL: Component = \"Team 1\"\n\n - Value: Team 2\n Project: ABC\n Issue types:\n - Story\n - Bug\n Valid resolutions:\n - Done\n - Closed\n JQL: Component = \"Team 2\"\n\nIn this example, the `Component` field in JIRA is being used to signify the team\ndelivering the work, but may also be used for other things. Two JIRA queries\nwill be run, corresponding to the two `Criteria` blocks.\n\nIn addition, a new column called `Team` will be added to the output, as\nspecified by the `Attribute` field under `Queries`. For all items returned by\nthe first query, the value will be `Team 1` as per the `Value` field, and for\nall items returned by the second query, it will be `Team 2`.\n\nMulti-valued fields\n-------------------\n\nSome fields in JIRA can contain multiple values, e.g. `fixVersion`. By default,\nthe extractor will use the first value in such a field if one is specified in\nthe `Attributes` block. However, you may want to extract only specific values.\n\nTo do so, add a block like the following::\n\n Attributes:\n Release: Fix version/s\n\n Known values:\n Release:\n - \"R01\"\n - \"R02\"\n - \"R03\"\n\nThe extractor will pick the first \"known value\" found for the field. If none of\nthe known values match, the cell will be empty.\n\nRunning\n-------\n\nTo produce the basic cycle time data, run `jira-metics-extract` passing the name\nof the YAML configuration file and the name of the output CSV file::\n\n $ jira-metrics-extract config.yaml data.csv\n\nThis will extract a CSV file called `data.csv` with cycle data based on the\nconfiguration in `config.yaml`, in a format compatible with the\nActionableAgile toolset.\n\nIf you prefer Excel files for manual analysis::\n\n $ jira-metrics-extract --format=xlsx config.yaml data.xlsx\n\nIf you prefer JSON::\n\n $ jira-metrics-extract --format=json config.yaml data.json\n\nThe JSON format can be loaded by the Actionable Agile Analytics tool if you\nself-host it and the single-page HTML file for the AAA tool and the JSON file\nare accessible from the same web server, via a URL parameter::\n\n http://myserver/analytics.html?url=data.json\n\nYou can specify a path or full URL, but due to same-origin request restrictions,\nyour browser is unlikely to let you load anything not served from the same\ndomain as the analytics web app itself.\n\n**Note:** When the `--format` is set, it applies to all files written, not\njust the main cyle data file (see other options below). It is important to be\nconsistent with the file extensions. In particular, if you are using the `xlsx`\nformat you should also make sure all output files use a `.xlsx` extension.\n\nThere are lots more options. See::\n\n $ jira-metrics-extract --help\n\nUse the `-v` option to print more information during the extract process.\n\nUse the `-n` option to limit the number of items fetched from JIRA, based on\nthe most recently updated issues. This is useful for testing the configuration\nwithout waiting for long downloads::\n\n $ jira-metrics-extract -v -n 10 config.yaml data.csv\n\nTo produce **Cumulative Flow Diagram statistics**, use the `--cfd` option::\n\n $ jira-metrics-extract --cfd cfd.csv config.yaml data.csv\n\nThis will yield a `cfd.csv` file with one row for each date, one column for each\nstep in the workflow, and a count of the number of issues in that workflow state\non that day. To plot a CFD, chart this data as a (non-stacked) area chart. You\nshould technically exclude the series in the first column if it represents the\nbacklog!\n\nTo produce **cycle time scatter plot statistics**, use the `--scatterplot` option::\n\n $ jira-metrics-extract --scatterplot scatterplot.csv config.yaml data.csv\n\nThis will yield a `scatterplot.csv` file with one row for each item that was\ncompleted (i.e. it reached the last workflow state), with columns giving the\ncompletion date and the number of days elapsed from the item entering the first\nactive state (i.e. the second step in the workflow, on the basis that the first\nitem represents a backlog or intake queue) to the item entering the completed\nstate. These two columns can be plotted as an X/Y scatter plot. Further columns\ncontain the dates of entry into each workflow state and the various issue\nmetadata to allow further filtering.\n\nTo be able to easily draw a **histogram** of the cycle time values, use the\n`--histogram` option::\n\n $ jira-metrics-extract --histogram histogram.csv config.yaml data.csv\n\nThis will yield a `histogram.csv` file with two columns: bin ranges and the\nnumber of items with cycle times falling within each bin. These can be charted\nas a column or bar chart.\n\nTo find out the 30th, 50th, 70th, 85th and 95th **percentile cycle time** values,\npass the `--percentiles` option::\n\n $ jira-metrics-extract --percentiles percentiles.csv config.yaml data.csv\n\nTo calculate different percentiles use the `--quantiles` option::\n\n $ jira-metrics-extract --percentiles percentiles.csv --quantiles=0.3,0.5,0.8 config.yaml data.csv\n\nNote that there should not be spaces between the commas!\n\nTo find out the **daily throughput** for the last 60 days, use the\n`--throughput` option::\n\n $ jira-metrics-extract --throughput throughput.csv config.yaml data.csv\n\nTo use a different time window, e.g. the last 90 days::\n\n $ jira-metrics-extract --throughput throughput.csv --throughput-window=90 config.yaml data.csv\n\nThe various options can be used in combination, and it is technically OK to\nskip the second positional (`data.csv`) parameter (in which case the file will\nnot be written).\n\nIf you have charting dependencies installed (see above), there are various\noptions available to allow you to draw **charts**, for example::\n\n $ jira-metrics-extract --charts-scatterplot=scatterplot.png config.yaml data.csv\n\nThe available charts are:\n\n* `--charts-scatterplot` to draw a **scatterplot** of cycle times, with percentile lines\n* `--charts-histogram` to draw a **histogram** of cycle times, with percentile lines\n* `--charts-cfd` to draw a **Cumulative Flow Diagram**\n* `--charts-throughput` to draw a daily **throughput bar chart**\n* `--charts-burnup` to draw a simple **burn-up** chart (completed item count vs. time)\n* `--charts-burnup-forecast` to draw a **burn-up chart with a Monte Carlo simulation**\n showing paths towards a completion target. The completion target will by default\n be the number of items in the backlog, but can be set explicitly with the\n `--charts-burnup-forecast-target` options. The simluation by default uses\n 100 trials. The number of trials can be set with the\n `--charts-burnup-forecast-trials` option. You can set a deadline marker with the\n `--charts-burnup-forecast-deadline` option, which should be set to a date. If\n you also set `--charts-burnup-forecast-deadline-confidence` to a fraction (e.g.\n `0.85`) it will be used to find a confidence interval in the simulation to which\n the deadline will be compared.\n* `--charts-wip` to draw a **WIP boxplot** showing min, max, median and mean WIP\n by week. By default, this will show the last 5 or 6 weeks' of data (depending\n on the weekday). You can change this with the `--charts-wip-window` parameter,\n set to a number of weeks.\n* `--charts-ageing-wip` to draw an **ageing WIP chart**: a scatter plot of current\n cycle time against state in the cycle, i.e. how items are trending towards completion.\n* `--charts-net-flow` to show a bar chart of the **weekly net flow**:\n departures - arrivals. By default, this will show the last 5 or 6 weeks' of\n data (depending on the weekday). You can change this with the\n `--charts-net-flow-window` parameter, set to a number of weeks.\n\nAlso note: all the `--charts-*` options have a corresponding `--charts-*-title`\noption that can be used to set a title for the chart.\n\nFinally, to limit the date range of the data shown in the charts, you can use the\noptions `--charts-from` and `--charts-to` to specify a starting and/or ending \ndate (inclusive). Both are optional.\n\nTroubleshooting\n---------------\n\n* If Excel complains about a `SYLK` format error, ignore it. Click OK. See\n https://support.microsoft.com/en-us/kb/215591.\n* JIRA error messages may be printed out as HTML in the console. The error is\n in there somewhere, but may be difficult to see. Most likely, this is either\n an authentication failure (incorrect username/password or blocked account),\n or an error in the `Criteria` section resulting in invalid JQL.\n* If you aren't getting the issues you expected to see, use the `-v` option to\n see the JQL being sent to JIRA. Paste this into the JIRA issue filter search\n box (\"Advanced mode\") to see how JIRA evaluates it.\n* Old workflow states can still be part of an issue's history after a workflow\n has been modified. Use the `-v` option to find out about workflow states that\n haven't been mapped.\n* Excel sometimes picks funny formats for data in CSV files. Just set them to\n whatever makes sense.\n* If you are on a Mac and you get an error about Python not being installed as\n a framework, try to create a file `~/.matplotlib/matplotlibrc` with the\n following contents::\n\n backend : Agg\n* To install the charting dependencies on a Mac, you probably need to install a\n `gfortran` compiler for `scipy`. Use Homebrew (http://brew.sh) and install the\n `gcc` brew.\n\nAd-hoc analysis\n---------------\n\nSometimes, you may want to perform more exploratory, ad-hoc analysis of the\ncycle data. `jira-metrics-extract` uses Python Pandas (http://pandas.pydata.org)\nto do most of its heavy lifting, and Pandas provides a rich environment for\ndata science.\n\nThe Jupyter Notebook (http://jupyter.org) is a popular way to conduct\ninteractive, ad-hoc analysis using Pandas (and more!).\n\nIf you have this running, here's an example of a notebook that uses\n`jira-cycle-extract` to query JIRA with a given YAML file configuration and\nmakes the data available for further analysis::\n\n import getpass\n import datetime\n\n import pandas as pd\n import numpy as np\n import matplotlib.pyplot as plt\n import matplotlib as mpl\n import seaborn as sns\n\n from jira import JIRA\n from jira_metrics_extract import cycletime, config\n\n # Print charts in the notebook, using retina graphics\n %matplotlib inline\n %config InlineBackend.figure_format = 'retina'\n sns.set_context(\"talk\")\n\n # Prompt for JIRA username, password and config file:\n username = raw_input(\"Username:\")\n password = getpass.getpass(\"Password:\")\n config_filename = raw_input(\"Config file:\")\n\n # Parse options\n options = {}\n with open(config_filename) as config_file:\n options = config.config_to_options(config_file.read())\n\n # Connect to JIRA\n jira = JIRA(options={'server': options['connection']['domain']}, basic_auth=(username, password))\n\n # Fetch issues and calculate cycle data as a Pandas DataFrame\n q = cycletime.CycleTimeQueries(jira, **options['settings'])\n cycle_data = q.cycle_data(verbose=False)\n\n # Calculate other DataFrames for CFD, scatterplot, histogram, percentile and throughput data\n cfd_data = q.cfd(cycle_data)\n scatter_data = q.scatterplot(cycle_data)\n histogram_data = q.histogram(cycle_data)\n quantiles=[.5,.85,.95]\n percentile_data = q.percentiles(cycle_data, percentiles=quantiles)\n daily_throughput_data = q.throughput_data(cycle_data[cycle_data])\n\nYou can now do all kinds of analysis on the DataFrames (`cycle_data`, `cfd_data`\nand so on).", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/rnwolf/jira-metrics-extract/archive/{0}.tar.gz\".format(version),", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/rnwolf/jira-metrics-extract", "keywords": "agile metrics jira analytics kanban cfd", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "jira-metrics-extract", "package_url": "https://pypi.org/project/jira-metrics-extract/", "platform": "", "project_url": "https://pypi.org/project/jira-metrics-extract/", "project_urls": { "Download": "https://github.com/rnwolf/jira-metrics-extract/archive/{0}.tar.gz\".format(version),", "Homepage": "https://github.com/rnwolf/jira-metrics-extract" }, "release_url": "https://pypi.org/project/jira-metrics-extract/0.53/", "requires_dist": null, "requires_python": "", "summary": "Extract agile metrics data from JIRA", "version": "0.53" }, "last_serial": 3849601, "releases": { "0.12": [ { "comment_text": "", "digests": { "md5": "7ca5b753c3074d3d56bb5cdc57254381", "sha256": "629fa22dd7aaeb6f76dffee411732f896814b19f1f293a25e9541c1df2a9b874" }, "downloads": -1, "filename": "jira_metrics_extract-0.12-py2-none-any.whl", "has_sig": false, "md5_digest": "7ca5b753c3074d3d56bb5cdc57254381", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 57013, "upload_time": "2016-10-27T13:51:54", "url": "https://files.pythonhosted.org/packages/39/be/dbd6905e03986f59c69022222e10d6899341b0fb8df72208f26940cc7f70/jira_metrics_extract-0.12-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "616c8486c837e58391a28dc0bdf44546", "sha256": "6e27a0f6d2ac51b8bc3d178b76c8fccf23a4f8ed6120abb2ca2d2773dd68b49b" }, "downloads": -1, "filename": "jira-metrics-extract-0.12.tar.gz", "has_sig": false, "md5_digest": "616c8486c837e58391a28dc0bdf44546", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39476, "upload_time": "2016-10-27T13:51:57", "url": "https://files.pythonhosted.org/packages/67/05/361d93833e288ebc3ef5a86bfbec78701191931f8a4a0618231d01292fca/jira-metrics-extract-0.12.tar.gz" } ], "0.13": [ { "comment_text": "", "digests": { "md5": "f882feb282295d926fb233de5f07e121", "sha256": "ce0a03ee9dad01e7e51c16688fa5102eac5a9a66fae0567a06685e22fad03a36" }, "downloads": -1, "filename": "jira_metrics_extract-0.13-py3-none-any.whl", "has_sig": false, "md5_digest": "f882feb282295d926fb233de5f07e121", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41393, "upload_time": "2016-10-31T15:53:30", "url": "https://files.pythonhosted.org/packages/a1/72/5385434a1090fcccd8fc8d43df9a02aff823dc4cd193867a016d8272befe/jira_metrics_extract-0.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f5f94f6bc9538f01fa7eaf872e1f216", "sha256": "8012558f1c14068a8443e1ffb7d7776d55a2001c575c508505d03b0dfa2097c5" }, "downloads": -1, "filename": "jira-metrics-extract-0.13.tar.gz", "has_sig": false, "md5_digest": "4f5f94f6bc9538f01fa7eaf872e1f216", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40216, "upload_time": "2016-10-31T15:53:33", "url": "https://files.pythonhosted.org/packages/44/85/a63eb6a408e6fd93eda7d4754514fd66bc461b143fee5afc0d9677be1b84/jira-metrics-extract-0.13.tar.gz" } ], "0.14": [ { "comment_text": "", "digests": { "md5": "ff8b3c53da115fccc1e100ebbd0694f4", "sha256": "9f086e964e0668ab0ce23e46a80b411425ba78555b61ce5e574b572078b55c9e" }, "downloads": -1, "filename": "jira_metrics_extract-0.14-py3-none-any.whl", "has_sig": false, "md5_digest": "ff8b3c53da115fccc1e100ebbd0694f4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41452, "upload_time": "2016-11-17T07:12:36", "url": "https://files.pythonhosted.org/packages/19/74/5176519c5f550f4afe0633e6fb1a5725d25cf084e70607ecc1ec63ceee8b/jira_metrics_extract-0.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8f9453a3a273ce60493f113fe1312691", "sha256": "e09d049d90bd73437605bb7a2cf1e0384079501418850f956530c2ff73bdb7ed" }, "downloads": -1, "filename": "jira-metrics-extract-0.14.tar.gz", "has_sig": false, "md5_digest": "8f9453a3a273ce60493f113fe1312691", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40313, "upload_time": "2016-11-17T07:12:40", "url": "https://files.pythonhosted.org/packages/f4/0f/787ffe45f9bd7a60a4d017ca4945299c1eefd77768a4392b92a8fc2ccc66/jira-metrics-extract-0.14.tar.gz" } ], "0.15": [ { "comment_text": "", "digests": { "md5": "98e543dc1a1a945a4cbc95ec03871590", "sha256": "1b797e7f367d4e5299360416ccdb7f51ba26a0f01b79e11d31d9efe9ae266775" }, "downloads": -1, "filename": "jira_metrics_extract-0.15-py3-none-any.whl", "has_sig": false, "md5_digest": "98e543dc1a1a945a4cbc95ec03871590", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41729, "upload_time": "2016-11-22T07:09:20", "url": "https://files.pythonhosted.org/packages/d7/8d/96b0188a190b52b8fc27783a007052ed21d4ef6de4bd3a399f4607dd5e6a/jira_metrics_extract-0.15-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "648bcff1e0d9148d0b3ed572eefad1af", "sha256": "64563c11db9ee5c302689e2b0cc82a1854c0f9db4665b6ed5f4c1964acd29a41" }, "downloads": -1, "filename": "jira-metrics-extract-0.15.tar.gz", "has_sig": false, "md5_digest": "648bcff1e0d9148d0b3ed572eefad1af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40591, "upload_time": "2016-11-22T07:09:22", "url": "https://files.pythonhosted.org/packages/9b/64/419423fb8a6a6930388503b3ed266f98400a5d54f8d45438c8109224fae9/jira-metrics-extract-0.15.tar.gz" } ], "0.16": [ { "comment_text": "", "digests": { "md5": "895d9aaa601276ac0c62db3f2f767215", "sha256": "d16902dbe377b2f8193748e440fdc3e78975b888dd44b838dc3984526ed7a57f" }, "downloads": -1, "filename": "jira_metrics_extract-0.16-py3-none-any.whl", "has_sig": false, "md5_digest": "895d9aaa601276ac0c62db3f2f767215", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42984, "upload_time": "2016-11-25T07:14:07", "url": "https://files.pythonhosted.org/packages/66/4f/ea632c1cbd0093780bbb0951c80a1e318b7d2880027babd1bd916613d49e/jira_metrics_extract-0.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0525cfb9de12a07e34fbc7f02a6f2202", "sha256": "fa053ab8e7067c098363582bce5a1c693ee4c6109298600fe20678bb2a261dfc" }, "downloads": -1, "filename": "jira-metrics-extract-0.16.tar.gz", "has_sig": false, "md5_digest": "0525cfb9de12a07e34fbc7f02a6f2202", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41878, "upload_time": "2016-11-25T07:14:09", "url": "https://files.pythonhosted.org/packages/6e/b5/fbb44de2204c5757588203661b4fe71f26faa0f81e41544c286a38be533e/jira-metrics-extract-0.16.tar.gz" } ], "0.17": [ { "comment_text": "", "digests": { "md5": "cf59b8874aa8b17dc85400f7a2be1ec8", "sha256": "43fc0f58f08c5feca15bd245c80cfa574361678e4269197752eda83b51cb1294" }, "downloads": -1, "filename": "jira_metrics_extract-0.17-py3-none-any.whl", "has_sig": false, "md5_digest": "cf59b8874aa8b17dc85400f7a2be1ec8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43321, "upload_time": "2016-11-29T11:15:28", "url": "https://files.pythonhosted.org/packages/1a/55/66aa576d5bef8a51acf3c63ea06440d1a9dc35aa3ca616516e63c18ade7b/jira_metrics_extract-0.17-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a308789b26545ed5b28255403f245cde", "sha256": "308c4c1daba5202a12db7f68534493c5eaae5bee8c7ae8721416c27bcd46685e" }, "downloads": -1, "filename": "jira-metrics-extract-0.17.tar.gz", "has_sig": false, "md5_digest": "a308789b26545ed5b28255403f245cde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42191, "upload_time": "2016-11-29T11:15:30", "url": "https://files.pythonhosted.org/packages/db/75/9de1a30a7b947f4f29153d3d5f3b68f1ad89b0a328f6b445eedbcde26ed9/jira-metrics-extract-0.17.tar.gz" } ], "0.18": [ { "comment_text": "", "digests": { "md5": "9e40674b110cdb2ae86c1c572d18e59b", "sha256": "d5e757c2f032df5e124fe87c32d8ed8be615e6ed678a21e2e352c0ab1aeccf56" }, "downloads": -1, "filename": "jira_metrics_extract-0.18-py3-none-any.whl", "has_sig": false, "md5_digest": "9e40674b110cdb2ae86c1c572d18e59b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43389, "upload_time": "2016-12-04T21:06:08", "url": "https://files.pythonhosted.org/packages/00/16/a9e30d3c47e7fe6ed5b2528cb7b4ea922247b37f94172896eda5b2e1dc2c/jira_metrics_extract-0.18-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2f52b53a4f0378c4b597433ca4bc07a4", "sha256": "09af19a9a7dd89d5be127231b21b2f27543a197c13f8768579f822f4bcf838eb" }, "downloads": -1, "filename": "jira-metrics-extract-0.18.tar.gz", "has_sig": false, "md5_digest": "2f52b53a4f0378c4b597433ca4bc07a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42298, "upload_time": "2016-12-04T21:06:10", "url": "https://files.pythonhosted.org/packages/98/9a/379c6bd724c011cca946e7e2276f546c8ff3307c8286ce6b32a73c2db6f6/jira-metrics-extract-0.18.tar.gz" } ], "0.19": [ { "comment_text": "", "digests": { "md5": "b16faeb730a69c76d87f9cb527d0f9dd", "sha256": "91a503a815fee3f14a498dfb03bbcfa4e78457f31d37175641264ce9d588e80a" }, "downloads": -1, "filename": "jira_metrics_extract-0.19-py3-none-any.whl", "has_sig": false, "md5_digest": "b16faeb730a69c76d87f9cb527d0f9dd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43440, "upload_time": "2016-12-14T08:49:34", "url": "https://files.pythonhosted.org/packages/79/31/182d35cf40b15037fe3ae4a47a89f17ab3ab8b5a3ed0d441b5e45e2bfa44/jira_metrics_extract-0.19-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f7f49712a4323990be4deecac6bf0e6", "sha256": "e4cf268f7686479f3778bb73a0abf21cb3a76c9c956c8f56a9f1e4b1bc60a3f9" }, "downloads": -1, "filename": "jira-metrics-extract-0.19.tar.gz", "has_sig": false, "md5_digest": "4f7f49712a4323990be4deecac6bf0e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42313, "upload_time": "2016-12-14T08:49:36", "url": "https://files.pythonhosted.org/packages/74/2f/ad3e3ecfaa4c800436a8db95f55e1d455a9fd5181ea95638c291becbddc9/jira-metrics-extract-0.19.tar.gz" } ], "0.20": [ { "comment_text": "", "digests": { "md5": "61edd38f4597b76dc3f7cc3d4011ab99", "sha256": "dd2d5a99dc65939ff5ae97eead71d653a32abe02d34d632c7d8f7f2f41fd4c59" }, "downloads": -1, "filename": "jira_metrics_extract-0.20-py3-none-any.whl", "has_sig": false, "md5_digest": "61edd38f4597b76dc3f7cc3d4011ab99", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43501, "upload_time": "2017-01-18T08:35:47", "url": "https://files.pythonhosted.org/packages/de/a4/beceb3ce0c42ee622c824de6ddec629248f2d3ef479a810184c20649b172/jira_metrics_extract-0.20-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f1cb4ec8dd7b21dd4949e1d80f201937", "sha256": "f6f7c933e45efb1da5ad3679fd1add5f3e2b009b62b26335529104028131dbf4" }, "downloads": -1, "filename": "jira-metrics-extract-0.20.tar.gz", "has_sig": false, "md5_digest": "f1cb4ec8dd7b21dd4949e1d80f201937", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42387, "upload_time": "2017-01-18T08:35:49", "url": "https://files.pythonhosted.org/packages/4d/d8/36bee09dea7fcfcc4a9b19efda7bd0cf9635d0a3c5097cff0a25d3a24d2e/jira-metrics-extract-0.20.tar.gz" } ], "0.21": [ { "comment_text": "", "digests": { "md5": "3bc3c4e8fd7e307c5ae4ff1a2edb0da0", "sha256": "9a0b0b94fc6673f11baf1bc7928c8ffc73950c7f9458c342611d6c83c649c500" }, "downloads": -1, "filename": "jira_metrics_extract-0.21-py3-none-any.whl", "has_sig": false, "md5_digest": "3bc3c4e8fd7e307c5ae4ff1a2edb0da0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43649, "upload_time": "2017-01-18T15:44:57", "url": "https://files.pythonhosted.org/packages/c6/78/f261c49420abc30108840e2a30c1200db7a62bc5d6dd5f1d415df0e55c06/jira_metrics_extract-0.21-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f8919f8fb6b3664ea9395a83565d44c7", "sha256": "5b3781f9d1f647caf669a59f6412a0d323e46d28dc37c0cbd5c8c6091760bcca" }, "downloads": -1, "filename": "jira-metrics-extract-0.21.tar.gz", "has_sig": false, "md5_digest": "f8919f8fb6b3664ea9395a83565d44c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42513, "upload_time": "2017-01-18T15:44:59", "url": "https://files.pythonhosted.org/packages/0e/88/f7da890e3f072a81f86c90960f289ed1dfe31456cdf0fcffc89aaa5b573a/jira-metrics-extract-0.21.tar.gz" } ], "0.22": [ { "comment_text": "", "digests": { "md5": "8a5ecf626c2d91b1262d5098e336be9d", "sha256": "c9270e84d060f0e2026622952f0226bbbc58e43a1f92a840ecaa66e5ca04e085" }, "downloads": -1, "filename": "jira_metrics_extract-0.22-py3-none-any.whl", "has_sig": false, "md5_digest": "8a5ecf626c2d91b1262d5098e336be9d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43720, "upload_time": "2017-01-19T08:36:06", "url": "https://files.pythonhosted.org/packages/cc/5c/1b656fa968e0dc3ae4d979aa0b720a9120e73c7ddf6a60ddc73ce7322f1e/jira_metrics_extract-0.22-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6e5d0c75bc01a638108c9c52c6c9ad6c", "sha256": "d0f62d023dd97cbce1cf0223d50c5e4b794c67656fa165efeea4f4bd65829c23" }, "downloads": -1, "filename": "jira-metrics-extract-0.22.tar.gz", "has_sig": false, "md5_digest": "6e5d0c75bc01a638108c9c52c6c9ad6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42585, "upload_time": "2017-01-19T08:36:08", "url": "https://files.pythonhosted.org/packages/44/23/126ba564f2a4bf49f39579ff4186c7ee24d7c406504bfbd7a339e9abb86f/jira-metrics-extract-0.22.tar.gz" } ], "0.23": [ { "comment_text": "", "digests": { "md5": "45980853643d713b2e00b7d21195f225", "sha256": "41884ba0fd0d8bd4a73416fc588380ff2e47d0b6237e1bded985bc54b31e7633" }, "downloads": -1, "filename": "jira_metrics_extract-0.23-py3-none-any.whl", "has_sig": false, "md5_digest": "45980853643d713b2e00b7d21195f225", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43821, "upload_time": "2017-01-19T11:17:40", "url": "https://files.pythonhosted.org/packages/48/7a/dbfc67232bd175492937c9a1dc2f5a24b477bd609e2dbcd63f7ac598011b/jira_metrics_extract-0.23-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ebcb291e2c64b5f382e6ab086e33c334", "sha256": "6516d0f27f819cdb7ab744927dfd882cf66ac6ab70e549691546aa33c0a012de" }, "downloads": -1, "filename": "jira-metrics-extract-0.23.tar.gz", "has_sig": false, "md5_digest": "ebcb291e2c64b5f382e6ab086e33c334", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42787, "upload_time": "2017-01-19T11:17:42", "url": "https://files.pythonhosted.org/packages/2f/b3/971765a1a6e089b4f73854f0ce37e04751b2a270a7efda0231e2e94bb4c3/jira-metrics-extract-0.23.tar.gz" } ], "0.24": [ { "comment_text": "", "digests": { "md5": "19ffee0fb94b4f70fb8f100303a5dd9b", "sha256": "5fabaf49401a5133a2376d831226f60e2061dbbf769f676e13e8966033883f5c" }, "downloads": -1, "filename": "jira_metrics_extract-0.24-py3-none-any.whl", "has_sig": false, "md5_digest": "19ffee0fb94b4f70fb8f100303a5dd9b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44005, "upload_time": "2017-02-02T11:24:53", "url": "https://files.pythonhosted.org/packages/2f/29/143947729edd672c2939ae53b62482f23ff2808607e3053466f218314518/jira_metrics_extract-0.24-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7e019dc40ef0d647dc388eb8d5e0e2ae", "sha256": "c5fc0e4f9bbc9f000f57ce895619e569aa2c50932c215f6d9c0ab4ece12e1971" }, "downloads": -1, "filename": "jira-metrics-extract-0.24.tar.gz", "has_sig": false, "md5_digest": "7e019dc40ef0d647dc388eb8d5e0e2ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43475, "upload_time": "2017-02-02T11:24:55", "url": "https://files.pythonhosted.org/packages/b7/77/fa3684caf12c8f16526bdeed18a3e0fdd753c129a2706551f469a57aa2f5/jira-metrics-extract-0.24.tar.gz" } ], "0.25": [ { "comment_text": "", "digests": { "md5": "a86bfb22f4686a4636c13fcc753e114b", "sha256": "25c70f2761016b09db3ac131d57ef3b3cf69e947ef9b7ae5a7057f68c2252f4a" }, "downloads": -1, "filename": "jira_metrics_extract-0.25-py3-none-any.whl", "has_sig": false, "md5_digest": "a86bfb22f4686a4636c13fcc753e114b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44024, "upload_time": "2017-03-16T06:26:45", "url": "https://files.pythonhosted.org/packages/1f/de/7b4a0e56b9cc05d333f1f545320c4708bd4e8da2b8e215a9c1c45ea7c736/jira_metrics_extract-0.25-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e68e6ec0c63adf381deb26a0a20deedb", "sha256": "23642ea9bc1b0fc27560f369f16d6a5f3891832c997d9e7f3af1c8856b9813d2" }, "downloads": -1, "filename": "jira-metrics-extract-0.25.tar.gz", "has_sig": false, "md5_digest": "e68e6ec0c63adf381deb26a0a20deedb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43411, "upload_time": "2017-03-16T06:26:47", "url": "https://files.pythonhosted.org/packages/18/7c/98e9076f6b705155fb0b1ef44a2bbd0afa44dabf2f0086af73078ea6b22e/jira-metrics-extract-0.25.tar.gz" } ], "0.27": [ { "comment_text": "", "digests": { "md5": "ccde69ee2a671c1906fa7424a4ee4c77", "sha256": "216e226a22f1aa94e9c628b582cc99c37745534b580215e15cc6b20f863d5ff1" }, "downloads": -1, "filename": "jira_metrics_extract-0.27-py3-none-any.whl", "has_sig": false, "md5_digest": "ccde69ee2a671c1906fa7424a4ee4c77", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44465, "upload_time": "2017-05-17T05:28:58", "url": "https://files.pythonhosted.org/packages/32/6c/7461abf98b94194419f4836d09f3fc171dcdbea194bacbb26a442ebb5ba0/jira_metrics_extract-0.27-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a48005b79a9d31553319454485198c46", "sha256": "5fdb289f965ed2c730d347dc2e83fda615892ba5bcf4da04e59ffaddb7e1a590" }, "downloads": -1, "filename": "jira-metrics-extract-0.27.tar.gz", "has_sig": false, "md5_digest": "a48005b79a9d31553319454485198c46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43897, "upload_time": "2017-05-17T05:29:00", "url": "https://files.pythonhosted.org/packages/65/f1/3632df81de51cbca83ce856778cacb32527f85353ef12e83f6c42f2260fa/jira-metrics-extract-0.27.tar.gz" } ], "0.28": [ { "comment_text": "", "digests": { "md5": "868292672009b30091ddfa67d1e46ade", "sha256": "324d575ef85c9ab4c4bf8275f6c6a8863465b92393c2c6cb0b5c73004bbfa330" }, "downloads": -1, "filename": "jira_metrics_extract-0.28-py3-none-any.whl", "has_sig": false, "md5_digest": "868292672009b30091ddfa67d1e46ade", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44705, "upload_time": "2017-05-19T12:58:01", "url": "https://files.pythonhosted.org/packages/a9/93/737958112c5c40481452d55028b8a7b7d3e7f17eed0ec932f8abff210107/jira_metrics_extract-0.28-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "68a7377d7d7628990dce92b6f69a35e2", "sha256": "78d3215fafda9598ab976c55cfa008df09475e90970ce7be8b79720061f64058" }, "downloads": -1, "filename": "jira-metrics-extract-0.28.tar.gz", "has_sig": false, "md5_digest": "68a7377d7d7628990dce92b6f69a35e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44804, "upload_time": "2017-05-19T12:58:04", "url": "https://files.pythonhosted.org/packages/8f/14/6053e203bc809e95e71b4a902d116c98d5d545c8516ba09aaba35cb9ab2f/jira-metrics-extract-0.28.tar.gz" } ], "0.29": [ { "comment_text": "", "digests": { "md5": "cfc4804c077c7a5acdf913e9a6507b3d", "sha256": "8145ad7f225f52ca34e0d5e35105b267ba9862ada11292c51589be1c667ecb9f" }, "downloads": -1, "filename": "jira_metrics_extract-0.29-py3-none-any.whl", "has_sig": false, "md5_digest": "cfc4804c077c7a5acdf913e9a6507b3d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44745, "upload_time": "2017-05-19T13:19:38", "url": "https://files.pythonhosted.org/packages/da/63/3bb6fa8c0464f9660d3f0703830d39d5fecd8f32c8de158cd45e6c820537/jira_metrics_extract-0.29-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9ceacb69e455179d0f834dac999d8c13", "sha256": "19cfd68ea62f0018629ba61703dd876d652ce63dce55be0f3fc19a62f4fbc394" }, "downloads": -1, "filename": "jira-metrics-extract-0.29.tar.gz", "has_sig": false, "md5_digest": "9ceacb69e455179d0f834dac999d8c13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44850, "upload_time": "2017-05-19T13:19:41", "url": "https://files.pythonhosted.org/packages/5c/d0/bf16a72775f615b25af7d600383abd050eee89a7bbf0a895eb6029e8ab0f/jira-metrics-extract-0.29.tar.gz" } ], "0.30": [ { "comment_text": "", "digests": { "md5": "15a8207d6e973cab9ceb96a41457665c", "sha256": "c62fd014ef0bb75a40d4f514553bf514e94c6e7fa5b6e480da3085ca21040cfa" }, "downloads": -1, "filename": "jira_metrics_extract-0.30-py3-none-any.whl", "has_sig": false, "md5_digest": "15a8207d6e973cab9ceb96a41457665c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45009, "upload_time": "2017-06-13T15:24:25", "url": "https://files.pythonhosted.org/packages/a4/8c/7f94b17c48c8fc308d9cf74e15602b92a746384b03f45b53e07ef624d3d4/jira_metrics_extract-0.30-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "088baa7888536263f1445293378671b3", "sha256": "be9ac9fc4c8c85d83be914ad0573708294cffc2c4332a52ee21814e14a7381b0" }, "downloads": -1, "filename": "jira-metrics-extract-0.30.tar.gz", "has_sig": false, "md5_digest": "088baa7888536263f1445293378671b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45153, "upload_time": "2017-06-13T15:24:27", "url": "https://files.pythonhosted.org/packages/f3/64/301a1d6f865f97b434b5e08b117482b200821dbdf9522c52ce015d5649c6/jira-metrics-extract-0.30.tar.gz" } ], "0.31": [ { "comment_text": "", "digests": { "md5": "39c83fef77933e6cfd8ed73a23845fbe", "sha256": "18b31a4e994bc47e7b20ad97a8e51a2b9c3074eecc7c0a0c27827a7634f19b89" }, "downloads": -1, "filename": "jira_metrics_extract-0.31-py3-none-any.whl", "has_sig": false, "md5_digest": "39c83fef77933e6cfd8ed73a23845fbe", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45081, "upload_time": "2017-06-24T20:45:38", "url": "https://files.pythonhosted.org/packages/22/03/594f91fe7f4b2508787798bd5fc63bc11a6491cb4941856280bcc4e5d788/jira_metrics_extract-0.31-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0fe7a682b32b0fa8b6d2f4a5b6bca15a", "sha256": "a7882f2e84261e0877bebfa6783b6566944326b820efbcf6604358252b87836d" }, "downloads": -1, "filename": "jira-metrics-extract-0.31.tar.gz", "has_sig": false, "md5_digest": "0fe7a682b32b0fa8b6d2f4a5b6bca15a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45098, "upload_time": "2017-06-24T20:45:41", "url": "https://files.pythonhosted.org/packages/fe/bc/b18477d17aeae541f6e67bcaa500d19cf7fe7506cf1607322b9062d341f2/jira-metrics-extract-0.31.tar.gz" } ], "0.32": [ { "comment_text": "", "digests": { "md5": "520b88cc4e53cb2982f3b316f006bb4e", "sha256": "7b4e37800f8cb964f76821c5d49a0ac66f1b10f8951b881d10ea753836658086" }, "downloads": -1, "filename": "jira_metrics_extract-0.32-py3-none-any.whl", "has_sig": false, "md5_digest": "520b88cc4e53cb2982f3b316f006bb4e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45144, "upload_time": "2017-06-24T21:18:14", "url": "https://files.pythonhosted.org/packages/b4/65/b25369bb5d4e78a92fea016ebe52b240be46c9a2668de83c7b1f87f101e1/jira_metrics_extract-0.32-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "06aad8eab1f29bdf9e491f34d8a3d760", "sha256": "b481a1cdbc89190f48e35758cab4e22d85aee494e6321141e10c0786823daf70" }, "downloads": -1, "filename": "jira-metrics-extract-0.32.tar.gz", "has_sig": false, "md5_digest": "06aad8eab1f29bdf9e491f34d8a3d760", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45177, "upload_time": "2017-06-24T21:18:16", "url": "https://files.pythonhosted.org/packages/18/8e/c8ed072a4fe702e02478338f778c96a98d6e30cb2cd445c91d941a5b0eca/jira-metrics-extract-0.32.tar.gz" } ], "0.33": [ { "comment_text": "", "digests": { "md5": "d35fdbeaf67376009d45f26627ce36b9", "sha256": "e5cd9b18ec81561078f69e9bd30df10fde0a52553adc49b066f6c1e5dcc3639e" }, "downloads": -1, "filename": "jira_metrics_extract-0.33-py3-none-any.whl", "has_sig": false, "md5_digest": "d35fdbeaf67376009d45f26627ce36b9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45224, "upload_time": "2017-06-24T21:26:37", "url": "https://files.pythonhosted.org/packages/75/fb/575af2895860c3ecbc43c0633642c376c4fdfe31f0584785b114c349b9fa/jira_metrics_extract-0.33-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fda8062cb9815475a502572d7f1ab398", "sha256": "c76f2e17f7227d771721464bff3ee127431b1064f8d122a7bd373e81a556bd61" }, "downloads": -1, "filename": "jira-metrics-extract-0.33.tar.gz", "has_sig": false, "md5_digest": "fda8062cb9815475a502572d7f1ab398", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45250, "upload_time": "2017-06-24T21:26:40", "url": "https://files.pythonhosted.org/packages/3b/83/87fffb6f310e4695b35b58c5e28b59dbc73a9cd62227ff41a2a1d39c21cf/jira-metrics-extract-0.33.tar.gz" } ], "0.34": [ { "comment_text": "", "digests": { "md5": "1524a8089a7863572f841af10204a301", "sha256": "3816086abec6c3d8835c279a070a8715d628247e37b5ea4b19ca9a83ca501973" }, "downloads": -1, "filename": "jira_metrics_extract-0.34-py3-none-any.whl", "has_sig": false, "md5_digest": "1524a8089a7863572f841af10204a301", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45314, "upload_time": "2017-06-24T22:07:30", "url": "https://files.pythonhosted.org/packages/17/57/81965ef41b5989317cef5e3262f0e4d9dd626a7214a3a313938b9e383100/jira_metrics_extract-0.34-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4612fcea53fb13756abed319a7ecdec5", "sha256": "cbe54adde33d8075eb59c3cf16ff5083285e5f186a9194db16000b4fd8b7b5f5" }, "downloads": -1, "filename": "jira-metrics-extract-0.34.tar.gz", "has_sig": false, "md5_digest": "4612fcea53fb13756abed319a7ecdec5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45356, "upload_time": "2017-06-24T22:07:32", "url": "https://files.pythonhosted.org/packages/79/35/c20603cdccce042843b0e67faf100d3f89dd5d5d3feddb72a680e6b792ae/jira-metrics-extract-0.34.tar.gz" } ], "0.35": [ { "comment_text": "", "digests": { "md5": "590ad5a4f9493489b0765a332aac298e", "sha256": "e72db5bbccb7fb9d21b03c1a2f72462c22a1ecba05272ff9596de1acf04d9eec" }, "downloads": -1, "filename": "jira_metrics_extract-0.35-py3-none-any.whl", "has_sig": false, "md5_digest": "590ad5a4f9493489b0765a332aac298e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45366, "upload_time": "2017-06-24T22:30:17", "url": "https://files.pythonhosted.org/packages/33/c2/480413c7ce64d56363d7cc1e32f4493ef042cee05e46c82985e8be75871c/jira_metrics_extract-0.35-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "50ab0b21c21a790c84f6a5d5a1a3eb08", "sha256": "5882f6e681479efbe0b21003896e118a3e12b30d3ee3f436e20db07bb16313cc" }, "downloads": -1, "filename": "jira-metrics-extract-0.35.tar.gz", "has_sig": false, "md5_digest": "50ab0b21c21a790c84f6a5d5a1a3eb08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46150, "upload_time": "2017-06-24T22:30:20", "url": "https://files.pythonhosted.org/packages/d0/8d/c91570e03a86d9634b8262f5316101498f8b48ba0bdea75933b89e8f33c0/jira-metrics-extract-0.35.tar.gz" } ], "0.36": [ { "comment_text": "", "digests": { "md5": "2235c53e845c0e973bb1b964bea24421", "sha256": "e0ec91b8fceb809ec68c4f8a3eda72cc074d5c317de99eac14ff884764cb5058" }, "downloads": -1, "filename": "jira_metrics_extract-0.36-py3-none-any.whl", "has_sig": false, "md5_digest": "2235c53e845c0e973bb1b964bea24421", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45439, "upload_time": "2017-06-24T22:45:33", "url": "https://files.pythonhosted.org/packages/b4/70/26e7da2a34bf8f1eed6959eabb16b77cefcf36343508fdd5bdd7d2c3c904/jira_metrics_extract-0.36-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9db1a591b0a82dff02756396d5f6047b", "sha256": "7ab656fbbc238549cbd70dda769e92d9555ed73e5b54ee39edf9c8e0b7efe99f" }, "downloads": -1, "filename": "jira-metrics-extract-0.36.tar.gz", "has_sig": false, "md5_digest": "9db1a591b0a82dff02756396d5f6047b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46238, "upload_time": "2017-06-24T22:45:35", "url": "https://files.pythonhosted.org/packages/b7/14/461c5d223739e37aaf07d5b5edebc04e5481834f5004e4d203fc26346391/jira-metrics-extract-0.36.tar.gz" } ], "0.37": [ { "comment_text": "", "digests": { "md5": "419486159d2af802efee5a334a86f099", "sha256": "03613922bcc00cdeb261fed2473cc38cc6437d4413ec27fc3dd2e9e7136c23a4" }, "downloads": -1, "filename": "jira_metrics_extract-0.37-py3-none-any.whl", "has_sig": false, "md5_digest": "419486159d2af802efee5a334a86f099", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45444, "upload_time": "2017-06-24T22:59:31", "url": "https://files.pythonhosted.org/packages/d1/05/491c6831e156f0a729e9ea152b38381fc48be3185b9362fd8af61a9c5a4d/jira_metrics_extract-0.37-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "172dbbc8be437564591dbbef74fb5365", "sha256": "abbdb8caa10781b5ac9dbface99066f387d32efc002cbcf0cc6a86597c37867f" }, "downloads": -1, "filename": "jira-metrics-extract-0.37.tar.gz", "has_sig": false, "md5_digest": "172dbbc8be437564591dbbef74fb5365", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46263, "upload_time": "2017-06-24T22:59:33", "url": "https://files.pythonhosted.org/packages/45/0e/c9fa3fa054cd202510980a0a651bf2862fcb3417b342f9f3fb43dfcfc8f7/jira-metrics-extract-0.37.tar.gz" } ], "0.38": [ { "comment_text": "", "digests": { "md5": "36d5e36dfcadbc27efa318f16e352ccf", "sha256": "57e70f95f27439b7f993c38eb625381a09020e37ef295d898260cb8739db38e4" }, "downloads": -1, "filename": "jira_metrics_extract-0.38-py3-none-any.whl", "has_sig": false, "md5_digest": "36d5e36dfcadbc27efa318f16e352ccf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45570, "upload_time": "2017-06-25T21:17:24", "url": "https://files.pythonhosted.org/packages/a6/30/0874d9bad8c0ad56f98f02a7d7a9e8574ba574c32382bbb62d2fa2b36c9a/jira_metrics_extract-0.38-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d52d0b92cc12748d45f933b788bcfea7", "sha256": "8b17d7b67198736c7f9770b8f213f6dd15a901e52e8b5db535c85d1fde21054e" }, "downloads": -1, "filename": "jira-metrics-extract-0.38.tar.gz", "has_sig": false, "md5_digest": "d52d0b92cc12748d45f933b788bcfea7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46377, "upload_time": "2017-06-25T21:17:27", "url": "https://files.pythonhosted.org/packages/bb/f0/3537d28f5518827b8a7c89df2fe631bc263e4f639f17081175be5d0a2ddb/jira-metrics-extract-0.38.tar.gz" } ], "0.39": [ { "comment_text": "", "digests": { "md5": "5da778219b9f6cfd93410d9238a9c9b4", "sha256": "523530fcf08c6e59c270b67ac40f7467acaf28b9f59b3a04be3acee77cfdc13a" }, "downloads": -1, "filename": "jira_metrics_extract-0.39-py3-none-any.whl", "has_sig": false, "md5_digest": "5da778219b9f6cfd93410d9238a9c9b4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45572, "upload_time": "2017-06-25T21:21:54", "url": "https://files.pythonhosted.org/packages/6f/e6/d51442a69ed7b2e1ed77a4018b8d46968d5369dc97c2baa5ff1513f806a8/jira_metrics_extract-0.39-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d8e7cc1436c21f42daa1ccba67288da3", "sha256": "b7afe1c388e8579c34ca07142a435af7e2278fe41a18c7c9cb7ccfecb52d4632" }, "downloads": -1, "filename": "jira-metrics-extract-0.39.tar.gz", "has_sig": false, "md5_digest": "d8e7cc1436c21f42daa1ccba67288da3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46383, "upload_time": "2017-06-25T21:21:56", "url": "https://files.pythonhosted.org/packages/25/02/8a1f8b30e8c3877842381ea12247b7270501b75e2afeb79c126a8db5a757/jira-metrics-extract-0.39.tar.gz" } ], "0.40": [ { "comment_text": "", "digests": { "md5": "8b3288f242e2fbf41d9dbcf0c21e4bd0", "sha256": "7b2a92adcb06606f9840abbec63b9901ec5e377c7c62507fe990ab800f5e7cdd" }, "downloads": -1, "filename": "jira_metrics_extract-0.40-py3-none-any.whl", "has_sig": false, "md5_digest": "8b3288f242e2fbf41d9dbcf0c21e4bd0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45688, "upload_time": "2017-06-28T08:51:31", "url": "https://files.pythonhosted.org/packages/fb/5f/13a6498074a363ae5918f18c9facfc652398599b50bc04a04176727abd9f/jira_metrics_extract-0.40-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7c6245066c8766c987aee1fa86e353d7", "sha256": "8a6b5f868e674f2489459be3581c359c98ee35f12e2e35ff8bcd83d2c2d47b35" }, "downloads": -1, "filename": "jira-metrics-extract-0.40.tar.gz", "has_sig": false, "md5_digest": "7c6245066c8766c987aee1fa86e353d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46879, "upload_time": "2017-06-28T08:51:34", "url": "https://files.pythonhosted.org/packages/46/09/567b78faab579cbf708fb629d421ebde98e640ea1ec3094558391b226a89/jira-metrics-extract-0.40.tar.gz" } ], "0.41": [ { "comment_text": "", "digests": { "md5": "fb59a5cc73629ec2b112e761fd048d89", "sha256": "f902cfca10ef054ab44610001f0fe3554337597036f5321afa835155f56b9429" }, "downloads": -1, "filename": "jira_metrics_extract-0.41-py3-none-any.whl", "has_sig": false, "md5_digest": "fb59a5cc73629ec2b112e761fd048d89", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45860, "upload_time": "2017-06-28T13:16:13", "url": "https://files.pythonhosted.org/packages/13/25/2759f1b43968533bf5c350713753a06ec4682e58b8c5a751abffee00df0a/jira_metrics_extract-0.41-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7b588b694e4fae38d6ef2968f738a6ae", "sha256": "a13522cccbee90bf72aeeb17bba3898d0705757a39d26061209213167af878ec" }, "downloads": -1, "filename": "jira-metrics-extract-0.41.tar.gz", "has_sig": false, "md5_digest": "7b588b694e4fae38d6ef2968f738a6ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47056, "upload_time": "2017-06-28T13:16:15", "url": "https://files.pythonhosted.org/packages/b5/0e/25bb0dbddd4ae57f3b301f60c71c1b8432733064cd2614a9a0e265ae0554/jira-metrics-extract-0.41.tar.gz" } ], "0.42": [ { "comment_text": "", "digests": { "md5": "9666681d41a15f030998657efa625c79", "sha256": "7a29f2277df1858895c8fb23d6b8d48be134e1db15e6ae28783f3e1e65e28c84" }, "downloads": -1, "filename": "jira_metrics_extract-0.42-py3-none-any.whl", "has_sig": false, "md5_digest": "9666681d41a15f030998657efa625c79", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45923, "upload_time": "2017-06-28T13:31:01", "url": "https://files.pythonhosted.org/packages/11/4d/ec7240d37684c11d644428102429857407ae834bf2bc6d357d71494dca53/jira_metrics_extract-0.42-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f2e6e2ebc1989e70ecd97c69b1f066c0", "sha256": "87def6be254caa4f9c18ca2be8356253e85da37bda5cd6f93c5bd5456ee72e49" }, "downloads": -1, "filename": "jira-metrics-extract-0.42.tar.gz", "has_sig": false, "md5_digest": "f2e6e2ebc1989e70ecd97c69b1f066c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47121, "upload_time": "2017-06-28T13:31:03", "url": "https://files.pythonhosted.org/packages/2b/87/d33b9d0c31be6044316f6cf0d0df72273ac9e1d0abf8f9ab4f4152057954/jira-metrics-extract-0.42.tar.gz" } ], "0.43": [ { "comment_text": "", "digests": { "md5": "eaa3991276d1c05d99824b256e5bba44", "sha256": "336a9a1b6cad70380f877a97822b61e41679c8bf9dddeebbeb317981afaf2f68" }, "downloads": -1, "filename": "jira_metrics_extract-0.43-py3-none-any.whl", "has_sig": false, "md5_digest": "eaa3991276d1c05d99824b256e5bba44", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 46511, "upload_time": "2017-07-01T16:36:45", "url": "https://files.pythonhosted.org/packages/9e/b7/440186bd7b5cb5c92e1c1c206fa9393c93be3115b316b800df9d7ae7e4b4/jira_metrics_extract-0.43-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff5853db07d3facf6182805fb8b194e8", "sha256": "0e2c17ef2916afb2c7342e195712c49ba0c4e900d06afbcc5ca932e3b169f7be" }, "downloads": -1, "filename": "jira-metrics-extract-0.43.tar.gz", "has_sig": false, "md5_digest": "ff5853db07d3facf6182805fb8b194e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48640, "upload_time": "2017-07-01T16:36:47", "url": "https://files.pythonhosted.org/packages/52/d8/c3e8f1a89363dc77569e9aeb147ebab00a2ad3b3bd5f84a09ea499fd70aa/jira-metrics-extract-0.43.tar.gz" } ], "0.44": [ { "comment_text": "", "digests": { "md5": "7aeaacf42f7043b5a703f64138445d22", "sha256": "c0f041e259457dcaac2fb07cb9e4735ec7c7fb3017b058ce986fdbff161f34c3" }, "downloads": -1, "filename": "jira_metrics_extract-0.44-py3-none-any.whl", "has_sig": false, "md5_digest": "7aeaacf42f7043b5a703f64138445d22", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 46587, "upload_time": "2017-07-02T11:17:56", "url": "https://files.pythonhosted.org/packages/45/e4/f2269dc46ad64ee544a3d8ef1621482428f7430046d60753b588b89dbfb4/jira_metrics_extract-0.44-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "780f55821013031fabad6c0816cbddc6", "sha256": "e59392cffcd6b427e9f25567df2eb7d48f7c461481f3f5c79b0571da5b64d73d" }, "downloads": -1, "filename": "jira-metrics-extract-0.44.tar.gz", "has_sig": false, "md5_digest": "780f55821013031fabad6c0816cbddc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48733, "upload_time": "2017-07-02T11:17:58", "url": "https://files.pythonhosted.org/packages/02/16/f0bad6e542e619a8a8e4e03ef87724958196b287792e703e77acd8c12c8c/jira-metrics-extract-0.44.tar.gz" } ], "0.45": [ { "comment_text": "", "digests": { "md5": "1b7eb6464414d81479471bcf5796bde9", "sha256": "e854c1fd191ce13a10b457c15434de914abb2e93045c7ad51de5e2b0af583924" }, "downloads": -1, "filename": "jira_metrics_extract-0.45-py3-none-any.whl", "has_sig": false, "md5_digest": "1b7eb6464414d81479471bcf5796bde9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 47236, "upload_time": "2017-07-31T05:11:57", "url": "https://files.pythonhosted.org/packages/0d/be/06b40a812e8344907d03d296317a66ce8c932634661a40bb2306210ebd83/jira_metrics_extract-0.45-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c2dd0793dba23ccf1f9f900ecb35ee67", "sha256": "70350c1094c6a83b4ad4a5002593acfef6bed26418de7ec9df776c9d03075d1b" }, "downloads": -1, "filename": "jira-metrics-extract-0.45.tar.gz", "has_sig": false, "md5_digest": "c2dd0793dba23ccf1f9f900ecb35ee67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51639, "upload_time": "2017-07-31T05:11:59", "url": "https://files.pythonhosted.org/packages/ce/ec/4422dbbcec6cfbd5dca04ddedf701574a0a0065f04bec601285f71e2b323/jira-metrics-extract-0.45.tar.gz" } ], "0.46": [ { "comment_text": "", "digests": { "md5": "b56d305ebea607a77c8a4b67be682d9e", "sha256": "c8d152ec1704d2095eaf07101e8aee231ab54cba63b7a63e5e01ec9e5ba44cc8" }, "downloads": -1, "filename": "jira_metrics_extract-0.46-py3-none-any.whl", "has_sig": false, "md5_digest": "b56d305ebea607a77c8a4b67be682d9e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 47400, "upload_time": "2017-08-01T06:36:27", "url": "https://files.pythonhosted.org/packages/6b/27/8c96624bce49067b8621d0cb6e96db64b31b3b9b33022d3b42c0c34aff6e/jira_metrics_extract-0.46-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b6bea19439e58f7db2aebd4cfb5c1a86", "sha256": "be746159211761ef18ed8c6901ed798b4bd3705fa445accdf22e04014d50e564" }, "downloads": -1, "filename": "jira-metrics-extract-0.46.tar.gz", "has_sig": false, "md5_digest": "b6bea19439e58f7db2aebd4cfb5c1a86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52276, "upload_time": "2017-08-01T06:36:29", "url": "https://files.pythonhosted.org/packages/d5/26/febc6309cf5c8f261084a200cbf508e60296ddd886f6a717d3f5f08a60dd/jira-metrics-extract-0.46.tar.gz" } ], "0.47": [ { "comment_text": "", "digests": { "md5": "32032e5e67a95b08041eec8986a397b2", "sha256": "7cc319e9213f614e2d2266b43c9be9c275a75bac11f5bc2d1f6cb3b5881789aa" }, "downloads": -1, "filename": "jira_metrics_extract-0.47-py3-none-any.whl", "has_sig": false, "md5_digest": "32032e5e67a95b08041eec8986a397b2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43007, "upload_time": "2018-03-24T15:03:14", "url": "https://files.pythonhosted.org/packages/7f/48/86e93624f94903131955c5b9a0b11379fe80311212c3dd6c0733d4e7ef12/jira_metrics_extract-0.47-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "45188750209d8a1175adddceabb64c9f", "sha256": "5098be675e2a594f9da56ee1b6deb1f5176e38807c1a5818e34ca728281cdf89" }, "downloads": -1, "filename": "jira-metrics-extract-0.47.tar.gz", "has_sig": false, "md5_digest": "45188750209d8a1175adddceabb64c9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43004, "upload_time": "2018-03-24T15:03:13", "url": "https://files.pythonhosted.org/packages/1f/a6/00ea21f53f2cee6ecbd920f89a095a3e1a8b57c0f83e618d529f91b93e6a/jira-metrics-extract-0.47.tar.gz" } ], "0.50": [ { "comment_text": "", "digests": { "md5": "6e396215ce90982006c051ac1bc8baa4", "sha256": "8bebcd48f2f28ebd788dd9345bb7173270606a642c58d796f5c39e0b57ecc56c" }, "downloads": -1, "filename": "jira_metrics_extract-0.50-py3-none-any.whl", "has_sig": false, "md5_digest": "6e396215ce90982006c051ac1bc8baa4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43038, "upload_time": "2018-03-25T11:10:31", "url": "https://files.pythonhosted.org/packages/b6/b9/e5776545176aff3198e102d1dc5a15839e7aef33da5e06b9df18b888c25f/jira_metrics_extract-0.50-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4329dd93cdb339ad865135c57be3bd19", "sha256": "5b25b13bd61c1feadd86e7622ccab23632067269d0b2faf9842ed81bf39889d5" }, "downloads": -1, "filename": "jira-metrics-extract-0.50.tar.gz", "has_sig": false, "md5_digest": "4329dd93cdb339ad865135c57be3bd19", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43125, "upload_time": "2018-03-25T11:10:29", "url": "https://files.pythonhosted.org/packages/95/7d/42e529de494ab1652643396d2fdd647362dc0d98ebac88e1fda69c637e78/jira-metrics-extract-0.50.tar.gz" } ], "0.51": [ { "comment_text": "", "digests": { "md5": "cd3a72ae0a281649d65f146efef1edc1", "sha256": "c5ac8a2681fcb58b124bad5b5f281857b8f2afcc6a6754607896bcbd0cd6bf44" }, "downloads": -1, "filename": "jira_metrics_extract-0.51-py3-none-any.whl", "has_sig": false, "md5_digest": "cd3a72ae0a281649d65f146efef1edc1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43465, "upload_time": "2018-04-22T16:53:49", "url": "https://files.pythonhosted.org/packages/8b/2f/e0a2433097a4bec843cb103c9ec6d3ae2e48778d8f6d688654d45850d4e4/jira_metrics_extract-0.51-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a470630e15b084008d8f704eaaff0ef9", "sha256": "d3f394adef61937234c53756092df4dadb75a2ac27fe4647cb9b7d7ac2cbf9a9" }, "downloads": -1, "filename": "jira-metrics-extract-0.51.tar.gz", "has_sig": false, "md5_digest": "a470630e15b084008d8f704eaaff0ef9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48640, "upload_time": "2018-04-22T16:53:48", "url": "https://files.pythonhosted.org/packages/ad/5d/1aafed3f65c64e2e7165d8f114d61ecf3455aa342ce1aa55be638a698f16/jira-metrics-extract-0.51.tar.gz" } ], "0.52": [ { "comment_text": "", "digests": { "md5": "48714bb86f35afa5c54a4ae47b841024", "sha256": "a4f7fc0c8b4b2ed86601ba4883dc1b82dd1d1a7e56bfbf4e71433f59171f04e8" }, "downloads": -1, "filename": "jira_metrics_extract-0.52-py3-none-any.whl", "has_sig": false, "md5_digest": "48714bb86f35afa5c54a4ae47b841024", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43555, "upload_time": "2018-04-22T17:13:57", "url": "https://files.pythonhosted.org/packages/48/8a/b99ab117991115277603504d1db4da27435e769e5d18116abc1ad81c8839/jira_metrics_extract-0.52-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "935877f95a2a83d38223f0d7e47c60ef", "sha256": "92bbe2f958516351a542528d5bda2e4ae286b42be852f090d2c86d4b4e5764d6" }, "downloads": -1, "filename": "jira-metrics-extract-0.52.tar.gz", "has_sig": false, "md5_digest": "935877f95a2a83d38223f0d7e47c60ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48774, "upload_time": "2018-04-22T17:13:56", "url": "https://files.pythonhosted.org/packages/70/3e/190fd4142baa3dd1c34b54174bd2ad0cd30791d686243f5512788a203e81/jira-metrics-extract-0.52.tar.gz" } ], "0.53": [ { "comment_text": "", "digests": { "md5": "132a862750065ea2a4ad9591844c67a0", "sha256": "72644e3ceaac383ddd077c3a44c2519c45fe68e054f54851a97524eb9f011859" }, "downloads": -1, "filename": "jira_metrics_extract-0.53-py3-none-any.whl", "has_sig": false, "md5_digest": "132a862750065ea2a4ad9591844c67a0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43611, "upload_time": "2018-05-10T06:15:59", "url": "https://files.pythonhosted.org/packages/ce/2e/73642ccd8ad637d5b114a4d69e28f784c3de053e17fa8edad8a61fa87736/jira_metrics_extract-0.53-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1f90b2b41d2486334de78940bc708513", "sha256": "fec0768f136e5ab1fce0232a0e455330c8107a10d90661b71e0d5e2201f2084e" }, "downloads": -1, "filename": "jira-metrics-extract-0.53.tar.gz", "has_sig": false, "md5_digest": "1f90b2b41d2486334de78940bc708513", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49438, "upload_time": "2018-05-10T06:15:57", "url": "https://files.pythonhosted.org/packages/20/87/47a5195d5607450714b15ed6e3c1fc414bed01867d5463226dcfa81335cd/jira-metrics-extract-0.53.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "132a862750065ea2a4ad9591844c67a0", "sha256": "72644e3ceaac383ddd077c3a44c2519c45fe68e054f54851a97524eb9f011859" }, "downloads": -1, "filename": "jira_metrics_extract-0.53-py3-none-any.whl", "has_sig": false, "md5_digest": "132a862750065ea2a4ad9591844c67a0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43611, "upload_time": "2018-05-10T06:15:59", "url": "https://files.pythonhosted.org/packages/ce/2e/73642ccd8ad637d5b114a4d69e28f784c3de053e17fa8edad8a61fa87736/jira_metrics_extract-0.53-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1f90b2b41d2486334de78940bc708513", "sha256": "fec0768f136e5ab1fce0232a0e455330c8107a10d90661b71e0d5e2201f2084e" }, "downloads": -1, "filename": "jira-metrics-extract-0.53.tar.gz", "has_sig": false, "md5_digest": "1f90b2b41d2486334de78940bc708513", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49438, "upload_time": "2018-05-10T06:15:57", "url": "https://files.pythonhosted.org/packages/20/87/47a5195d5607450714b15ed6e3c1fc414bed01867d5463226dcfa81335cd/jira-metrics-extract-0.53.tar.gz" } ] }