This file contains 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
#!/usr/bin/env python3 | |
import os | |
import sys | |
import time | |
import yaml | |
import pprint | |
import requests | |
import urllib3 | |
from netmiko import ConnectHandler |
This file contains 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
#!/usr/bin/env python3 | |
import yaml | |
import os.path | |
import pprint | |
import re | |
import time | |
import logging | |
import argparse | |
import requests | |
from requests.exceptions import Timeout |
This file contains 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
#!/usr/bin/env python3 | |
import time | |
import os | |
import sys | |
import subprocess # nosec: B404 | |
import socket | |
import re | |
import http.client | |
import json | |
from urllib.request import build_opener, AbstractHTTPHandler |
This file contains 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
#!/usr/bin/env python3 | |
import time | |
import re | |
import yaml | |
import json | |
import os.path | |
import logging | |
import argparse | |
import socket | |
import pprint |