This repository has been archived on 2024-02-23. You can view files and clone it, but cannot push or open issues or pull requests.
memberPlumbing/sendSchedule.py

29 lines
682 B
Python
Raw Normal View History

#!/usr/bin/env python3
2018-05-07 18:04:12 -04:00
import requests
from xml.etree import ElementTree as ET
import csv
from io import StringIO
2018-05-07 18:04:12 -04:00
from common import *
2018-05-07 18:04:12 -04:00
TARGET_IP = '172.18.51.15'
2018-05-07 18:04:12 -04:00
# clear all people
outString = StringIO()
writer = csv.DictWriter(outString, fieldnames)
writer.writeheader()
writer.writerow({})
outString.seek(0)
doCSVImport(TARGET_IP, outString)
# clear all schedules
2018-05-07 18:04:12 -04:00
delXML = ET.Element("VertXMessage")
for ii in range(1, 8):
ET.SubElement(delXML, "hid:Schedules",
attrib={"action": "DD", "scheduleID": str(ii)})
2018-05-14 11:23:25 -04:00
doXMLRequest(TARGET_IP, ET.tostring(delXML))
2018-05-07 18:04:12 -04:00
# load new schedules
2018-05-07 18:04:12 -04:00
with open("schedules.xml", "rb") as f:
doXMLRequest(TARGET_IP, f.read())