This commit is contained in:
√(noham)²
2024-03-03 00:36:21 +01:00
parent ed71e77b1c
commit 961ff7439f
2 changed files with 7 additions and 3 deletions

View File

@@ -8,8 +8,6 @@ CORS(app, resources={r"/music/*": {"origins": "http://*"}})
with open('.users', 'r') as file:
users = json.load(file)
print(users)
@app.route('/music/set', methods=['POST'])
def set_content():
global cache
@@ -18,12 +16,17 @@ def set_content():
for key in ['user', 'password']:
if key in cache:
del cache[key]
# with open('cache.txt', 'w') as f:
# f.write(str(cache))
return jsonify({'message': 'Content set successfully.'})
else:
return jsonify({'message': 'Invalid user or password.'})
@app.route('/music/get', methods=['GET'])
def display_content():
global cache
# with open('cache.txt', 'r') as f:
# cache = f.read()
return jsonify(cache)
if __name__ == '__main__':