import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
kv_store = client.fastedge.kv_stores.get(
0,
)
print(kv_store)
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
kv_store = client.fastedge.kv_stores.get(
0,
)
print(kv_store)