-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e827a2
commit 35645e1
Showing
18 changed files
with
106 additions
and
171 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
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
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
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
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,34 +1,29 @@ | ||
# ruff: noqa | ||
# generated by datamodel-codegen: | ||
# filename: partial_event_page.json | ||
# timestamp: 2024-12-18T10:56:19+00:00 | ||
# timestamp: 2024-12-19T14:19:55+00:00 | ||
|
||
from __future__ import annotations | ||
|
||
from typing import Dict, List, Optional, TypedDict, Union | ||
from typing import Dict, List, TypedDict, Union | ||
|
||
from typing_extensions import NotRequired | ||
|
||
DataFrameForEventPage = Optional[Dict[str, List]] | ||
|
||
|
||
DataFrameForFilled = Optional[Dict[str, List[Union[bool, str]]]] | ||
|
||
|
||
class PartialEventPage(TypedDict): | ||
data: DataFrameForEventPage | ||
data: Dict[str, List] | ||
""" | ||
The actual measurement data | ||
""" | ||
filled: NotRequired[Optional[DataFrameForFilled]] | ||
filled: NotRequired[Dict[str, List[Union[bool, str]]]] | ||
""" | ||
Mapping each of the keys of externally-stored data to an array containing the boolean False, indicating that the data has not been loaded, or to foreign keys (moved here from 'data' when the data was loaded) | ||
""" | ||
time: List[float] | ||
""" | ||
Array of Event times. This maybe different than the timestamps on each of the data entries | ||
""" | ||
timestamps: DataFrameForEventPage | ||
timestamps: Dict[str, List] | ||
""" | ||
The timestamps of the individual measurement data | ||
""" |
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
Oops, something went wrong.