Micro update 53
* Added a new function in `jiraone.module` which you can use as below. The helps to generate a report of the`time in status` of Jira issues. You can create an output file either in CSV or JSON format. 53
_Example usage_
python
from jiraone import LOGIN, PROJECT, file_reader
from jiraone.module import time_in_status
import json
config = json.load(open('config.json'))
LOGIN(**config)
key = ["COM-12", "COM-14"]
if __name__ == "__main__":
time_in_status(PROJECT, key, file_reader, pprint=True, is_printable=False,
output_format="json", report_folder="STATUSPAGE", report_file="time.csv",
status="In progress", login=LOGIN, output_filename="result")