Skip to main content

Parse InfluxDB line protocol string into Python dictionary

Project description

Parse InfluxDB line protocol strings into Python dictionaries.

Example:

>>> from line_protocol_parser import parse_line
>>> data = parse_line('myMeas,someTag=ABC field1=3.14,field2="Hello, World!" 123')
>>> print(data)
{'measurement': 'myMeas',
'fields': {'field1': 3.14, 'field2': 'Hello, World!'},
'tags': {'someTag': 'ABC'},
'time': 123}

The InfluxDB line protocol is a text based format for writing points to InfluxDB. This project can read this format and convert line strings to Python dicitonaries.

The line protocol has the following format:

<measurement>[,<tag_key>=<tag_value>[,<tag_key>=<tag_value>]] <field_key>=<field_value>[,<field_key>=<field_value>] [<timestamp>]

and is documented here: InfluxDB line protocol.

The line_protocol_parser module only contains the parse_line function and the LineFormatError exception which is raised on failure.

Installation

From PyPI:

$ python3 -m pip install line-protocol-parser

or from source (make sure you have python3 -m pip install wheel setuptools first):

$ git clone https://github.com/Penlect/line-protocol-parser.git
$ cd line-protocol-parser
$ python3 setup.py bdist_wheel
$ python3 -m pip install ./dist/line-protocol-parser-*.whl

or from generated Debian package:

# Install build dependencies
$ sudo apt install python3-all python3-all-dev python3-setuptools dh-python
$ git clone https://github.com/Penlect/line-protocol-parser.git
$ cd line-protocol-parser
$ make deb
$ sudo apt install ./python3-line-protocol-parser_*.deb

Use Case 1: Read points from a file

Suppose you have a text file with influxDB measurement points, “my_influxDB_points.txt”:

myMeasurement,someTag=A temperature=37.0 1570977942581909918
myMeasurement,someTag=A temperature=37.3 1570977942581910000
myMeasurement,someTag=A temperature=36.9 1570977942581912345
myMeasurement,someTag=A temperature=37.1 1570977942581923399
...

Then you can load each line into a dicitonary to be printed like this:

>>> from line_protocol_parser import parse_line
>>> with open('my_influxDB_points.txt', 'r') as f_obj:
...     for line in f_obj:
...         print(parse_line(line))

Use Case 2: InfluxDB subscriptions

InfluxDB subscriptions are documented here: InfluxDB Subscriptions.

InfluxDB subscriptions are local or remote endpoints to which all data written to InfluxDB is copied. Endpoint able to accept UDP, HTTP, or HTTPS connections can subscribe to InfluxDB and receive a copy of all data as it is written.

In this example we will do the following:

  1. Setup and run a InfluxDB container.

  2. Create a subscription.

  3. Create a Python server and register it as an endpoint.

  4. Use line_protocol_parser to read and print incoming data.

Step 1. Run the following commands to run a InfluxDB container and attach to the influx client.

$ docker run -d --network="host" --name inf influxdb
$ docker exec -it inf influx

Step 2. Create subscription. Run these commands in the influx client prompt.

> CREATE DATABASE mydb
> USE mydb
> CREATE SUBSCRIPTION "mysub" ON "mydb"."autogen" DESTINATIONS ALL 'http://localhost:9090'

Since we used –network=”host” we can use localhost from inside the container.

Step 3 & 4. Python server to receive InfluxDB data.

Create a python file server.py with the following content:

from pprint import pprint
from http.server import HTTPServer, BaseHTTPRequestHandler
from line_protocol_parser import parse_line

class PostHandler(BaseHTTPRequestHandler):

    def do_POST(self):
        content_length = int(self.headers['Content-Length'])
        post_data = self.rfile.read(content_length)
        pprint(parse_line(post_data))
        self.send_response(200)
        self.end_headers()

if __name__ == '__main__':
    server = HTTPServer(('localhost', 9090), PostHandler)
    print('Starting server, use <Ctrl-C> to stop')
    server.serve_forever()

Start the server:

$ python3 server.py
Starting server, use <Ctrl-C> to stop

Next, go back to your influx client and insert a data point:

> INSERT oven,room=kitchen temperature=225.0 1234567890

Head back to your Python server and watch the output:

$ python3 server.py
Starting server, use <Ctrl-C> to stop
{'fields': {'temperature': 225.0},
 'measurement': 'oven',
 'tags': {'room': 'kitchen'},
 'time': 1234567890}
172.17.0.2 - - [14/Oct/2019 21:02:57] "POST /write?consistency=&db=mydb&precision=ns&rp=autogen HTTP/1.1" 200 -

Pure C usage

If you are not interested in the Python wrapper you may find the pure-c files useful:

  • include/line_protocol_parser.h

  • src/line_protocol_parser.c

Example:

int main()
{
    const char *line = "measurement,tag=value field=\"Hello, world!\" 1570283407262541159";
    struct LP_Point *point;
    int status = 0;
    point = LP_parse_line(line, &status);
    if (point == NULL) {
        LP_DEBUG_PRINT("ERROR STATUS: %d\n", status);
    }
    // < Do something useful with point here >
    LP_free_point(point);
    return status;
}

Please see the comments in the source and header file for more information.

Examples from the Test Cases

The test cases are a good source of examples. Please see: tests/test_parse_line.py.

Changelog

The changelog is maintained in the debian directory, please check there: changelog.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

line_protocol_parser-1.1.4.tar.gz (11.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

line_protocol_parser-1.1.4-cp314-cp314-win_amd64.whl (14.1 kB view details)

Uploaded CPython 3.14Windows x86-64

line_protocol_parser-1.1.4-cp314-cp314-win32.whl (13.7 kB view details)

Uploaded CPython 3.14Windows x86

line_protocol_parser-1.1.4-cp314-cp314-musllinux_1_2_x86_64.whl (28.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

line_protocol_parser-1.1.4-cp314-cp314-musllinux_1_2_aarch64.whl (28.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

line_protocol_parser-1.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (30.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

line_protocol_parser-1.1.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (28.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

line_protocol_parser-1.1.4-cp314-cp314-macosx_11_0_arm64.whl (11.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

line_protocol_parser-1.1.4-cp314-cp314-macosx_10_15_x86_64.whl (11.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

line_protocol_parser-1.1.4-cp313-cp313-win_amd64.whl (13.8 kB view details)

Uploaded CPython 3.13Windows x86-64

line_protocol_parser-1.1.4-cp313-cp313-win32.whl (13.3 kB view details)

Uploaded CPython 3.13Windows x86

line_protocol_parser-1.1.4-cp313-cp313-musllinux_1_2_x86_64.whl (28.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

line_protocol_parser-1.1.4-cp313-cp313-musllinux_1_2_aarch64.whl (28.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

line_protocol_parser-1.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (30.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

line_protocol_parser-1.1.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (28.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

line_protocol_parser-1.1.4-cp313-cp313-macosx_11_0_arm64.whl (11.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

line_protocol_parser-1.1.4-cp313-cp313-macosx_10_13_x86_64.whl (11.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

line_protocol_parser-1.1.4-cp312-cp312-win_amd64.whl (13.8 kB view details)

Uploaded CPython 3.12Windows x86-64

line_protocol_parser-1.1.4-cp312-cp312-win32.whl (13.4 kB view details)

Uploaded CPython 3.12Windows x86

line_protocol_parser-1.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (28.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

line_protocol_parser-1.1.4-cp312-cp312-musllinux_1_2_aarch64.whl (28.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

line_protocol_parser-1.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (30.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

line_protocol_parser-1.1.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (28.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

line_protocol_parser-1.1.4-cp312-cp312-macosx_11_0_arm64.whl (11.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

line_protocol_parser-1.1.4-cp312-cp312-macosx_10_13_x86_64.whl (11.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

line_protocol_parser-1.1.4-cp311-cp311-win_amd64.whl (13.8 kB view details)

Uploaded CPython 3.11Windows x86-64

line_protocol_parser-1.1.4-cp311-cp311-win32.whl (13.4 kB view details)

Uploaded CPython 3.11Windows x86

line_protocol_parser-1.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (27.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

line_protocol_parser-1.1.4-cp311-cp311-musllinux_1_2_aarch64.whl (27.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

line_protocol_parser-1.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (29.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

line_protocol_parser-1.1.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (27.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

line_protocol_parser-1.1.4-cp311-cp311-macosx_11_0_arm64.whl (11.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

line_protocol_parser-1.1.4-cp311-cp311-macosx_10_9_x86_64.whl (11.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

line_protocol_parser-1.1.4-cp310-cp310-win_amd64.whl (13.8 kB view details)

Uploaded CPython 3.10Windows x86-64

line_protocol_parser-1.1.4-cp310-cp310-win32.whl (13.4 kB view details)

Uploaded CPython 3.10Windows x86

line_protocol_parser-1.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (27.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

line_protocol_parser-1.1.4-cp310-cp310-musllinux_1_2_aarch64.whl (27.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

line_protocol_parser-1.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (29.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

line_protocol_parser-1.1.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (28.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

line_protocol_parser-1.1.4-cp310-cp310-macosx_11_0_arm64.whl (11.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

line_protocol_parser-1.1.4-cp310-cp310-macosx_10_9_x86_64.whl (11.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

line_protocol_parser-1.1.4-cp39-cp39-win_amd64.whl (13.8 kB view details)

Uploaded CPython 3.9Windows x86-64

line_protocol_parser-1.1.4-cp39-cp39-win32.whl (13.4 kB view details)

Uploaded CPython 3.9Windows x86

line_protocol_parser-1.1.4-cp39-cp39-musllinux_1_2_x86_64.whl (27.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

line_protocol_parser-1.1.4-cp39-cp39-musllinux_1_2_aarch64.whl (27.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

line_protocol_parser-1.1.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (29.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

line_protocol_parser-1.1.4-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (27.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

line_protocol_parser-1.1.4-cp39-cp39-macosx_11_0_arm64.whl (11.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

line_protocol_parser-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl (11.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file line_protocol_parser-1.1.4.tar.gz.

File metadata

  • Download URL: line_protocol_parser-1.1.4.tar.gz
  • Upload date:
  • Size: 11.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for line_protocol_parser-1.1.4.tar.gz
Algorithm Hash digest
SHA256 79dc008a30baff7493db1d1176c9d55d9245c89a179469b879536d1c4f8a686d
MD5 2d929b38a1a460ab0217e8451f79b83a
BLAKE2b-256 a28cef582ab7cf4ebf7c836b8a5392e87a55dc9eb1fa83c1cd3e097eebdaefd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4.tar.gz:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c261febdf3de6d651892b22d352310c4ead4794b019227d2953b7e89f56cf01b
MD5 083b29ddf51976b6944fccfea80de16c
BLAKE2b-256 8cff6af1af8fbfd1b967d0ce4809123877be4f07c38519c6f35ecef6ba085b0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 84ab1e9ed7d20363cad0e91edd9dea62ac72f6ea7cbfe03a15ed4d046000a915
MD5 ab67201fc27adb5600c1f4812c2d932a
BLAKE2b-256 e478addb3c51052cd0c0edd25dd6de5625c2c0c470b96ec61f933b6ed0f27e02

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp314-cp314-win32.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30f64336ebb3801e5bfb03ba194ccf79af38ff51ae521ab5f6497786e460eab4
MD5 9e84eb3f476bd7f56c2f9c1fa0464d9e
BLAKE2b-256 bfbd6df1b49a9c717c559523f485c304c09bb2b9becfff2f8f4ed7edd6067288

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cff713408995665d664372658a1a209dac776cdafc1123fed22cb150566c9ec4
MD5 1377fb1ff623f406c0f84295e91e8cf3
BLAKE2b-256 a51e193ee2fe3bc4d5247766feae0d2a2ca8cab0a7cb17a664d0542f6802771a

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 60eac5f0ee8b7fe9f34490e42673778de28c2e2b23a14037bb34877252c25b06
MD5 b7acc3b960333ea7c3b2530e6fe94e58
BLAKE2b-256 073ab947b495cc8ace3300c95f1ae76e04d84055652de2b8cefc9844a0ea5f72

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 80eb5e01391e98bb42474bc431efcb23dceaae85ca405ffa45fbed9c7d2c8db4
MD5 0df7b0d1642566260afa4fc2d6eee0fb
BLAKE2b-256 a8416dd7930eac06280df00eb6c755e3f6c98d2ebb4e06daef29235cd241f9ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7475bba53cbdab3b529f94e5e942b8bd5f8662b24b8f81181c7f229cfc39f9d4
MD5 8407bfa4c373321b13611c7f7c733b1d
BLAKE2b-256 8fbf163f5d0d563c5e5ee8e8fa539845fafd4e7eca6dafaf68369af20ca80b2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8af04707a88c02545a621a13106faa9ea5a1f60979cdf95bfec32b98e5d930a7
MD5 37f6cb319d25827e5bfef828886a4474
BLAKE2b-256 25f071b8cae34769efa32a364597f2e19a6b2d58731de346a567768f6b3a91a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 865ae2160ffb78c4c14e9f7f98281ac3dddb48c49a7564f8db84060d7ecee3f2
MD5 aa169cb4fa172843217e6431efc25f6f
BLAKE2b-256 81396c44898794f42c82fd74a9bc753aa384f4cb8461f323cfd662b33eed9a0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7579b2d29aa25bceb8ccbfc095a7ba45b27d77d3dab3da00f28f5b403a54b7e3
MD5 3a788e5badf46f0ffba23aa68884d4ae
BLAKE2b-256 c1895dcb308895eaf1d315030b99d23db72655e939d46b219da6be744217dfcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp313-cp313-win32.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9057a6b50a003bbbb74e7ccac1ff918153b345697284ffaf1038892b7666fc4a
MD5 9f098484d275c6da4fbaf39e0013e826
BLAKE2b-256 cd5eba6bb63736e3fe3f7057593290b5f02ec3a86dac9419b16a5fa57a13a38a

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67a8d66b5fb5726f982363e1a47969c48847ac97eb723191d0a1049dfb26de05
MD5 378dab79eecefff710a284c86007b1e5
BLAKE2b-256 5e53c9ec7b62827a36b95e5bf2019d75ca244f6581790dd659935693a0168dd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f129d0724102d4fa31bd10509c33cab057b7408425fab443d8897d8fc68d15cc
MD5 c518cb69839f6f5ac2e7ce472c6bd515
BLAKE2b-256 918945ff98277651a999be4ef621ca62b90541d7ffd792967173304b9774efac

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a64cc26f70ba9c27785a9c3d8ecbd383f7669bb54c258c066513e345bcdb7d55
MD5 6594abde7474d900f896781f52918bb8
BLAKE2b-256 2d9b6bc497a2e7fec8b75234fe15cb09384441ad6a335f61d2317e9906b97ac9

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f67bff82af039e40a42e80d4c33ea2c69e735326d28b233b00d687baca8c615
MD5 504d25498d6aab7e3b7d24cf33b10225
BLAKE2b-256 858f4ae931c40bea033e6c495e275dd159251c11b3260ed17a13fcd598068190

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a38f9e5c51572d1bc07772858da68f4ccb0b1b3aa8bf80b9638b33278e83d9c7
MD5 229e9e68d91d68b4841203aff132f701
BLAKE2b-256 83158d4e4f2267d5018bf108a34ef08db989d87cec0222a4a2ad78e7c7cbc2ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a767b2ba1f6d297e0304f7361866106e84cbf4f92ac60747e1a500b3672dc9b3
MD5 eabf2605ea88753518a813f700db8013
BLAKE2b-256 0fdc72bc3c6fac18537f0a2901be0875b8dc128f4d52ef2d1ecc77414aba7251

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fb9170b03fc2196154a0d619410c9ba9a1b191d39725c2e1eece242b907f4fb8
MD5 902431a47a4829a3e517edec7576b9b4
BLAKE2b-256 d20f2479db1c698e48f2bb66214aa34699395a488c29c4d22ccab9e75e725a2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9f5a5aa0a34c6469f5a92180e61983592798c3b48b4c50ec8f0ffd2a8835920
MD5 ce01ade2f522400f77908791ddd38855
BLAKE2b-256 300c11961bef9c29d48645391c7cfbfad02f13b5ca4dbfdc630f0f890c037dfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 647f3fdfca1bbe21a1fc9d8d39f1daf3f8a312e7ec9d2ab5dfe48f86703641db
MD5 1363d8e111c4c694178a74e423955cc9
BLAKE2b-256 57aa3017fdd365d039f572496801ba0e15f51dd15c56bc711edff632a8b0df6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 96a471a1cffc76252cf186bf728244728f6e9bd0a24f8a48993d87e6eec40f18
MD5 38a5e0edb2436c7ee6b3eac2929bf6ce
BLAKE2b-256 ce928cfe8ef49213204eddaa03f5d257eb794ef907789e0c56a77948f4198eb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 25fb65adf5f2b37889268081f1cd7d232b1b7f1c7119576928b7c4ed93dd84ad
MD5 e7cdb08164c9cee079d94f4ef2163829
BLAKE2b-256 50727cb3961496ca27b7a16f3696f6d1e5de3a759c02c2804cff0d3e89c480fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5eebebc507e47752b434f3939c4e68565c1fa05edeaa3a493a4872bf82c3fd1f
MD5 ed0fde8583b53b2c89cd15fb917639f7
BLAKE2b-256 5dd3593d1859578f7bdf00abfc4c751a18f7ec34ca50d4cf47fb15501d901b96

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 918da90f6ddc3d31367f6e3c2a1d4e5b05d1c18c340269f999c937893af78f97
MD5 7226c5c1bc184b3cf6f446ab9c24ac83
BLAKE2b-256 5f48c3a3e36683697a5443ee52d41b92236bb8bec66296c637ae4fb2cf853493

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0e5207a510982a85bb436bfa9b7939cb64e42b5e28a140c760483e507859a2fb
MD5 8096df548a7a9c971fd77617f7d5b60d
BLAKE2b-256 ab34341124a3d531d1782e93846a60aa4c31f3de4e21696102b210db382d0b90

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 311432e9df45050ded1d54a42ad7f320cd5189e63b24ade4f707a6dc14b5f0a0
MD5 1ecf348851c09469dc222794037d6e66
BLAKE2b-256 09ab1db1e0293a98bf3fd26846dcc910e875e48d553a549b2a630562d6d4e86e

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd1b89898d3828c080fbc0b9c3cc98300ee2dc6393f163e4e9f4fb509ac6476a
MD5 48a5fc0c338373ac487850447bcfaf20
BLAKE2b-256 d7f65c155a92ce4cb4c84867457c5e214b8e1c86e52b606baab637720ccc4157

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09f436d38b6ed783861f9b1b4b9f3ae3eb1128c36f2b0f232fc6e49873506196
MD5 7fd4908d38db6e7c07c89415b7993664
BLAKE2b-256 68ed34fef71ef7587bf4ebba9f6014efd7d513e19e62111e1b7b9ae5ea4a83bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2573bcdb67dd7edb32525b2e550a264353518da82024fed2295b8074efb49b95
MD5 2bcdba5e8322061ac36511c445bd8879
BLAKE2b-256 339941dd9f2ee3fda10b43a0ba795f9e50c90a07ecb658063e73932ed110ebf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 49862980570724eef6bc551a6c51c6fbb2389c30854ff0d7153dd9e1f667dde1
MD5 277381e643feb77ddc69f39e1e27262e
BLAKE2b-256 5b50c60404de3ae1de2449a1b7f3b6ae2145322ce5b25068e7e28b142dba65fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b986cdfe1b819be7230d18c784f4929c45d7b48b4bf4868034420abdc307cc6
MD5 168c82205e94148a898162d2aa1a2a26
BLAKE2b-256 4a3b4c45a25391019c2bc7d4153a740e3206554de7165b009441eefaa7bcfc1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b218a5d6eaf6b053a3a9100b8111783a22eaba67ea9f56ebbdeb13f880674a7e
MD5 e434f93194327da550e5c16bc84570b6
BLAKE2b-256 c2efec9a51df9a184e9ea0e474c2c0cacd394e7b41a0056ef711c3002538e517

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8dce63a067418f8f3a06b63bdd689516a94c7788952eb27cc5039d0315b11d16
MD5 6cdd33e8675dfb4a723f22d033881d7e
BLAKE2b-256 9a35179634361649f2d5f4279c26039bdcafe281577a762f4f53c34d67b55a06

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 455159a7eb535ca2c4b9ed247e71b11d443c667fc7266fd7f1e5fc83dfb1a8d3
MD5 d27a3e523faaa23c35779ff9446f3ca0
BLAKE2b-256 6ac7c88e9e83f8781f597272c66b3b598e7948428c2d1d3cca99c2472caef80d

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d12f432f7713e4451d1655639be870adb8bd54477e3ea566b6bc9815ddee503
MD5 62da30766acce0c81edf02a48097c1e7
BLAKE2b-256 26cacbfcf5a66714ca55c88f01e7226803311589f7b2448fdf6e0c9d4fcbcdf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 763310d193251584040099896483acbf08f9dfc43e28dcd51f0a19815f7ace65
MD5 2849d349b1d4ecd65a50461e8ab23e82
BLAKE2b-256 dca1f640d0e0b7de4c0a9eae3c229e8bfabc1788126bec274979e777ea1b8e50

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5366e203bfad22b1e3564fcdcb18ffd62b2df4b3222b22e4ae78c560f3727050
MD5 65786833e2dd6c25e4ad770a5e7600a7
BLAKE2b-256 ced3d9b624f7f208589f3ed55177a8ba30f0ec325d457f74246b68e08ebdd8f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8aa322e758a4a0893b6192c9980359d53f67df61d012c154c46039237dfc01a7
MD5 66dc7aa4ccfdf0f1efe8cdc56c114c89
BLAKE2b-256 8d40a458186332afb7010af6e612070115b1b8c06ef0ceea2bb981ecbaa2b0b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c11f4b0fda1b32b2c0a68bf33f882db839389b111d118ce99ca894a4baf5e06c
MD5 8d60a20ac82735f606175a8ec1a81298
BLAKE2b-256 15714dbc7f53c3f0c75e2bf3e64871e852fe1b6abe7ed9a5fd2d48e1a225db6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f4a9547b737d680516e84f1b92ce97eb8161f46904a42fccd0db59116359c6a
MD5 c7d8c5fbbea762219cf82e0c5023a61a
BLAKE2b-256 1f5185b39c62900085b4902554c2e718c4e691bca5f5e08f9898f607904ac63b

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 747b59379208c553429d88363ece4a134fe99b86638de1216e77c008a9b76531
MD5 bdc62b5593ca5f4cf72d144198b32d9d
BLAKE2b-256 625457daa0734e311d41f1b76bad045a89434962f75cbbacd810f847afe3c281

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 58fc97dae3ae02358213b8c8d8feee31d37bf86570f843d96245f2433793c818
MD5 9311bfa33784123143b6a7cd5d1c1b54
BLAKE2b-256 87f9aa3da1fc34b90e9ea2c25447960b75a7fdf30821bc6814131feaf3535275

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp39-cp39-win32.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cec5f8eacdf2ba1a8320ba008ddc9236df73d674e17a31ca7a3e03a02b69df2b
MD5 336179fb9e6655451abdce22a4e6c05f
BLAKE2b-256 830be8b0cc4402c1aadd24595b34c6bab7d36b09527cc3cca20b679dd57a9660

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7711941c5d32ecbafe405247d8c6a05e3df46c27295237f4f8757c83b770ea75
MD5 7429116d1b1b62d7c4004693f3826bb0
BLAKE2b-256 5b7e44d42e335187272770265c45f25af2dd4d9571f3e450ee26edcf120038fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cff075ddf331785639e1431ba1b84461541ef0fd23509be86f2eb23e65f405ec
MD5 7e1c1546e92fc6d8ebba1e0f5753e029
BLAKE2b-256 57d49114652d59788b886a41d3e6e2d1833803338fdbf888064aa32e5cf3a3f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 afcf891bef987a7c920027c3c5212242cb20e109eaa0a0a546fb93efe270e54c
MD5 f9aabde4ab4a5c2c82a41dcf40884d50
BLAKE2b-256 108c9675b7c323bbdb880d1c8cee55d76d739c6a2ee3336122e1621690e2e6b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7dc9129ebec44ba8f961f582780c70c20deabfd09e64581722a63be88d066a9
MD5 f6374be4f10fdd80c5b15ec33f9b4c4a
BLAKE2b-256 2b3457fb8da5d3988ce922ce1c8ba7fe4b46a13cc19ee77bc91642cd0bfa0680

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file line_protocol_parser-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1de6a513981da871899cdb36c2de7a7e94de29f523fc53b1eddcd5bc02093f8
MD5 7e7c6e4ae66ddfd1b061c4097c434ce9
BLAKE2b-256 f78b10d5c8de2bb78e58af2af8c365d3c53ddadba5c7e717505e7949b38d0ad7

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on Penlect/line-protocol-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page