This is an to come up with quick boilerplate code for set up and accessing JIRA using OAuth.
Project contains:
- requirements.txt comments indicate what are needed when. Run it using
pip install -r requirements.txt
- export_vars.sh comments indicate what env's are required in each .py file. Do
source export_vars.sh
- oauth_generator.py contains python logic to do the OAuth dance.
- This assumes that you already generated the pem key and pub key
- The pub key is shared with JIRA server and a customer_key is obtained in return
- Must: install the requirements and configure env vars (step 1 and 2)
- Follow instructions in console
- access_using_jira_package.py contains python logic to interact with JIRA using
jira
package- This assumes that you already generated the pem key and pub key
- The pub key is shared with JIRA server and a customer_key is obtained in return
- Must: install the requirements and configure env vars (step 1 and 2)
- access_using_requests_package.py contains python logic to interact with JIRA using
requests
package- This assumes that you already generated the pem key and pub key
- The pub key is shared with JIRA server and a customer_key is obtained in return
- Must: install the requirements and configure env vars (step 1 and 2)