Skip to main content

A thin library to send messages to journald using its native protocol.

Project description

📜 journald-send

made-in-vietnam journald-send ReadTheDocs Common Changelog

A thin Python library to write messages to journald (Linux system logging) using its native protocol.

💡 Features

  • Simple functions to log messages directly to journald using its native protocol.
  • Best for structured logging.
  • Pure-Rust (not depending on libc, although PyO3 may include it when linking with CPython).
  • Not depend on C-based libsystemd (as journald-send focuses on writing to journald, not reading nor interacting with systemd).

🤔 Motivation

Previously, I used systemd-python, but this library was slow to release, and its support for Python 3.14, especially in free-threaded mode, was unknown. So I developed journald-send to support Python 3.14 and free-threaded mode.

It is implemented using pure-Rust rustix and memfd crates, which provide an elegant, Rust-ergonomic API compared to libc.

📦 Installation

Install via pip:

pip install journald-send

Or using uv:

uv add journald-send

🐍 Usage

Import and use the send function:

import journald_send
journald_send.send('Hello, journald!')

Or use the JournalHandler for Python logging framework integration:

import logging
from journald_send.log_handler import JournalHandler

log = logging.getLogger('my-app')
log.addHandler(JournalHandler(SYSLOG_IDENTIFIER='my-app'))
log.warning('Something happened')

📁 Examples

See examples in the examples folder.

📖 Documentation

Full documentation is available at Read the Docs.

🤝 Contributing

Contributions welcome; open an issue or PR.

🔧 Development

Prerequisites

  • Python >= 3.12
  • Rust toolchain
  • uv package manager

Setup

uv sync --all-groups

Build

uv run maturin develop

Run Tests

uv run pytest

Build Documentation

just docs

🙏 Acknowledgement

This project learned from tracing-journald library for how to talk with journald at low level.

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

journald_send-0.3.0.tar.gz (59.7 kB view details)

Uploaded Source

Built Distributions

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

journald_send-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (419.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

journald_send-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl (449.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

journald_send-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (483.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

journald_send-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (377.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

journald_send-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

journald_send-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (239.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

journald_send-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (229.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

journald_send-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (207.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

journald_send-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (200.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

journald_send-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (226.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

journald_send-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (420.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

journald_send-0.3.0-cp314-cp314-musllinux_1_2_i686.whl (450.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

journald_send-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl (485.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

journald_send-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (378.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

journald_send-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (208.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

journald_send-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (241.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

journald_send-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (231.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

journald_send-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (209.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

journald_send-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (201.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

journald_send-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (227.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

journald_send-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (422.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

journald_send-0.3.0-cp313-cp313-musllinux_1_2_i686.whl (450.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

journald_send-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (485.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

journald_send-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (380.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

journald_send-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (210.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

journald_send-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (243.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

journald_send-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (232.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

journald_send-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (209.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

journald_send-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (202.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

journald_send-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (228.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

journald_send-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (422.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

journald_send-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (450.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

journald_send-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (485.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

journald_send-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (380.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

journald_send-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (210.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

journald_send-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (242.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

journald_send-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (232.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

journald_send-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (209.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

journald_send-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (202.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

journald_send-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (228.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

File details

Details for the file journald_send-0.3.0.tar.gz.

File metadata

  • Download URL: journald_send-0.3.0.tar.gz
  • Upload date:
  • Size: 59.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for journald_send-0.3.0.tar.gz
Algorithm Hash digest
SHA256 6d7f736b838c9951c32760748a980899a4ed9250a06f4804a63e2cfd868bab1a
MD5 e6aaa6ec98de6c5d839946a5848eff9d
BLAKE2b-256 b66306365a1f2e0c8f21490dfd7337a65aac1e78220001371f439b92ede661fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0.tar.gz:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42fe37447524ba9b35a94dff6f08cda465edbf533fabeea35d09827710e4f959
MD5 ec217aa0ab9c00b1dfa5c1c0cca76eaa
BLAKE2b-256 5e8f58cd4104153116255eb9408be9543cad632cfd1b71c9e24b98d8a2abccb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 78f8f6eeaee21d64738faf68bc6e8c7fda477e9fd4f723c62660abb83fd9bb7f
MD5 c65c392c721a8ef7e435aa701e6fb31c
BLAKE2b-256 6f6f558960681aa64fa37dfeeb244e214bf04ee18f648851f8de690b08d78767

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 125d0c3d77901872f76509b874dbff40df9651f022e0097d2c7300a3571fd5fb
MD5 b8e771bdc93a6b8ff6cddc410f969200
BLAKE2b-256 6e7377711b9b1d299f0767927252637ebc31162d3071151f68155c364f81fcf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b626caf17973effef88c469fe091ce446bb7810bb9bf45e9f0e9f78b81a7f07d
MD5 184beac2a3f6f1b1d7fcc0c6e3f29779
BLAKE2b-256 ac34983ccedf3b059a622104745adaab3d0dff84c8177f25fe7efeee5d61b67f

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43cddab3c26f1432b9adb5f0502e7b58eb09f28ffb8f45ea5a1eb9f997b2f8d2
MD5 a058ed9b0b6780c549aeceefee3d4ada
BLAKE2b-256 cfa02ddd2d6c36850416f84a57d6e8e08ec17280bb6dac8c8ce2e2278bb0279a

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ef562f54b92551b481d75e3aa398a864002e720661d4140d3ea28e564c164cb
MD5 37090936010d498f7b9597a910155195
BLAKE2b-256 614b906ab237313829466f07b9dd8599e54cd2f46e7e85167d00d3563fd018a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c438d82e3aa4c42d41e17815725ecfa2f7fb8f2b250aaef7322d2f0480616a02
MD5 7dfe83c8249381b7f0ecb979c1dd0f3c
BLAKE2b-256 82f1fada997f93140c9cd7295c0ab30c8b2b5c37551526de24f8875a2cb6cee6

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 63d96f18c1d53c068194e5a27a2f57e69b709365f9a8643395e2f5908754703c
MD5 ffc9beae1083733be9f685ef3aefa762
BLAKE2b-256 2300509404f557dbf049014541b243f8c318da4d74ed66c65a97ab6160b497ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4d2eb74bebe57bfa7538feb3f6b76ddd14ef889ffe4200fa42c9fbc63dda217
MD5 0a56bf43919cc55817bbc35594853a84
BLAKE2b-256 c3e8b51fd067ffc3d2aa37a10cda0692c416825792abcf867bd09d816a396676

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 28d2ae1bdd776b70f82502854c8a58d1325bf9c37d9fb54b9e82d09578625d08
MD5 4939bf0479b503ec977a1f2d52d8ee81
BLAKE2b-256 d1627be1ad122b3b3ea7b3e1baa5add11e983916d8726daaca29c063a96ad17b

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37f5662bb81d87025131681bae76a336700892049d38f7d2dff5e7e43b1eae1b
MD5 1a40e384dfa7c40eed53e0d606d700bf
BLAKE2b-256 9e68d2294fa340af4c1104b7f3f49387391deef20f3ee2e266d124ea4ddad551

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3668797acc79571770c3b1e4a31e13632f1abc4adc1683e494e743362fe35a5e
MD5 54d93bec60afda39ed56dd5abe6ce673
BLAKE2b-256 61cdcceeefb367c6f2600f72a90a2d1b0387478ad2ebd564c2225725cca8d4c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5cce5301b7a19b15701aa80ce16819dc8121699e15b34f11449cf54fe6e7dc88
MD5 cb79bfdd8534bbfe940cf55c6c2b729f
BLAKE2b-256 2ccb28d7a40ec9dd4499cfabdf22505054d8bdab4eed1acfb326db2665313121

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74324ef99633164b147e3300d0903e9a3047e7c568085fea2840108d4f77062a
MD5 cd90ea9a879021053ed7d7742456319d
BLAKE2b-256 3553f5bd40386a31cf44ce6e8811b41a71c4c3646cb1de8903409aaf243a85ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2cbd37ed7a8333386314704db7f5be7b70ee276463458525a0f3b833289d99a
MD5 3128103a4438445e601c002229ce2cb1
BLAKE2b-256 7b54ef4c93835d52cb1b2882997b7b2d1463a1536277bc132c602dcc5191ce10

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c76b0e5b4745a1535cdb76b72035fae8d589864e216e5a52591dcb66f3431c68
MD5 23e61c72821129fb79b9faf703d89cd6
BLAKE2b-256 c7d2ccbdc0ba23f6bbba8bfeda04996e0ce3655f47ee1c21b64cb278e4c9cdf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6278719a7aa0a1364fb120f6469da4940d7a1fac19fef6f10bb0c861d114ee2
MD5 5f33476a45e551f84430d15589c9d726
BLAKE2b-256 4cd4ac91b24161ce7540d02104b7f6cc8b7385df153bd6c65b26138d5f1c5efa

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03dd35c1678992d7beabdca0107d6f7dbf13e5d5e82ce0a670f0a4a3913b1d9c
MD5 4677e292c553deeea83e23a54282d7a5
BLAKE2b-256 f2fe4dbc0b2388d0af5bce5029dbcd6248f5f72013c7feb43012e23a639f2337

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8d787d2a333848de470c44817417b38140032fb0731e9b7ec3bab339440c45f
MD5 0f921f5f3d59e8a621311d9ae88e95bd
BLAKE2b-256 899a56f6fd02285724266ccf50a68d46d7d749bea91644207a29c4c310082276

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0c54095b52a4ea20a47c33b495b46e973434be5657a443f83df560ddefcb2906
MD5 e71e04af9e637e74b24a32dc872906dd
BLAKE2b-256 e35e05225485dbf80f80d4752943f5b89389ba19aae63d5072f73d1bb035a628

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d251ccfde66fadb6631bd99e77d1d169e194f77077437d666013ca9b756a0269
MD5 9969ce607f0221b44d72739dc12afe34
BLAKE2b-256 420d2f9ad19b8033286abe8277f2fea2c87aa4128e2a7d6fdf138eb9953bd663

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95abcd6c95fe945d1a9df5e1a9221e72475beb2ca1444af6e474c644de23c5cf
MD5 e7eddc6c6c2b7496d119ce7b98e52a0d
BLAKE2b-256 2ce722e63798c116565715dee491f6f8454d36dc13aee92965eb731ffcf1f697

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6fd7a8db683217f8276def9ebc33c9db910ce1a5b3e3356adcd83b15f1dc90a4
MD5 030802bacd9ba051a47193c260b71d5f
BLAKE2b-256 15616f614e9a072d250b65d8323a20d615010a8b88ee08c7ad344ce76d01b4a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f86944f84dc37a7021871e6a1fd62825247179dd9cb830522ea6c8f98496dff
MD5 c34a538ba99a4729ac759c2f1655f532
BLAKE2b-256 98c06b6990f4d70f1e9a49bc807e4a08098f886cb6a84d6ac99e7636e0b9b5d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 067addfa06c8d413664a2eb9913b38c2dadeb42ba4cddca4340d0f444c3d1bcc
MD5 60a8ca6cc09be2d04ff323c5d0c176fa
BLAKE2b-256 3352106c770f396fb8445ab074b55ff4710499ca5aaabf977a166c9929f19eaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eef5a15a31abb38f95e7bbb710389a77cd360954c0fc5733b40721b50615f02a
MD5 151b01285301e9fb054430befd9c21b2
BLAKE2b-256 d3f962b0cae021972ea0557266522bbccdf4d6241c4d3973ca78429ce3cb1a17

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b18473db7f50226ace7f7b32ac2846d9a5365702d6ef8edce7b535786a2d527
MD5 d8ab9f5e5769ece47b5ea5d1a3875aff
BLAKE2b-256 5b1af66edfca3ccfb8473fbfc35174039de009ca4ae290363a572d08949da266

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f84bfcb5f0d7b124e21a508e4b9bffb13df89757dbba025737d44402eb623003
MD5 885846e421d3d3c1c870f0eb457b02e0
BLAKE2b-256 61a9eec11e01df528088e7f933c2f93ca2c68c6421a7dc071d981de0b33afa22

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16bead211841ecc519ef02cfaf573e5b4257f45808f47d9a3abfdaa1d3b44c30
MD5 783c85d52e9624900efafb48dd747b6b
BLAKE2b-256 f69fdd1ea1c3b2ed0d0aae8fecbdbb877f1572f92d8f443aea55e70efdb1587b

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 641ea34c829d84440c1510b3ee08d75cf00701c51094a619e3cb4c0447784e26
MD5 b30ea46fe7e8f5b7ad72288f2376f734
BLAKE2b-256 a5ebb54921ec62ca4e25affec77f46c0016c295d69a5c4220d83196d7c868aa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6107c3fe902a47d4046b89c48a3c49a5b5ace6110661953cba79f13e86818d36
MD5 725bc6ab4fa8fb892f240cacedd309b4
BLAKE2b-256 5b53ed49a97abc46599c5fe99c5b11706af9e50a2bbea7ac49841c92e1fb6f4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c20f4ca45d17b7ceea7d166309569b2d3ade4c4a722a1fa7190ac28b13c57990
MD5 a3d8f4c15f36464a1a8f09147fa7a4ba
BLAKE2b-256 d38b8d805bf830e80af7eab0ed29ebea58b0c98ac7a7bd80bc0eb38ec37cd85a

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ec8c89fcb246eeb2260c20b30a8487e726d11907776fd6b809bc45227b8b836
MD5 e90ea0282458262644472e8307bf26e6
BLAKE2b-256 645206ef1fdbbf29493b949ecd52beb2c84a45111711190bc1764696881adf3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50268838f1896415b17a961cf6209c010a122bc090b9776aace6b592e737d2de
MD5 0f998fdad8730902189f69eb6937b208
BLAKE2b-256 424e0cea460b0a697906ab9eae077105b008718f3360b15f0c14b30fa56dd684

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8eba6147bd136b36722c1b84aa0ba05380d1e5cd633e33f4b4db2a71facf6374
MD5 6c7cabb35517535e656162c196236693
BLAKE2b-256 9fc988e88160a3f267da9fe362797af01ae1b9919c32aff9df18da2156b4d0ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 135e4463ba88c72f2e3d8e99efcd36d7de8133533d6d4fb632d182eff0c9b10a
MD5 0488c3b906a31431176585085a903c87
BLAKE2b-256 89fc3ab3d2a1120ae6f6d81baa8732523ff278369133b6008b653db74c015dcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 27d1418023e09065e4673802f248f4e6bcb84e3d9e45753c424a9afea674641e
MD5 0f892a0db50245b8e49ff2fa186d044b
BLAKE2b-256 1042b8b8d9bf0ccec266c22687d49ef32078015a28c9b0316f22145d726bc47a

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c1a56ad2af05034ef41a6ad13e0b1600df41d7bafea18b2622113dc1d48c37f
MD5 dd79118f8d5f1460d46ee60e88450069
BLAKE2b-256 6dc8a5fa385346073538a3b69b294c566ca6827525873e9142799168b6b75143

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 179802810d363843db4667304e92d14d9ae75b0b66ddaeee51bafe075d5e1fe6
MD5 b41938346267c120a769ddb2efcb62ca
BLAKE2b-256 162211e885717d06759e254790513de1d1d350d56b0aa93571fdcaca007a218a

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on hongquan/journald-send

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

File details

Details for the file journald_send-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for journald_send-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6ac81b228783ce883e6497e851bc73fdde8633a9b0220003ebed83d031118cde
MD5 4a57a156705f7ec86e36097219c844e0
BLAKE2b-256 755134ad4f90d3fb7afdee87cc50122ff710361eec66beec5149baafd1a5985c

See more details on using hashes here.

Provenance

The following attestation bundles were made for journald_send-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on hongquan/journald-send

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