Skip to content

Client

Apply all definitions, creating and retrieving all specified resources.

import featureform as ff
client = ff.Client()

ff.register_postgres(
    host="localhost",
    port=5432,
)

client.apply()

Parameters:

Name Type Description Default
asynchronous bool

If True, apply will return immediately and not wait for resources to be created. If False, apply will wait for resources to be created and print out the status of each resource.

False