import requests import sys import gzip import uuid import os import shutil import xml.dom.minidom sys.path.append("./py2lib") sys.path.append("./Util") sys.path.append("./records") import bit import MachineProductCfg as MPC import LFRecord as LFR coopIds = [] geocodes = [] # Auto-grab the tecci and zip codes for i in MPC.getPrimaryLocations(): coopIds.append(LFR.getCoopId(i)) geocodes.append(LFR.getLatLong(i).replace('/', ',')) print(coopIds, geocodes) apiKey = '21d8a80b3d6b444998a80b3d6b1449d3' def getData(coopId, geocode): fetchUrl = f"https://api.weather.com/v2/indices/breathing/daypart/7day?geocode={geocode}&language=en-US&format=xml&apiKey={apiKey}" #Fetch data response = requests.get(fetchUrl) data = response.text newData = data[63:-26] print('[BREATHING] Gathering data for location id ' + coopId) #Write to .i2m file i2Doc = '' + '' + newData + '' + str(coopId) + '' f = open("D:\\Breathing.i2m", "a") f.write(i2Doc) f.close() def makeDataFile(): header = '' footer = '' with open("D:\\Breathing.i2m", 'w') as doc: doc.write(header) for x, y in zip(coopIds, geocodes): getData(x, y) with open("D:\\Breathing.i2m", 'a') as end: end.write(footer) dom = xml.dom.minidom.parse("D:\\Breathing.i2m") pretty_xml_as_string = dom.toprettyxml(indent = " ") with open("D:\\Breathing.i2m", "w") as g: g.write(pretty_xml_as_string[23:]) g.close() files = [] commands = [] with open("D:\\Breathing.i2m", 'rb') as f_in: with gzip.open("D:\\Breathing.gz", 'wb') as f_out: shutil.copyfileobj(f_in, f_out) gZipFile = "D:\\Breathing.gz" files.append(gZipFile) command = commands.append('') numFiles = len(files) bit.sendFile(files, commands, numFiles, 0) os.remove("D:\\Breathing.i2m") os.remove("D:\\Breathing.gz")