Metadata-Version: 2.1
Name: featman
Version: 0.0.1
Summary: A built up feature tool. Used to make everything simipler
Home-page: UNKNOWN
Author: Kevin Hill
Author-email: kevin@funguana.com
License: UNKNOWN
Description: # Featman
        Features and sh*t. Use as an abstraction to `Spaceman`. It can be used with the storage layers spaceman provides.
        
        ```python
        from featman import Features
        
        features = (
            Features(host="localhost", db="global")
                .set_storage("...")
                .set_type("...")
                .set_time(now=False, back=True, month=0, day=0, hour=0, minute=30)
                .set_data(dataframe: pd.Dataframe, time_index=True, scale="minute")
                .set_data(dataframe: pd.Dataframe, time_index=True, scale="minute")
                .set_data(dataframe: pd.Dataframe, time_index=True, scale="minute")
                .set_data(dataframe: pd.Dataframe, time_index=True, scale="minute")
                .push()
        )
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
