Lyngdorf Audio Control Library
Python library to control Lyngdorf A/V processors and integrated amplifiers over TCP/IP (port 84).
Supported Models
MP Series (Multichannel Processors)
- MP-40 - Entry-level processor (3 HDMI inputs, 12-channel decoding)
- MP-50 - Mid-level processor (8 HDMI inputs, 11.1 + 4 aux)
- MP-60 - Flagship processor (8 HDMI inputs, 16-channel decoding)
TDAI Series (Integrated Amplifiers)
- TDAI-1120 - Entry-level integrated amplifier
- TDAI-2170 - Older integrated amplifier model, with a more limited protocol
- TDAI-2210 - Integrated amplifier sharing the TDAI-1120/3400 protocol
- TDAI-3400 - Top-of-line networked integrated amplifier
P Series (Cinema Processors)
Sold under the Steinway Lyngdorf brand.
- P100 - Entry-level cinema processor (4 HDMI inputs, no video output routing)
- P200 - Mid-level cinema processor (9 HDMI inputs, up to 5 HDMI outputs)
- P300 - Flagship cinema processor (9 HDMI inputs, up to 5 HDMI outputs)
Capability Matrix
What this library supports per model. Generated from ModelConfig, and
covered by a test that regenerates every cell from the live config, so it
cannot drift from the code.
| Model | Zone B | Video | Surround trims | Streaming | Remote keys | Volume (dB) | Bass/treble trim | Lip sync | MAXVOL |
|---|---|---|---|---|---|---|---|---|---|
| MP-40 | ✅ | ✅ | ✅ | ✅ | 21 | -99.9 to 24 / 0.1 | -12 to 12 / 0.1 | ✅ | ✅ |
| MP-50 | ✅ | ✅ | ✅ | ✅ | 21 | -99.9 to 24 / 0.1 | -12 to 12 / 0.1 | ✅ | ✅ |
| MP-60 | ✅ | ✅ | ✅ | ✅ | 21 | -99.9 to 24 / 0.1 | -12 to 12 / 0.1 | ✅ | ✅ |
| TDAI-1120 | — | — | — | ✅ | — | -99.9 to 12 / 0.1 | -12 to 12 / 1 | — | — |
| TDAI-2170 | — | — | — | — | — | -99.9 to 12 / 0.1 | — | — | — |
| TDAI-2210 | — | — | — | ✅ | — | -99.9 to 12 / 0.1 | -12 to 12 / 1 | — | — |
| TDAI-3400 | — | — | — | ✅ | — | -99.9 to 12 / 0.1 | -12 to 12 / 1 | — | — |
| P100 | ✅ | ✅ | — | — | 20 | -99.9 to 24 / 0.1 | — | ✅ | ✅ |
| P200 | ✅ | ✅ | — | — | 21 | -99.9 to 24 / 0.1 | — | ✅ | ✅ |
| P300 | ✅ | ✅ | — | — | 20 | -99.9 to 24 / 0.1 | — | ✅ | ✅ |
Reading the matrix:
- Surround trims are the discrete channel trims (centre, height, LFE, surround). Bass and treble are separate and listed in their own column, because the TDAI family has those but not the discrete ones.
- Streaming means the device has a StreamUnlimited module on port 8080: now-playing metadata, playback position, transport and play modes. The TDAI-2170 and the whole P series have no streaming module.
- Remote keys counts the buttons the model exposes. MP-40/50/60 and the
P200 have 21; the P100 and P300 have 20, lacking
MULTIVIEW, which the P-series manual restricts to the P200. The TDAI family has no navigation hardware at all, sohas_remote_keysisFalsethere. - Volume / trim ranges are
NumericRange(min, max, step). Note the step: the MP and P series adjust trims in 0.1 dB, the TDAI family in whole dB only. These ranges are advisory — read the setter docs before treating them as enforcement. - MAXVOL is the device's user-settable safety ceiling. Read-only in this library. No TDAI manual documents the command at all.
All models support power, volume and mute, source selection, RoomPerfect™ room correction, and voicing selection.
Installation
From PyPI
pip install lyngdorf
From Source
git clone https://github.com/fishloa/lyngdorf.git
cd lyngdorf
poetry install
Quick Start
import asyncio
from lyngdorf import async_create_receiver, LyngdorfModel
async def main():
# Auto-detect model (recommended)
receiver = await async_create_receiver("192.168.1.100")
# Or specify model explicitly
receiver = await async_create_receiver("192.168.1.100", LyngdorfModel.MP_60)
# Connect to the receiver
await receiver.async_connect()
# Control the receiver
receiver.power_on = True
print(f"Volume: {receiver.volume} dB")
receiver.volume = -22.5
receiver.mute_enabled = False
# Change source
receiver.source = "HDMI 1"
# RoomPerfect control
receiver.room_perfect_position = "Focus 1"
# Disconnect when done
await receiver.async_disconnect()
asyncio.run(main())
Usage Examples
Power Control
receiver.power_on = True # Turn on
receiver.power_on = False # Turn off
print(receiver.power_on) # Check power state
Volume Control
receiver.volume = -25.0 # Set volume in dB
receiver.volume_up() # Increase volume
receiver.volume_down() # Decrease volume
receiver.mute_enabled = True # Mute
# volume_range is the model's fixed, documented capability -
# NumericRange(min, max, step). It differs by family: the MP and P
# series allow up to +24.0 dB, the entire TDAI family only up to
# +12.0 dB. It is advisory only: the setter sends whatever value it is
# given without checking it against this range - the device itself
# already bounds volume sensibly (a real MP-60 clamps anything past
# its documented ceiling rather than doing anything harmful), so this
# library does not duplicate that check. Use this range to build a
# correctly-bounded slider (e.g. Home Assistant's `number` platform).
print(receiver.volume_range) # NumericRange(-99.9, 24.0, 0.1) on an MP
# The device's current user-settable safety ceiling, in dB (MP and P
# series; None on the TDAI family, whose manuals document no MAXVOL
# command at all). Not a hardware maximum, and it can change at runtime -
# see max_volume's docstring before using it as a fixed slider bound.
# Deliberately NOT folded into volume_range above - see volume_range's
# docstring for why a capability and a user preference are kept separate.
print(receiver.max_volume)
Source Selection
# List available sources
print(receiver.available_sources)
# Select source by name
receiver.source = "HDMI 1"
Audio/Video Inputs & Stream Types
# Enumerate the possible values before building a closed-option UI
print(receiver.available_audio_inputs)
print(receiver.available_video_inputs)
print(receiver.available_stream_types)
# Current values
print(receiver.audio_input, receiver.video_input, receiver.streaming_source)
Empty for a model with no such table at all (e.g. a TDAI has no video inputs).
An unrecognised wire value deliberately escapes the table rather than being
added to it - see available_audio_inputs's docstring - so a current value is
not guaranteed to appear in its corresponding available_* list.
RoomPerfect™ & Voicing
# List available positions
print(receiver.available_room_perfect_positions)
# Select position
receiver.room_perfect_position = "Focus 1"
receiver.room_perfect_position = "Global"
receiver.room_perfect_position = "Bypass"
# List available voicings
print(receiver.available_voicings)
# Select voicing
receiver.voicing = "Neutral"
Trim Controls (MP Series)
# Adjust trim levels (in dB)
receiver.trim_bass = 1.5 # +1.5 dB
receiver.trim_treble = -0.5 # -0.5 dB
receiver.trim_centre = 0.0 # Reset to 0 dB
receiver.trim_height = 2.0
receiver.trim_lfe = -1.0
receiver.trim_surround = 0.5
# Or use increment/decrement
receiver.trim_bass_up()
receiver.trim_bass_down()
Numeric Ranges & Lip Sync
# Each adjustable numeric setting has a matching *_range property -
# NumericRange(min, max, step) - None on a model with no such setting at
# all (e.g. trim_centre_range is None on every TDAI; every trim range is
# None on the P series). A UI (e.g. Home Assistant's `number` platform)
# should build its slider bounds from these instead of hardcoding them -
# they vary by model, and the MP series' 0.1 dB step genuinely differs
# from the TDAI series' whole-dB-only one even where the dB bound matches.
#
# These ranges are advisory device facts, not something this library
# enforces: they describe what the model's manual documents, and the
# device itself is the enforcement point (see volume_range's docstring
# for the reasoning). Do not rely on a setter to reject an out-of-range
# value.
print(receiver.trim_bass_range) # NumericRange(-12.0, 12.0, 0.1) on an MP
print(receiver.trim_centre_range) # None on a TDAI - no discrete channel trims
# lipsync_range is a live property: it starts at the documented default
# (NumericRange(0, 500, 1)) and is overwritten once the device answers its
# own LIPSYNCRANGE? query - re-read it rather than caching it once. None
# on the TDAI family, which has no lip sync control at all.
print(receiver.lipsync_range)
receiver.lipsync = 20 # ms
# Every volume/trim_*/lipsync setter sends the value it is given
# unchanged - it does not check it against its own *_range. It still
# raises LyngdorfInvalidValueError if the connected model has no such
# control at all - not an out-of-range value, but a request the model
# cannot express, e.g. trim_centre on a TDAI (see trim_centre_range
# above: None means no discrete channel trims at all, so there is no
# command to send).
from lyngdorf.exceptions import LyngdorfInvalidValueError
tdai = await async_create_receiver("192.168.1.101", LyngdorfModel.TDAI_1120)
try:
tdai.trim_centre = 0.0
except LyngdorfInvalidValueError as exc:
print(exc)
Method-Based Setters
Every property setter above (volume, zone_b_volume, lipsync, the six
trims, room_perfect_position, voicing) also has a set_* method
equivalent - set_volume(db), set_zone_b_volume(db), set_lipsync(ms),
set_trim_bass(db)/set_trim_treble(db)/set_trim_centre(db)/
set_trim_height(db)/set_trim_lfe(db)/set_trim_surround(db),
set_room_perfect_position(name), set_voicing(name). Each delegates straight
to its property, so it behaves identically - it exists for consumers (Home
Assistant's number/select platforms in particular) that build entities from
tables of small callables, where a lambda cannot contain an assignment and
lambda r, v: setattr(r, "trim_bass", v) hides a typo from the type checker.
receiver.set_volume(-25.0)
receiver.set_trim_bass(1.5)
receiver.set_room_perfect_position("Focus 1")
Zone B Control (MP Series)
# Zone B power
receiver.zone_b_power_on = True
# Zone B volume - zone_b_volume_range is None on a model with no Zone B
# at all (e.g. every TDAI), otherwise identical to volume_range
receiver.zone_b_volume = -30.0
receiver.zone_b_volume_up()
receiver.zone_b_volume_down()
# Zone B source
receiver.zone_b_source = "Apple TV"
Remote Control (MP and P Series)
The MP and P series both expose the device's on-screen-menu remote buttons -
cursor navigation, MENU/INFO/SETUP, BACK/EXIT, digits - as a small,
write-only API. (The MP manuals document only EXIT and omit BACK
entirely, but a real MP-60 accepts !BACK too - the manuals are wrong here,
not the mapping.) The whole TDAI family has no navigation hardware at all, so
has_remote_keys is False and available_remote_keys is empty there.
MULTIVIEW is the one key that genuinely differs by model, not just by
family: every MP model has it, but on the P series docs/p-series.md
explicitly restricts it to the P200 only - a stated hardware restriction,
not a documentation gap like BACK was, and with no hardware to test a P100
or P300 against, the manual is followed rather than overruled. So MP-40/50/60
and the P200 all expose an identical key set including MULTIVIEW; the P100
and P300 expose that same set minus MULTIVIEW. Always check
available_remote_keys rather than assuming a key is present because a
sibling model has it.
from lyngdorf import RemoteKey
if receiver.has_remote_keys:
# Typed single press
receiver.press(RemoteKey.MENU)
receiver.press(RemoteKey.DOWN)
receiver.press(RemoteKey.ENTER)
# The HA-shaped entry point - takes exactly what
# RemoteEntity.async_send_command is handed: an iterable of command
# strings, case-insensitive ("up"/"UP"/"Up" all work), plus num_repeats.
receiver.send_remote_commands(["up", "up", "enter"])
receiver.send_remote_commands(["7"], num_repeats=1) # -> !NUM(7)
# What this model actually has, for building a remote entity's
# advertised command list or validating user input up front
print(sorted(receiver.available_remote_keys))
send_remote_commands resolves every command in the batch to a RemoteKey
before sending anything - a typo (or a key this model doesn't have) raises
LyngdorfUnsupportedError naming the bad value and what the model does
support, rather than leaving the device halfway through a menu navigation on
the way to discovering the mistake. num_repeats repeats the whole resolved
sequence as a block - ["1", "2", "3"] with num_repeats=2 sends 123123,
not 112233 - matching how Home Assistant's own broadlink/harmony
integrations interpret the same field. delay_secs (also part of
RemoteEntity.async_send_command's signature) is deliberately not supported -
the outbound write queue already owns pacing, and a caller-supplied delay on
top of it would only fight that. An integration should drop that argument
rather than pass it through.
Remote keys never coalesce, unlike an absolute setter such as volume - each press means "one more step," and order/count is the whole meaning of a batch (see Command Pacing & Coalescing below).
Callbacks & Events
# Register for any state change (volume, source, power, now-playing, etc.)
def on_any_change():
print("Receiver state changed")
unsubscribe = receiver.register_notification_callback(on_any_change)
# Detach later - e.g. when a Home Assistant entity is removed, or a config
# entry is reloaded. Safe to call more than once.
unsubscribe()
Every register_* method on Receiver (register_notification_callback,
register_position_callback, register_position_jump_callback) returns a plain
Callable[[], None] that removes that registration. The returned unsubscribe is
idempotent - calling it twice, or after the callback was already removed some
other way, is a no-op rather than an error, which matters for teardown paths that
run more than once. Registering the exact same callback a second time collapses
to the existing entry rather than firing it twice.
This matters most for Home Assistant: an integration that registers a callback on entity setup but never unsubscribes on entity removal will accumulate duplicate callbacks across every config-entry reload.
Reacting to one specific wire command (e.g. only VOL messages) has no public
API - that lives on the private receiver._api.register_callback(...) and isn't
part of the supported surface. register_notification_callback above is the
supported way to learn "something changed" and then read whichever properties
you care about.
Now-Playing Metadata (Streaming Models Only)
Models with the embedded streaming module expose now-playing metadata for
streaming sources such as AirPlay, Spotify Connect, Qobuz and TIDAL. Check
receiver.model.has_streaming_feature() (or the narrower receiver.has_position
for position specifically) before relying on this - the TDAI-2170 and the P
series have no streaming module, so now_playing, position and transport
control are all unavailable on those models.
now_playing = receiver.now_playing # NowPlaying, or None if idle/unsupported
if now_playing is not None:
print(f"{now_playing.artist} - {now_playing.title} ({now_playing.source})")
print(now_playing.state) # PlaybackState.PLAYING, .PAUSED, .STOPPED, ...
NowPlaying also carries album, art_url, duration_ms, the controls the
current source offers right now (see Transport Control below), and play_modes.
Playback Position
print(receiver.position_ms, receiver.position_updated_at, receiver.position_percent)
Position is reported through two different callbacks, for two different kinds of consumer:
# Fires on every raw update - about once a second while playing. For a
# live-counting UI that wants a smooth per-second value.
def on_position(position_ms):
print(f"Position: {position_ms} ms")
receiver.register_position_callback(on_position)
# Fires only on discontinuities: a seek, a track change, a play/pause, or the
# reported position drifting from where it should be. Does NOT fire for
# ordinary once-a-second progress.
def on_position_jump(position_ms):
print(f"Position jumped to {position_ms} ms")
unsubscribe = receiver.register_position_jump_callback(on_position_jump)
Use register_position_jump_callback for anything where each call has a cost -
a Home Assistant entity state write, say. The raw register_position_callback
firing once a second would mean roughly 86,400 state writes per player per day;
the jump callback only fires when something actually changed.
Transport Control
if receiver.can_pause:
await receiver.async_pause()
if receiver.can_next:
await receiver.async_next()
if receiver.can_seek:
await receiver.async_seek(30_000) # milliseconds
Capabilities are per-source and change at runtime. The device advertises what
the current source supports, not a fixed list for the model: AirPlay offers only
can_pause / can_next / can_previous; Spotify Connect adds can_seek and five
play modes; a stopped device advertises nothing, so every can_* property reads
False. Always check the relevant can_* property (or available_play_modes /
available_repeat_modes) before calling - calling something the current source
doesn't offer raises LyngdorfUnsupportedError (from lyngdorf.exceptions)
rather than returning False, because the device accepts unsupported commands
silently (an unrecognised play mode still returns HTTP 200 and is stored), so a
return value could never tell a caller whether anything actually happened.
Warning:
async_pause()is source-dependent, and on some sources it is destructive. On a source the device streams itself (Spotify Connect) it toggles: pause, then resume. On AirPlay and other controller-driven sources it instead ends the session - the device cannot restart it, and there is no separate resume command; only the controlling phone or app can start it again. Checkreceiver.can_pauseand know your source before calling it.
Shuffle and repeat can be set independently - each call carries the other setting over unchanged rather than leaving it to the device to infer:
from lyngdorf import PlayMode, Repeat
await receiver.async_set_shuffle(True)
await receiver.async_set_repeat(Repeat.ALL)
# Or set both at once:
await receiver.async_set_play_mode(PlayMode(shuffle=True, repeat=Repeat.ALL))
available_play_modes, available_repeat_modes and can_shuffle report what the
current source actually allows.
available_play_modes is a union of two device-reported lists, not a straight
read of either one - each is a partial view of the same six-value shuffle/repeat
grid. The current source's own controls.playMode omits normal; the device's
global settings:/mediaPlayer/playModes list omits the repeat-all variants.
Taking either list alone leaves a genuinely supported mode unreachable - taking
only the per-source list, for instance, meant normal had nowhere to go, so
async_set_shuffle(False) raised instead of turning shuffle off whenever repeat
was already off. Verified against a real MP-60.
Typed States
PlayMode, Repeat, Control, PlaybackState and RemoteKey are importable
directly from lyngdorf:
from lyngdorf import Control, PlaybackState, PlayMode, RemoteKey, Repeat
Repeat-OFF/ONE/ALL.PlayMode- a frozen dataclass pairingshuffle: boolwithrepeat: Repeat, not an enum: the device's six wire values (normal,shuffle,repeatOne, ...) are really a 2x3 grid of these two independent axes.Control- a transport action name (PAUSE,NEXT_TRACK,PREVIOUS_TRACK,SEEK, ...), as found inNowPlaying.controls.PlaybackState-PLAYING/PAUSED/STOPPED/TRANSITIONING, as found inNowPlaying.state.RemoteKey- a remote-control button name (UP,DOWN,ENTER,MENU,EXIT,BACK,DIGIT_0..DIGIT_9, ...), as sent toReceiver.send_remote_commands/Receiver.press. Unlike the three states above, this one is strict, not lenient - an unrecognised value raises rather than being silently accepted, since it's a command going to the device, not a state read back from one. See Remote Control.
Command Pacing & Coalescing
Every outbound command is routed through a paced, coalescing queue, so a caller never needs to throttle its own writes. This exists because a real MP-60 (firmware 5.4.2) has a fixed queue-depth cliff, not a throughput limit: a read-only probe found 10 unpaced commands all got replies, while bursts of 30, 60 and 100 unpaced commands each got exactly 16 replies, with the rest silently dropped - the device self-heals once traffic backs off. See issue #35 for the measurement. Left unhandled, a Home Assistant volume-slider drag (10-30 commands a second) would overflow that cliff, the device would stop responding, and the keepalive monitor would then read the silence as a dead connection and reconnect - surfacing to a user as "Home Assistant keeps dropping my Lyngdorf".
The queue paces writes COMMAND_PACING_MS (50ms, see lyngdorf/const.py)
apart and coalesces selectively. Absolute setters - volume, Zone B volume, the
trims, lipsync, balance - collapse to only their latest queued value, since
only the final value can ever matter. Relative and sequential commands never
collapse: the volume/trim up-down steppers each mean "one more step", and
digit and cursor/navigation commands carry meaning in their order and count.
One consequence worth knowing deliberately: a rapid burst of volume sets can
result in fewer commands reaching the device than were issued - the
intermediate values were never going to be seen anyway.
Model-Specific Features
MP-40
- 3 HDMI inputs
- 12-channel decoding
- 16 balanced audio outputs
MP-50
- 8 HDMI inputs
- 3 HDMI outputs (including HDBT)
- 11.1 setup + 4 auxiliary channels
- Optional 16-channel AES module support
MP-60
- 8 HDMI inputs
- 3 HDMI outputs (including HDBT)
- 16-channel decoding
- Optional 16-channel AES module support
TDAI-3400
- I-prefixed command protocol
- Dual speaker setup switching
- Headphone output controls
- Network connectivity (Ethernet + Wi-Fi)
- Media playback (Spotify, TIDAL, Roon, etc.)
- 3-band equalizer + balance control
- Streaming module connection reuse (keep-alive) confirmed working in the
field on a real unit by @svwhisper - 20 sequential requests, one steady
connection, zero reuse failures; see
lyngdorf/streaming.py'sStreamMagicSessionfor details and the still-unexercised chunked-response fallback it walks back
Development
Setup
poetry install
Run Tests
poetry run pytest -v
See KNOWN_ISSUES.md before writing a test that calls
async_connect() on a streaming-capable model against a fake host - without a
guaranteed async_disconnect(), that combination can hang the test for two
minutes.
Code Quality
poetry run black lyngdorf/ tests/ # Format code
poetry run ruff check lyngdorf/ tests/ # Lint
poetry run mypy lyngdorf/ # Type check
Home Assistant Integration
This library is designed for use with Home Assistant. See the Home Assistant Lyngdorf integration for setup instructions.
Protocol Documentation
All models communicate via TCP/IP on port 84 using ASCII commands:
- Commands start with
!and end with\r - Format:
!COMMAND(parameter)\ror!COMMAND?\rfor queries - Responses start with
!for status messages
Protocol details available in the /spec folder.
License
MIT License - see LICENSE file for details.
Contributing
Contributions welcome! Please:
- Run tests:
poetry run pytest - Format code:
poetry run black . - Check types:
poetry run mypy lyngdorf/ - Ensure all CI checks pass
Support
- Issues: GitHub Issues
- Discussions: GitHub Discussions
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lyngdorf-1.10.0.tar.gz.
File metadata
- Download URL: lyngdorf-1.10.0.tar.gz
- Upload date:
- Size: 92.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebf01c9a2daf219b19844b474372a12acdc7d97ac868f93d1eefc0c159f20fb1
|
|
| MD5 |
da2b94f1c8b64709350330cd66aa1210
|
|
| BLAKE2b-256 |
0b66e46e5954b719a688b11a3b1c86b226be67a7e429a588330900cc0f31564f
|
Provenance
The following attestation bundles were made for lyngdorf-1.10.0.tar.gz:
Publisher:
publish.yml on fishloa/lyngdorf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lyngdorf-1.10.0.tar.gz -
Subject digest:
ebf01c9a2daf219b19844b474372a12acdc7d97ac868f93d1eefc0c159f20fb1 - Sigstore transparency entry: 2550108225
- Sigstore integration time:
-
Permalink:
fishloa/lyngdorf@0d1e5e64222ea02c378894c389a0ce1d741b866b -
Branch / Tag:
refs/tags/v1.10.0 - Owner: https://github.com/fishloa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@0d1e5e64222ea02c378894c389a0ce1d741b866b -
Trigger Event:
push
-
Statement type:
File details
Details for the file lyngdorf-1.10.0-py3-none-any.whl.
File metadata
- Download URL: lyngdorf-1.10.0-py3-none-any.whl
- Upload date:
- Size: 95.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
793d5efd2edc3bce928b2f95f503a7fc3cfb84678268d4741fcd9c84598fd31c
|
|
| MD5 |
023cdc40051fe56d069e0ef3d511dea2
|
|
| BLAKE2b-256 |
10a52d5e6b31513f4d312b7f92ac50fde5f1f23b3b6625e16eb7bfa482dca3a8
|
Provenance
The following attestation bundles were made for lyngdorf-1.10.0-py3-none-any.whl:
Publisher:
publish.yml on fishloa/lyngdorf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lyngdorf-1.10.0-py3-none-any.whl -
Subject digest:
793d5efd2edc3bce928b2f95f503a7fc3cfb84678268d4741fcd9c84598fd31c - Sigstore transparency entry: 2550108280
- Sigstore integration time:
-
Permalink:
fishloa/lyngdorf@0d1e5e64222ea02c378894c389a0ce1d741b866b -
Branch / Tag:
refs/tags/v1.10.0 - Owner: https://github.com/fishloa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@0d1e5e64222ea02c378894c389a0ce1d741b866b -
Trigger Event:
push
-
Statement type: