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.

This parser is aligned with archived InfluxDB v1.2 single-line parser semantics for standard text inputs. When an input point omits the timestamp, parse_line() returns None for time so omission remains distinct from an explicit 0 timestamp. Leading # comment lines, including lines with leading whitespace before #, are treated as valid input and parse_line() returns None for those lines as well. The parser also accepts the same top-level whitespace skipping before measurements, fields, and timestamps that the archived v1.2 parser tolerated, along with trailing spaces after the optional timestamp. The combined measurement/tag key is limited to 65535 bytes, matching the archived parser limit. Unsigned 123u field values are retained as a package extension even though they are not documented in the archived v1.2 reference.

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

Installation

Python 3.10 or newer is required.

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”:

# generated by sensor gateway
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:
...         point = parse_line(line)
...         if point is not None:
...             print(point)

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)
        point = parse_line(post_data)
        if point is not None:
            pprint(point)
        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

The C API keeps the original point-or-error contract. If you want to skip leading # comment lines in C code, filter those lines before calling LP_parse_line(). The C API accepts NUL-terminated strings only, while the Python wrapper rejects embedded NUL bytes instead of silently truncating input.

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-2.0.0.tar.gz (16.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-2.0.0-cp314-cp314-win_amd64.whl (16.0 kB view details)

Uploaded CPython 3.14Windows x86-64

line_protocol_parser-2.0.0-cp314-cp314-win32.whl (15.9 kB view details)

Uploaded CPython 3.14Windows x86

line_protocol_parser-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

line_protocol_parser-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (35.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

line_protocol_parser-2.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (35.4 kB view details)

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

line_protocol_parser-2.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (36.5 kB view details)

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

line_protocol_parser-2.0.0-cp314-cp314-macosx_11_0_arm64.whl (13.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

line_protocol_parser-2.0.0-cp314-cp314-macosx_10_15_x86_64.whl (13.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

line_protocol_parser-2.0.0-cp313-cp313-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.13Windows x86-64

line_protocol_parser-2.0.0-cp313-cp313-win32.whl (15.5 kB view details)

Uploaded CPython 3.13Windows x86

line_protocol_parser-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (34.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

line_protocol_parser-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (35.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

line_protocol_parser-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (35.5 kB view details)

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

line_protocol_parser-2.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (36.5 kB view details)

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

line_protocol_parser-2.0.0-cp313-cp313-macosx_11_0_arm64.whl (13.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

line_protocol_parser-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl (13.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

line_protocol_parser-2.0.0-cp312-cp312-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.12Windows x86-64

line_protocol_parser-2.0.0-cp312-cp312-win32.whl (15.5 kB view details)

Uploaded CPython 3.12Windows x86

line_protocol_parser-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

line_protocol_parser-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (35.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

line_protocol_parser-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (35.4 kB view details)

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

line_protocol_parser-2.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (36.4 kB view details)

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

line_protocol_parser-2.0.0-cp312-cp312-macosx_11_0_arm64.whl (13.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

line_protocol_parser-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl (13.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

line_protocol_parser-2.0.0-cp311-cp311-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.11Windows x86-64

line_protocol_parser-2.0.0-cp311-cp311-win32.whl (15.5 kB view details)

Uploaded CPython 3.11Windows x86

line_protocol_parser-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (33.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

line_protocol_parser-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (33.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

line_protocol_parser-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (34.2 kB view details)

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

line_protocol_parser-2.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (34.9 kB view details)

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

line_protocol_parser-2.0.0-cp311-cp311-macosx_11_0_arm64.whl (13.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

line_protocol_parser-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl (13.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

line_protocol_parser-2.0.0-cp310-cp310-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.10Windows x86-64

line_protocol_parser-2.0.0-cp310-cp310-win32.whl (15.5 kB view details)

Uploaded CPython 3.10Windows x86

line_protocol_parser-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (33.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

line_protocol_parser-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (34.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

line_protocol_parser-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (34.3 kB view details)

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

line_protocol_parser-2.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (35.1 kB view details)

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

line_protocol_parser-2.0.0-cp310-cp310-macosx_11_0_arm64.whl (13.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

line_protocol_parser-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl (13.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: line_protocol_parser-2.0.0.tar.gz
  • Upload date:
  • Size: 16.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-2.0.0.tar.gz
Algorithm Hash digest
SHA256 8bd814e82dcf58a1dbd828d0675ac3e43e1ef026c07bb7b9556fe79b9e90c33f
MD5 961de823132719d04006fd1a112cd023
BLAKE2b-256 617397fe114817806e461c23c2ba70a9578aa40365ca15fbd9aecc7940a7ec06

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0.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-2.0.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 09a4a4d8f3f0149f0979ba24e74315d819b40e4c5b4b1a6a63e5af668f1003cd
MD5 b51ad303e4efe1b8af8cc830b6f88ef4
BLAKE2b-256 b9160decc13b49ca688380e4aebbc223faf6bf051053e5a0fea20d2c6649a73e

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 af0ffc2187285d34695832873ca8dad4c020825543e2d2e64d89706fa3bda9bb
MD5 30d5c5f0eae79b1b692f9b133e0188bb
BLAKE2b-256 00b2c032de56dc53b1a4b76cad5c677ba3e24cbd94536fbfb00956a7496191bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 880276692155ee7e208eadb3e71a74a694c16b16cd350af1cc7bf1e9f07cc093
MD5 507e8377eea50fa9565a6e9589191917
BLAKE2b-256 801f8daf55ad18b554d873705ddceabdd8cc2ae8706bf86bd5aefa0d463cca60

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 792f85a3f75d3e7b24ab6501bba4caf3b84de512fae3749592cc016517dbfdc5
MD5 10ab425c973e4077831076b23ff512ef
BLAKE2b-256 c87888489e1bb63992b5747303d3014343bd48416bc4aab117118d3b0c0038df

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b5627db926ab756d5bb5a20dcbe90b8554ccf995c5e8fcf6e6610e04056de24
MD5 ef5da1639514b74ebea73f7acbd3fede
BLAKE2b-256 e303d1e76fc6623a9d8605e1ed1bb53600024ff74af4cad004178cc303fbb67c

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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-2.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eabe3b438ff2de2efa2819bf2de9d1af55402a7af625165365582aa1193faf0c
MD5 8907107698c7f707bf8189a5e36ac47a
BLAKE2b-256 3d57c2ae10ec55dde1715d4f711f842a850dc66beaddc15cc05e64252b000d23

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3eae5e3150b3500316b864df9f41f5d08571513842ee63608d7e05bfec3b920e
MD5 d9521be9f4bffd97be01a50204945c08
BLAKE2b-256 4f3016616fed4e595042a35fce64b8bb55ca35efa32e07c124c86aba279caa6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b70f48265df712b8964fcf8834a2979a020f37464fd686cb217ed8983e266769
MD5 30901b293302a3ae36f65e88de95e974
BLAKE2b-256 2b961f98560b514b111a6f5cc6e8aab567805a6b4fd1955cfb5e48332cad02e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cd3c45cc74b414837a77428deabe0d5d7def6eec7ae62da995e5f00f9d3a4e69
MD5 39cc5f11acb90c110ea0df9c29ddd574
BLAKE2b-256 d1228c66fe67704e2faf59d48a273ed4583f3474741242824eedc2d735f30786

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2e13d90209927ead197ebab2baee7412925c0d3bc494f5237b5ea10de21a87aa
MD5 0301f2bb8894ee2ea7471a550ab8eb3e
BLAKE2b-256 2e5e486616a993f96b85b4ca452c5ef19e729b7c74ec6607166386b23aa2e74d

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4f91c9cf6149fd50c4c4d3a9e85108cad31acb00948db1306b8852f30783fa2
MD5 67b3dbe698809891106aa3d2228ad9fb
BLAKE2b-256 13cb278374d9c468fde1b27baaa89d3140edf6a0be7ee3b6c521912b82736fe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e3b33fef56729099fbfad1dcbcf0d84d0513b20ac4af6fb8755d9f7ff2a75f2
MD5 c4cbe4c1e6e29ada7c2f3347d42fecde
BLAKE2b-256 a6c78253a6349d7db8bc055d5f178191f56fb3fd55621d1a7d57f3c34e453011

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4bc90ecb86af1969f06ca0b09431d105ece9a72ef23f6e95dfc79eac7207c8b
MD5 6bf16e0a523fdf12f0781e5be3b4cfc7
BLAKE2b-256 761b80690ae02ef47e4601771e804843612e44a3543643ec31a0e87909a0e14e

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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-2.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1bcf75f55fbe421d0d80ff7a0838b2b0af3421a30a28b298bf7d9f3e340eec82
MD5 14743bb017e194ec5347479d8d5b760f
BLAKE2b-256 95b4333503d5cd308b49011093438d96093fb709ae41b3aa8e0c004f6599e555

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b5dfa7cd127687014823e0ccab547e7f0dd901f9fcf3f99d39f48d347f128f7
MD5 31078243793c6489345947ad05c3e81c
BLAKE2b-256 ff581560b802ed65a9f4c2a5eff8f5cd4ecd605ec05c95283af6f8bd9a476228

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1de9dab1c7e562c93820b310e47b8e6756e15c9dac8dbf509b40c9f0996a4d8f
MD5 5d9f84ca7acb2f1deb88aefcc19d1f3e
BLAKE2b-256 8a2db4aa4f363f7a4e4a70d7037e6748d824939cfb5a969e7e7159e28456b759

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6f8a94077346d25ae556d45863597548c9054f62a39f7274662982a671554192
MD5 34b44be20ee1b7e89440b724d3a6fa48
BLAKE2b-256 77936faf544a908719beaec1d92f2c7e95d8b8be73e2a7383116d63f2e793c23

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2d767576a34badb13808010f5044bf92473754ce0c26d9a4947386c4a9a3d921
MD5 11198059b6f44b39ede31423d458b3fc
BLAKE2b-256 30b56a2de4985eef55d4953edfa8ee52cfe4c098a763d172ddbce67fe1a00739

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b22265dc0897b6c95c9cd5db232f75e3df8a78f3f9048190890ce7bb939acb7f
MD5 71f9e2e968d9a41d42aae444183a8847
BLAKE2b-256 9e6be3f05476c88164eda06819dceea6d78bbe4d1cdead99a5b1124665c959dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1271ba8d3676875d2f64255b16e6795e98ff40e76ac7093325a1ecb77ff94712
MD5 3830d820b892b101a6f739e5ea281154
BLAKE2b-256 b6664e5c5d0aadfcb7eb56576423d08a29a601f8ae4053c37a6aadbe7fe53b7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb63ca37c0629ec997302e32a687f09e11c8f91bf1d7c93c01773aa7a0d205e7
MD5 1bed265dc3925e11990bd628485d1997
BLAKE2b-256 a65d22f1053c54e893aeb8fe19f6b85f3364eec85f4b1047f6a48a0f5a73d30a

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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-2.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a90ec6535218d38897b90f3802557c8cac86480d690852014d6d83b50bcaf13e
MD5 283e18a9a8981772d5cee4db804418ef
BLAKE2b-256 be28fe807f06d73fa650d81195b1f2e635e8f9b163f342389482aafdab5f1974

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a0d1052052902d986c5b940e7f231a9bc3d0fbeaad2da8153378feb90159831
MD5 3882b11f4f89334cae8f4a17c3e0903f
BLAKE2b-256 4abee4b32073bfe57ed44ea0949b59ee48d08884bbed1e954a9fe9154f5a3a94

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d3d86bc602e612f148e58c9483847aeac041e723f50ffb79dbb39ae6dc5a61b4
MD5 987c3158fffa654f8635f34b44136420
BLAKE2b-256 d68e6d50197d617c862a25de6b303674f9dcefb591ab7a9a0bc06330688df693

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d313a1337beb7727082bfe14eec092615c6ed2b6e3eb1064f40a58ddf10c18bf
MD5 9728b29c947457f58155620a115f4dc4
BLAKE2b-256 e6d032cd23f8d01bb6fc7418219d92a98cc53bbbba700513e23977c775388fd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 51657d41de6b5a6d3130bf4a6361aa2792d02e0f2290a6dac64e95fddba65bd1
MD5 e27fe2ba6178b9cb88a0be890fd3e823
BLAKE2b-256 ac4ecaef4aff7560b71b4071abf3fa2ae961ea63a3e114c321614f5b2472b09b

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae267a9010aa3a6df175241a2d5fe202ff00e88d224b2513acd7736b6bec5792
MD5 fa486f28563694ff2b10aaa1afd3a8c7
BLAKE2b-256 1d1e0c0c9240705d3b32a6ee165ac2de21b0668e94e8510f3de7000d1dc2193c

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1cbc0e6564a493a408e43feeb6990b975c8582d7499c198273a61c8d3dc8bf6
MD5 baf322a19698fafd220e19801d92af23
BLAKE2b-256 b663730387cbce57f4e41ad8af0d5d1ceb504de42101702852cd98cd2a0a90aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1fb71572fdca8ecbc636a433e49b991f10ef2701dfda36e1658d9a9b8ebde4e1
MD5 78a86fd8f777875d079438f0650eeb8e
BLAKE2b-256 62f604c5fb9cd2457365cf1a24b015c6d542cb8449f74f2ec7226aa57b275558

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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-2.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a31162c75d221aa9e3773fe5f8ce37ea6fc4904717c9d8900c420e50e599b64
MD5 93fb1fe79fa233c8ac25c910642dae1d
BLAKE2b-256 1e2a4ba95393f43e3d4f665d51774bb60f969cd8f0811e5bc2c273d35dedf2d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4883778ac5404da973a77da02f6274c047e084e0b657ed54d886473e6af9e165
MD5 bdf6d72dc4e43b4c3f059ff5a973bbfb
BLAKE2b-256 181da5518ee6a597543dccbd64b607042309b40f4fc1dd0ed7aed146d3b51fa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c8f0083356b2ff048e2fc56982160064371eeb1e50b35bc6642c29ed2333e63a
MD5 4d29f6ecf16f5167ad867f73320ed15c
BLAKE2b-256 8eb3f6dd47b9b7f46f8d1aebe23c2ed769ecd8a07762bcaee72ebb02637fad92

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e5f6642cbafc1655728dce72b6e34c33767b4aa9668b99c4c83c10e43c7a025a
MD5 a3561721164645788bf133ad184f0084
BLAKE2b-256 0c61a605a3698df75f7a871b1181b1b928d507c3c239b86c5a1be2030269b1b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 95ca4cd433a11cd46bf961946b6332d47c2d0d1db753a910cac24be8c41f7f6c
MD5 afabe782ff50dde7d48c3536fefc27ba
BLAKE2b-256 ff5e5ab3a5e96c7a1cc27496cbda494c678752538bb8cca4296419d1ce3a09f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 013ede7b3a14284359697e177250b5085af4c90f1bdf373b251675946bea4f62
MD5 c31e677537dadd4f80cf03be3b4da55b
BLAKE2b-256 b343413142a86b4140fdea00bf502863af489a3d7643d39ab1137e98efbd0327

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ead0c5c09e6241d5762d45e1c6a87ca34af1f460a7b398f496f09dcaccc8221
MD5 47d802351c05a3ee0f938c3091dd6d3b
BLAKE2b-256 e75e41807b01f0861f2b4a06d32fed55eb249d30e8a6257d7f16ebbff7af3822

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53b410ef2506f3466436ae09ae56b8f39104acf12d8f5b1e8ca3b91ec427ce32
MD5 7adebd8e47473512e2aac3846162ac79
BLAKE2b-256 58b003a84f8a6f17d76845193543052c727dea4f421980fdf0545e1a1226b933

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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-2.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f0256f16fbf44bdb4109e83c95ea3d0e418fbae4355f3f909a2e3d79d3743d2
MD5 c6b84854a2b2d510ca49bcf37f0f43b2
BLAKE2b-256 1c7f037af1104a9e9e43f4716296cdd1154fce914f02ea1bde3315cb1698060b

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcfb84e76fd5d43dd923a1606b751a0e4a0a2e10674133acdaf0514692a6893a
MD5 cbb15293d2537c78315d780e5b9b28f6
BLAKE2b-256 bef5c32bf76f8aed4bcc2df690e5b113b24e49e4a453dca06fb1880a4d43bb8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for line_protocol_parser-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f7eb3000cc891314a9c7762e9a32b5d73ebb0d25444126b2e3f2467869d7478
MD5 007779378343591e341f1026677c182e
BLAKE2b-256 581509c9b0266c4d9073aba09c1f8535f4956b72b48d010e2476715d7b87b625

See more details on using hashes here.

Provenance

The following attestation bundles were made for line_protocol_parser-2.0.0-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.

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