import requests
import json

# Set the list of domains to check
domains = ["example.com", "example.net", "example.org"]

# Set the inwx API key
inwx_api_key = "YOUR_API_KEY"

# Define the function to check if a domain is free
def is_domain_free(domain):

    # Make a request to the inwx API
    response = requests.get("https://api.inwx.de/v1/domains/check", headers={"Authorization": "Bearer {}".format(inwx_api_key), "Content-Type": "application/json"})

    # Check the response status code
    if response.status_code == 200:

        # The domain is free
        return True

    # The domain is not free
    return False

# Loop through the list of domains
for domain in domains:

    # Check if the domain is free
    if is_domain_free(domain):

        # The domain is free, so register it
        print("Domain {} is free, registering it".format(domain))

        # Make a request to the inwx API to register the domain
        response = requests.post("https://api.inwx.de/v1/domains/register", headers={"Authorization": "Bearer {}".format(inwx_api_key), "Content-Type": "application/json"}, data=json.dumps({"domain": domain}))

        # Check the response status code
        if response.status_code == 201:

            # The domain was successfully registered
            print("Domain {} was successfully registered".format(domain))

        else:

            # The domain could not be registered
            print("Error registering domain {}: {}".format(domain, response.status_code))

    else:

        # The domain is not free, so skip it
        print("Domain {} is not free, skipping it".format(domain))
...zur Antwort

Du hast es doch schon selber erfasst. Zucker und Weizen sind deine Feinde. Versuche nicht eine X-Zahl an Kilos in einem Zeitraum abzunehmen. Das führt schnell zu Frust. Motiviere dich dazu 1kg loszuwerden. Hast du es geschafft, dann wieder 1kg. Ist psychisch weniger belastend. Rechne dir einen leichtes (!) Kaloriendefizit aus und es klappt schon.

...zur Antwort

Selbst wenn sie wieder zurück will, lass sie abblitzen. Reisende soll man ziehen lassen.

...zur Antwort

Es ist eine reine Tatsachenfeststellung, also eine Information für dich.

...zur Antwort

Die Bahn hier: Bitte vor der Fahrt zum ServiceCenter (mittlere Halle gleich nach den Rolltreppen) am HBF gehen und den Sachverhalt schildern. Du bekommst dann sofort einen neuen Fahrplan mit der Strecke über Erfurt ohne jegliche Zusatzkosten.

...zur Antwort