openlayer.Project.status#
- Project.status(*args, **kwargs)#
Shows the state of the staging area.
Examples
Related guide: How to upload datasets and models for development.
You can use the
status
method to check the state of the staging area.>>> project.status()
The staging area can be in one of three states.
You can have a clean staging area, which is the initial state as well as the state after you have pushed your changes to the platform (with the
push
method).You can have a staging area with different resources staged (e.g., models and datasets added with the
add_model
,add_dataset
, andadd_dataframe
mehtods).Finally, you can have a staging area with resources staged and committed (with the
commit
method).