Metadata-Version: 2.1
Name: influxdb-data-processor
Version: 0.0.3
Summary: A data processor for data in influxDB
Home-page: UNKNOWN
Author: Pikacent (Chai Wen Xuan)
Author-email: <vicentchai@hotmail.com>
License: UNKNOWN
Description: 
        # influxdb-data-processor
        A data processor for data in influxDB.
        
        
        Developed by Chai Wen Xuan 2021
        
        ## Uses:
        - To fill in missing value cause by random error from data collector
        - To produce fixed time sampling range data
        
        
        ### Processing CSV file
        
        ```python
        import pandas as pd
        
        from influxdbDataProcessor.processor import processcsvdata
        
        df = processcsvdata()
        ```
        
        #### Required input:
        1. Token
        2. influxDb url
        3. Organization
        4. Bucket name
        5. CSV file location
        6. Sampling frequency (1 day: '1d', 1hour: '1h', 1 minute: '1t', 1 second: '1s')
        7. Data range (1 day: '1d', 1hour: '1h', 1 minute: '1m', 1 second: '1s')
        
        #### CSV file format:
        - Only two column ("Measurement", "Field")
        
        
        ### Processing array data
        
        ```python
        import pandas as pd
        
        from influxdbDataProcessor.processor import processarraydata
        
        df = processarraydata(measurementArr,fieldArr)
        ```
        
        #### Required input:
        1. Token
        2. influxDb url
        3. Organization
        4. Bucket name
        5. Sampling frequency (1 day: '1d', 1hour: '1h', 1 minute: '1t', 1 second: '1s')
        6. Data range (1 day: '1d', 1hour: '1h', 1 minute: '1m', 1 second: '1s')
        
        
        
        
        
Keywords: python,video,stream,video stream,camera stream,sockets
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
