from truefoundry import TrueFoundry# Initialize the clientclient = TrueFoundry( base_url="https://api.truefoundry.com", api_key="your_api_key")# List your applicationsapplications = client.applications.list()for app in applications: print(f"Application: {app.name}")