-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathssnc.py
More file actions
53 lines (41 loc) · 1.1 KB
/
ssnc.py
File metadata and controls
53 lines (41 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
"""
SSNC - Switch Serial Number Checker
"""
import argparse
import requests
import configparser
import serial_checker
import json
import sys
import os
global serials
serials = {}
def arguments():
parser = argparse.ArgumentParser()
parser.add_argument("serial_number", type=str,
help="Serial Number to check")
args = parser.parse_args()
return args
def configuration():
global serials
config = configparser.ConfigParser()
config.read(os.path.join(sys.path[0], "config.ini"))
try:
serials_filename = config.get("SSNC", "SerialsJSON")
with open(serials_filename) as f:
serials = json.load(f)
except:
serials_url = config.get("SSNC", "SerialsURL")
req = requests.get(serials_url)
if req.status_code == 200:
serials = req.json()
def main(argv):
args = arguments()
try:
configuration()
print(serial_checker.check(serials, args.serial_number))
except Exception as err:
print(err)
if __name__ == "__main__":
main(sys.argv[1:])