Metadata-Version: 2.1
Name: influx-line-protocol
Version: 0.1.4
Summary: Implementation of influxdata line protocol format in python
Home-page: https://github.com/SebastianCzoch/influx-line-protocol
Author: Sebastian Czoch
Author-email: sebastian@czoch.pl
License: MIT
Description: [![Build Status](https://travis-ci.org/SebastianCzoch/influx-line-protocol.svg?branch=master)](https://travis-ci.org/SebastianCzoch/influx-line-protocol/branches) [![PyPI version](https://badge.fury.io/py/influx-line-protocol.svg)](https://badge.fury.io/py/influx-line-protocol) [![License](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://github.com/SebastianCzoch/influx-line-protocol/blob/master/LICENSE)
        # influx-line-protocol
        Implementation of [influxdata line protocol](https://docs.influxdata.com/influxdb/v1.6/write_protocols/line_protocol_tutorial/) format in python
        
        ## Installation
        ```bash
        $ pip install influx_line_protocol
        ```
        
        ## Usage
        ```python
        from influx_line_protocol import Metric
        
        metric = Metric("weather")
        metric.with_timestamp(1465839830100400200)
        metric.add_tag('location', 'Cracow')
        metric.add_value('temperature', '29')
        
        print(metric)
        """
          Will print:
          weather,location=Cracow temperature=29 1465839830100400200
        """
        ```
        
        Multiple metrics example
        ```python
        from influx_line_protocol import Metric, MetricCollection
        
        collection = MetricCollection()
        metric = Metric("weather")
        metric.with_timestamp(1465839830100400200)
        metric.add_tag('location', 'Cracow')
        metric.add_value('temperature', '29')
        collection.append(metric)
        
        metric = Metric("weather")
        metric.with_timestamp(1465839830100400200)
        metric.add_tag('location', 'Nowy Sacz')
        metric.add_value('temperature', '31')
        collection.append(metric)
        
        print(collection)
        """
          Will print
          weather,location="Cracow" temperature=29 1465839830100400200
          weather,location="Nowy Sacz" temperature=29 1465839830100400200
        """
        ```
        
        ## License
        See [LICENSE](https://github.com/SebastianCzoch/influx-line-protocol/blob/master/LICENSE) file.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
