I am making a python based webapp that uses jsons to store information for different accounts. I am not able to temporarily save the json data to a local file and then upload it to a blob. Is there a way to remove that step and just upload the json data directley as a file in a blob?
This is how you normally upload a file
with open(upload_file_path, "rb") as data:
blob_client.upload_blob(data)
Is there something like blob_client.upload_blob(<json object>) that works?