7 lines
308 B
Python
7 lines
308 B
Python
from hcloud import Client
|
|
|
|
client = Client(token="JalvbaPbizgErC2PoBSmDiFX0TKW0WLzbarxwFyNtJpx1xCvnEx3LI1B2Thl836f") # Please paste your API token here between the quotes
|
|
servers = client.servers.get_all()
|
|
for server in servers:
|
|
print("Servername:", server.name)
|
|
print("Servername:", server.status) |