The library for interacting with Replit's Object Storage service, on Replit.
Start by importing the Object Storage Client:
from replit.object_storage import ClientThen to use the Client:
client = Client()contents = client.download_as_text("file.json")client.upload_from_text("file.json", data)client.list()contents = client.delete("file.json")