Andrew Crozier
Andrew Crozier
> Is there a reason this does not have a object_client parameter like the others? Not particularly, no. `open` is a convenience function built on the others and I think...
Yeah, this is probably a better interface, as it allows more flexibility in constructing a session for a profile. I like the decoupling of loading profile from building the session....
In general, the Python clients in this library rely on defaults set on the backend rather than providing their own defaults. We could either: * Review all default arguments and...
Example usage: ```python from faculty.experiments import ExperimentRun print( list( ExperimentRun.query(project_id="f20f5eaa-9cff-4216-8ebd-b88fd294bb3e") ) ) print( ExperimentRun.query( project_id="f20f5eaa-9cff-4216-8ebd-b88fd294bb3e" ).as_dataframe() ) ```