Installation

pip install truefoundry

Quick Example

from truefoundry import TrueFoundry

# Initialize the client
client = TrueFoundry(
    base_url="https://api.truefoundry.com",
    api_key="your_api_key"
)

# List your applications
applications = client.applications.list()
for app in applications:
    print(f"Application: {app.name}")

Available Entities

Additional Resources

Getting Help

  • Documentation: Browse through the client documentation above
  • GitHub: TrueFoundry Python SDK
  • Support: Reach out to our support team for assistance

Built with ❤️ by the TrueFoundry team