-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add exclude_time_data parameter in get_objects and get_object_property_values * add include_time_data parameter to get_objects and get_object_property_values * TimeData extends str * raise exception for illegal include_time_data values * more refined time data filtering * make it possible to create bucket aggregation on time_type * add some helpful enums for property and objectType
- Loading branch information
1 parent
10ddbcf
commit 57b4828
Showing
4 changed files
with
113 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from fmu.sumo.explorer._explorer import Explorer | ||
from fmu.sumo.explorer._case import Case | ||
from fmu.sumo.explorer._utils import Utils | ||
from fmu.sumo.explorer._utils import Utils, TimeData, Property, ObjectType | ||
from fmu.sumo.explorer._child_object import ChildObject | ||
from fmu.sumo.explorer._document_collection import DocumentCollection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters