Metadata-Version: 1.1
Name: libthither
Version: 0.10.1
Summary: Python Library for Thither.Direct
Home-page: https://thither.direct/information/services/commercial/index
Author: Kashirin Alex
Author-email: kashirin.alex@gmail.com
License: MIT
Description: Thither.Direct library for python
        ============================
        
        Check out the `documentation`__ for more complete examples.
        
        .. __: https://thither.direct/information/services/commercial/index
        
        
        Installation
        ------------
        
        Install python libthither:
        
        .. code-block:: console
        
            pip install libthither
            
        
        
        Creating a Flow Metrics Statistics Client
        ------------------------
        
        .. code-block:: python
        
            from libthither.api.fms import FlowMetricsStatisticsClient
        
            client = FlowMetricsStatisticsClient(
                'YourFlowID',
                pass_phrase='YourPassPhrase',
                https=True,
                cipher='',
                keep_alive=True,
                json=False
                requests_args={},
                )
            # after initiated, client can be called with:
            client.push_single(YourMetricId, DateAndTime, Value)
            client.push_list([[Metric ID, DateTime, Value],])
            client.push_csv_data("mid,dt,v\nYourMetricId,DateAndTime,Value")
        
        
Platform: any
Classifier: Programming Language :: Python
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Manufacturing
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Customer Service
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: Log Analysis
Classifier: License :: OSI Approved :: MIT License
