This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"crypto/tls" | |
"encoding/json" | |
"errors" | |
"flag" | |
"fmt" | |
"io" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! | |
""" | |
@author Sybil Melton | |
Pulls the Jira issues and calculates the completed and not completed Story Points for a Sprint. | |
Change Sprint to match the name | |
Change the JIRA_USER and JIRA_API_TOKEN to match who is logging in | |
Examples | |
python3 jira-scripts.py -h |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# import required dependencies | |
from __future__ import print_function | |
from fireREST import FireREST | |
import ipaddress | |
# Set variables for execution. | |
# Make sure your credentials are correct. | |
# Make sure ACP and all logging and inspection objects already exist. | |
device1 = 'x.x.x.x' | |
device2 = 'y.y.y.y' |