A wrapper around Jira API to run jira commands missing in their UI as oneliners
Project description
jira_easy_api
A wrapper around Jira API to run jira commands missing in their UI as oneliners
Installation
Use the package manager pip to install jira_easy_api.
pip install jira_easy_api
Usage
from jira_easy_api_core import JiraClient
jira_api_token="2pU1YDiGagbISzfGgDzfzE5C"
jira_workspace_url='https://your_workspace.atlassian.net'
jc=JiraClient(jira_workspace_url,"your_email@gmail.com",jira_api_token) #Initialize Jira Client
issues=jc.get_all_issues_by_project_name("FP") #Get all issues/tasks
jc.create_new_issue("FP", "Test task", "It works!") #Create new issue/task
jc.update_issue_by_name("FP-377",{"description":"Test"}) #Update existing issue/task
issues=jc.get_all_issues_by_project_name("FP")
issue_ids=[str(issue) for issue in issues]
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
License
Currently implemented
- Get all issues
- Create new issue
- Update issue
- Delete issue
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
jira_easy_api-0.1.0.tar.gz
(2.4 kB
view details)
Built Distribution
File details
Details for the file jira_easy_api-0.1.0.tar.gz
.
File metadata
- Download URL: jira_easy_api-0.1.0.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.25.1 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f09457668c5c7f2a2d652fb0b6eba22ec625ec03c7229a34c8ece883db8051f |
|
MD5 | fcd8c8c11035ad34f938d72dbd1dd1f2 |
|
BLAKE2b-256 | 1d47e8bc506422ebb88e42afedfde9b16578b0c110992a5beb9097af6114f195 |
File details
Details for the file jira_easy_api-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: jira_easy_api-0.1.0-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.25.1 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc05ceec9131ec7a9421cc96d8228c0b277b4328cfa6a6b2050366067bcc0cdf |
|
MD5 | 9e645ab0b5aa00e59b9363b3c32e25e1 |
|
BLAKE2b-256 | 84c8e3fb724ace81305d04412e06dfff390a365d514c6390a66ac5f855c220af |