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_stores = client.fastedge.kv_stores.list()
print(kv_stores.count)
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_stores = client.fastedge.kv_stores.list()
print(kv_stores.count)