Metadata-Version: 2.1
Name: dev-work-tracker
Version: 1.5
Summary: This is to track developers work rate
Home-page: https://github.com/jagadeesh-l/dev-work-tracker
Author: Jagadeesh Lakshminarasimhan
Author-email: jagadeeshlaks@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: jira
Requires-Dist: spacy


Improvising developer's effort
==============================
Dated: 10/02/2019


Overview
--------

* Create an issue under task(input) which contains history of developer's bug for current module.


Dependencies
------------


Install the package by running:


pip install dev-work-tracker

OR

shell sudo python3 setup.py install


Install the dependencies:
------------------------------------


pip install jira
pip install spacy
python -m spacy download en_core_web_sm

Python standard dependencies:
------------------------------------

* .. image:: https://img.shields.io/badge/Python%20Package-jira-blue
		  :target: https://pypi.org/project/jira/

* .. image:: https://img.shields.io/badge/Python%20Package-spacy-blue
		  :target: https://pypi.org/project/spacy/

devtracker
--------------
.. image:: https://img.shields.io/badge/Dev-Github-green
        :target: https://github.com/jagadeesh-l/dev-work-tracker

.. image:: https://img.shields.io/pypi/v/dev-work-tracker.svg
        :target: https://pypi.python.org/pypi/dev-work-tracker

.. image:: https://img.shields.io/pypi/wheel/wheel
		:target: https://pypi.python.org/pypi/dev-work-tracker

.. image:: https://img.shields.io/badge/python-3.0%20%7C%203.1%20%7C%203.2%20%7C%203.3%20%7C%203.4%20%7C%203.5%20%7C%203.6%20%7C%203.7%20%7C%203.8-blue
		:target: https://www.python.org/downloads/release/python-380/

.. image:: https://img.shields.io/apm/l/vim-mode
		:target: https://pypi.python.org/pypi/dev-work-tracker

This package is to track developers work rate

* Free software: MIT license
* Documentation: (COMING SOON!) https://dev-work-tracker.readthedocs.org.

Maintainers
-----------

* Jagadeesh Lakshminarasimhan - jagadeeshlaks@gmail.com


USAGE
------


from devtracker.devtracker import Trigger

jira_server = "https://example.atlassian.net/"

jira_user = "example@gm.com"

jira_password = "examplePassW@rd"

Issue_ID = "EXAM-1234" #Jira Issue ID

description = 'This is sample description about the issue'

session = Trigger().jira_login(jira_server, jira_user, jira_password)

out = Trigger().windfall(Issue_ID, session, description)

print(out)




.. image:: https://img.shields.io/badge/LINK-GitHub-orange
		:target: https://github.com/jagadeesh-l/dev-work-tracker






