import config import utilities_script as utilities import os class tempText_Module(): def __init__(self): super().__init__() self.tempText_items = {} def main(self): pass def makeItem(self, tempTextItem_): self.addItem(tempTextItem_.itemName, tempTextItem_.itemTitle, tempTextItem_.itemContent) self.tempText_stringUpdater() self.update_tempTextFiles() def addItem(self, name, title, content): newItem:tempTextItem = tempTextItem(name=name, title=title, content=content) newItem.setupItem(name, title, content) self.tempText_items[name] = newItem def getItem(self, name): return self.tempText_items[name] def updateItem(self, name, title, content): newItem:tempTextItem = tempTextItem(name=name, title=title, content=content) newItem.setupItem(name, title, content) self.tempText_items[name] = newItem def deleteItem(self, name): return self.tempText_items.pop(name, None) def tempText_stringUpdater(self): for c in self.tempText_items: self.tempText_items[c].item_stringUpdater() def update_tempTextFiles(self): dir = utilities.get_dir("stream_sources") script_dir = os.path.dirname(__file__) #<-- absolute dir the script is in for key in self.tempText_items: item = self.tempText_items[key] relative_path = "stream_sources/" + item.itemName + ".txt" real_file_path = os.path.join(script_dir, relative_path) file = open(real_file_path, "wb") itemText_ = item.item_stringUpdater().encode("utf8") file.write(itemText_) file.close def getTempTextFile(self, key): dir = utilities.get_dir("stream_sources") script_dir = os.path.dirname(__file__) #<-- absolute dir the script is in relative_path = "stream_sources/" + key + ".txt" real_file_path = os.path.join(script_dir, relative_path) file = open(real_file_path, "rb") text = file.read() #print(text) file.close return text class tempTextItem(): def __init__(self, name = "", includeTitle = True, title = "", content = ""): super().__init__() self.itemName = name #This will determine the fileName self.includeTitle = includeTitle self.itemTitle = title self.itemContent = content self.itemComputedString = "" def setupItem(self, name, title, content): print("\nSetting up tempTextItem {", name,"}[", title, content, "]") self.itemName = name self.itemTitle = title self.itemContent = content self.item_stringUpdater() def item_stringUpdater(self): newString = "" if self.includeTitle == True: newString = newString + self.itemTitle newString = newString + self.itemContent self.itemComputedString = newString return self.itemComputedString if __name__ == "__main__": testModule = tempText_Module() testModule.main() #testModule.addItem("test","title: ", "content content content") #testModule.tempText_stringUpdater() testItem = tempTextItem("testy","title: ", "content content content") testModule.makeItem(testItem) testModule.update_tempTextFiles()