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