Main client for TrueFoundry SDK operations
from truefoundry import TrueFoundry # Initialize the client client = TrueFoundry( base_url="https://api.truefoundry.com", api_key="your_api_key" )
from truefoundry import TrueFoundry client = TrueFoundry( api_key="YOUR_API_KEY", base_url="https://yourhost.com/path/to/api", ) client.apply( manifest={"key": "value"}, dry_run=False, )
from truefoundry import TrueFoundry client = TrueFoundry( api_key="YOUR_API_KEY", base_url="https://yourhost.com/path/to/api", ) client.delete( manifest={"key": "value"}, )
Was this page helpful?