15 lines
457 B
Python
15 lines
457 B
Python
from hcloud import Client
|
|
|
|
with open("token.txt", "r") as file:
|
|
api_token = file.read().strip()
|
|
|
|
client = Client(token=api_token)
|
|
|
|
PREFIX = "s478839"
|
|
|
|
servers = client.servers.get_all()
|
|
print(f"Usuwanie {len(servers)} serwerów")
|
|
for s in servers:
|
|
if s.data_model.name.startswith(PREFIX):
|
|
action = client.servers.delete(s)
|
|
print(f"Usuwanie serwera {s.data_model.name} ({s.data_model.public_net.ipv4.ip}): {action.data_model.status}") |