You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
462 B

"""
It is the place where we put all classes and types
which is common for all of the code.
For example, if you write someting which is used
in analytic_unit_manager, it should be here.
If you create something spicific which is used only in one place,
like PatternDetectionCache, then it should not be here.
"""
import pandas as pd
from analytic_types.data_bucket import DataBucket
AnalyticUnitId = str
TimeSeries = pd.core.indexes.datetimes.DatetimeIndex