import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)dns_label_names = client.dns.pickers.list()print(dns_label_names)
Copy
Ask AI
[ { "label": "<string>", "name": "<string>" }]
Pickers
List of Picker
Returns list of picker
GET
/
dns
/
v2
/
pickers
Python
Copy
Ask AI
import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)dns_label_names = client.dns.pickers.list()print(dns_label_names)