This file contains hidden or 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
| from datetime import datetime, timedelta | |
| from collections import defaultdict | |
| """ | |
| Based on the work done on this paper | |
| https://www.conviva.com/wp-content/uploads/2023/01/Raising-the-Level-of-Abstraction-for-Time-State-Analytics.pdf | |
| Neat work C3! | |
| """ | |
| class Event: | |
| """ |
OlderNewer