Added auctionport auctions

This commit is contained in:
Computerboer
2025-07-20 15:43:38 +02:00
parent 173dcb0f50
commit bea8a41670
9 changed files with 263 additions and 126 deletions

View File

@@ -67,5 +67,6 @@ class FileCache():
def add(key, obj):
log('adding filecacheobject ' + key)
json_data = JsonEncoder().encode(obj)
# json_data = json.dumps(obj, cls=JsonEncoder, indent=2)
with open("./filecache/" + key + ".json", 'w+') as f:
f.write(json_data)