Skip to main content

librtpsynth

Low-level library optimized to generate and/or consume sequence of the RTP packets. Based on some code and ideas from the RTPProxy projects.

Originally designed to supplement Python code to do low-level bits shuffling for the proof of concept IoT implementation.

Reasonably fast, 2,000-4,000x real-time (i.e. 2-4M packets per second) when used from the Python code. 5x of that (10-20M PPS) if used from C code directly.

RTP Generation

Generate continuous sequence of RTP packets of the same payload type.

C API Functions

#include <rtpsynth.h>

  • void *rsynth_ctor(int srate, int ptime); Initializes the RTP synthesizer with given sample rate and packet time. Returns a handle to be used in other calls.

  • void *rsynth_next_pkt(void *ri, int plen, int pt); Generates the next RTP packet. Takes the handle, packet length, and payload type as parameters. Returns a pointer to the generated packet.

  • int rsynth_next_pkt_pa(void *ri, int plen, int pt, char *buf, unsigned int blen, int pa); Similar to rsynth_next_pkt but allows pre-allocated buffer and packet attributes. Returns the length of the packet generated.

  • void rsynth_pkt_free(void *rnp); Frees the allocated packet. Takes a pointer to the packet as parameter.

  • void rsynth_dtor(void *ri); Destroys the RTP synthesizer and frees resources. Takes the handle as parameter.

  • unsigned int rsynth_set_mbt(void *ri, unsigned int new_st); Sets a new marker bit toggle state. Takes the handle and the new state as parameters. Returns the old state.

  • void rsynth_resync(void *ri, struct rsynth_seq *rsp); Resynchronizes the RTP packet sequence. Takes the handle and optionally a sequence structure as parameters. Use this function when a time discontinuity is expected in packet generation, such as when VAD (Voice Activity Detection) is active. The library will recalculate the timestamp for the next packet based on the current system clock and the time the last packet was generated.

RtpGen (Python)

RTP Parser & Validator / Jitter Buffer

Simple RTP parser and validator to process incoming UDP datagrams, parse & validate RTP headers. Resulting RTP stream is passed through fixed-size jitter buffer to de-duplicate and re-order packets if needed.

Silence (erasure) frames are emitted to indicate voids.

rtpjbuf (c)

#include <rtpjbuf.h>

  • void *rtpjbuf_ctor(unsigned int capacity); Creates a jitter buffer with the given capacity (number of packets). Returns an opaque handle.

  • void rtpjbuf_dtor(void *rjbp); Destroys the jitter buffer and frees all internal state.

  • struct rjb_udp_in_r rtpjbuf_udp_in(void *rjbp, const unsigned char *data, size_t size); Parse and insert a single UDP datagram. Returns a result structure with: ready list (in-order frames ready to consume), drop list (late/dup frames), and error for parser/memory failures.

  • struct rjb_udp_in_r rtpjbuf_flush(void *rjbp); Flushes the jitter buffer and returns any queued frames (plus any drops).

  • void rtpjbuf_frame_dtor(void *rfp); Frees a single RTP frame returned via ready/drop.

Frames in ready/drop are a linked list of struct rtp_frame:

  • type == RFT_RTP provides rtp.info, rtp.lseq, and rtp.data.
  • type == RFT_ERS provides erasure info (lseq_start, lseq_end, ts_diff).

RtpJBuf (Python)

RTP I/O Thread (Python): RtpServer / RtpChannel

rtpsynth.RtpServer provides a single worker thread that multiplexes UDP I/O for many channels. Each RtpChannel is a bidirectional RTP pipe with:

  • one UDP socket bound to a local address;
  • one fixed callback for incoming packets;
  • one fixed-size lossy non-blocking output queue.

Build

Build and install all Python extensions (including rtpsynth.RtpServer):

python setup.py build install

Public API

  • RtpServer(tick_hz=200) Starts the worker thread. tick_hz controls loop frequency (poll recv, drain output queues, sleep until next tick).

  • server.create_channel(pkt_in, bind_host=None, bind_port=0, queue_size=32, bind_family=0) Creates an RtpChannel and hands its socket to the worker. pkt_in is called as pkt_in(pkt_bytes, (host, port), rtime_ns). rtime_ns is a CLOCK_MONOTONIC timestamp captured once when poll() returns with ready sockets. bind_family selects socket family explicitly (0/"auto", 4/"ipv4", 6/"ipv6"). When bind_host is None, default bind host is 0.0.0.0 for IPv4/auto and :: for IPv6. queue_size must be a power of two and greater than zero.

  • channel.set_target(host, port) Sets UDP destination for outgoing packets.

  • channel.send_pkt(data) Enqueues one packet for send. Non-blocking. Raises RtpQueueFullError when channel queue is full.

  • channel.close() Requests channel removal from the server.

  • server.shutdown() Stops the worker thread (safe to call more than once).

  • channel.local_addr (property) Returns (host, port) the channel socket is bound to.

  • channel.closed (property) Boolean closed state.

Notes

  • send_pkt() must only be used after set_target().
  • Output queues are lossy by design: if a queue is full, packets are dropped.
  • If no channels are active, worker sleeps waiting for commands.
  • python/RtpServer.py is not a ctypes fallback; the CPython extension module is required.

Minimal example

from rtpsynth.RtpServer import RtpQueueFullError, RtpServer

srv = RtpServer(tick_hz=200)
ch = None
try:
    rx = []
    ch = srv.create_channel(
        pkt_in=lambda pkt, addr, rtime_ns: rx.append((pkt, addr, rtime_ns)),
        bind_host="127.0.0.1",
        bind_port=0,
        queue_size=32,
    )
    addr = ch.local_addr
    ch.set_target(addr[0], addr[1])
    try:
        ch.send_pkt(b"hello")
    except RtpQueueFullError:
        pass
finally:
    if ch is not None:
        ch.close()
    srv.shutdown()

Tests

python tests/test_rtp_server.py

RTP Processing Scheduler (Python): RtpProc / RtpProcChannel

rtpsynth.RtpProc is a singleton worker-thread scheduler for periodic processing callbacks shared across many channels/sessions.

  • RtpProc() Returns the singleton instance.

  • proc.create_channel(proc_in) Creates RtpProcChannel. proc_in(now_ns, deadline_ns) is called immediately on channel creation on the worker thread, then periodically according to its return value. For the initial call, deadline_ns == 0. For scheduled calls, deadline_ns is the originally requested run timestamp. Return next_run_ns (monotonic ns) to reschedule. Returning base_ns + period_ns is recommended to avoid drift, where base_ns = now_ns if deadline_ns == 0 else deadline_ns. Returning None stops further scheduling for that channel. If callback raises, the channel is also unscheduled; the exception is re-raised on channel.close() as ChannelProcError chained from the original callback exception.

  • channel.close() Removes the channel from scheduler.

  • proc.shutdown() Stops the worker thread.

Audio Utils (Python): RtpUtils

rtpsynth.RtpUtils provides optimized CPython helpers for PCM16 and G.711u:

  • RtpUtils.resample_linear(pcm16, in_rate, out_rate) -> array('h')
  • RtpUtils.linear2ulaw(sample:int) -> int
  • RtpUtils.linear2ulaw(pcm16) -> bytes
  • RtpUtils.ulaw2linear(ulaw:int) -> int
  • RtpUtils.ulaw2linear(ulaw_bytes) -> array('h')

pcm16 accepts array('h') and bytes-like PCM16 input.

The same helpers are exported at module level, so you can also do:

  • from rtpsynth.RtpUtils import resample_linear, linear2ulaw, ulaw2linear

Download files

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

Source Distribution

rtpsynth-1.3.3.tar.gz (57.5 kB view details)

Uploaded Source

Built Distributions

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

rtpsynth-1.3.3-cp314-cp314-win_amd64.whl (35.5 kB view details)

Uploaded CPython 3.14Windows x86-64

rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_x86_64.whl (203.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_s390x.whl (204.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ s390x

rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (196.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_ppc64le.whl (218.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_i686.whl (202.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ i686

rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_aarch64.whl (206.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (208.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64manylinux: glibc 2.39+ ARM64

rtpsynth-1.3.3-cp314-cp314-manylinux_2_28_i686.whl (203.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

rtpsynth-1.3.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (206.5 kB view details)

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

rtpsynth-1.3.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (210.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

rtpsynth-1.3.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (223.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

rtpsynth-1.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.7 kB view details)

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

rtpsynth-1.3.3-cp314-cp314-macosx_11_0_arm64.whl (52.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rtpsynth-1.3.3-cp313-cp313-win_amd64.whl (34.4 kB view details)

Uploaded CPython 3.13Windows x86-64

rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_x86_64.whl (203.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_s390x.whl (204.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ s390x

rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (196.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_ppc64le.whl (217.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_i686.whl (202.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ i686

rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_aarch64.whl (206.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (208.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64manylinux: glibc 2.39+ ARM64

rtpsynth-1.3.3-cp313-cp313-manylinux_2_28_i686.whl (202.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

rtpsynth-1.3.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (206.6 kB view details)

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

rtpsynth-1.3.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (211.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

rtpsynth-1.3.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (223.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

rtpsynth-1.3.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.5 kB view details)

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

rtpsynth-1.3.3-cp313-cp313-macosx_11_0_arm64.whl (52.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rtpsynth-1.3.3-cp312-cp312-win_amd64.whl (34.4 kB view details)

Uploaded CPython 3.12Windows x86-64

rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_x86_64.whl (203.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_s390x.whl (204.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ s390x

rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (195.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_ppc64le.whl (217.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_i686.whl (202.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ i686

rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_aarch64.whl (205.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (207.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64manylinux: glibc 2.39+ ARM64

rtpsynth-1.3.3-cp312-cp312-manylinux_2_28_i686.whl (202.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

rtpsynth-1.3.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (206.4 kB view details)

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

rtpsynth-1.3.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (211.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

rtpsynth-1.3.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (222.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

rtpsynth-1.3.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.2 kB view details)

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

rtpsynth-1.3.3-cp312-cp312-macosx_11_0_arm64.whl (52.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rtpsynth-1.3.3-cp311-cp311-win_amd64.whl (34.2 kB view details)

Uploaded CPython 3.11Windows x86-64

rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_x86_64.whl (200.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_s390x.whl (201.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ s390x

rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (194.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_ppc64le.whl (216.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_i686.whl (201.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ i686

rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_aarch64.whl (204.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (205.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64manylinux: glibc 2.39+ ARM64

rtpsynth-1.3.3-cp311-cp311-manylinux_2_28_i686.whl (201.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

rtpsynth-1.3.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (203.4 kB view details)

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

rtpsynth-1.3.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (208.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

rtpsynth-1.3.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (221.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

rtpsynth-1.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (208.5 kB view details)

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

rtpsynth-1.3.3-cp311-cp311-macosx_11_0_arm64.whl (51.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rtpsynth-1.3.3-cp310-cp310-win_amd64.whl (34.2 kB view details)

Uploaded CPython 3.10Windows x86-64

rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_x86_64.whl (197.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_s390x.whl (198.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ s390x

rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (191.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_ppc64le.whl (212.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_i686.whl (198.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ i686

rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_aarch64.whl (200.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (202.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64manylinux: glibc 2.39+ ARM64

rtpsynth-1.3.3-cp310-cp310-manylinux_2_28_i686.whl (198.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

rtpsynth-1.3.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (200.3 kB view details)

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

rtpsynth-1.3.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (204.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

rtpsynth-1.3.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (218.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

rtpsynth-1.3.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (205.2 kB view details)

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

rtpsynth-1.3.3-cp310-cp310-macosx_11_0_arm64.whl (51.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file rtpsynth-1.3.3.tar.gz.

File metadata

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

File hashes

Hashes for rtpsynth-1.3.3.tar.gz
Algorithm Hash digest
SHA256 7900fac81d72aad6cd9fb45cf4b440929b52c5056721fca340c930aa89695e04
MD5 369a679bf2b146a81f2cb24e70732181
BLAKE2b-256 e0700e42824972c18f3932deafb464fb5ce715e459733e79ac871c09408c727b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3.tar.gz:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rtpsynth-1.3.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 35.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rtpsynth-1.3.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1b6ec5741af39161aefe44394ef8df6fce4cb79ee6851fedbbe0edf3d64d802d
MD5 a4904fcf1647efc10fb8cb0f1c0e4ba5
BLAKE2b-256 692336219ade19b590adfadbe69b2f1ceb608b6703972b08da687fbb190e2774

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp314-cp314-win_amd64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 7cb4489793ddd1481150a4ffb268d0b6b138ac69f65720fb86ad00d4bc553f36
MD5 8d0e7a65decc705b8ffda7fe3b9dc563
BLAKE2b-256 b52ae89cb1c068cff7c78b3283cbcee286bac2f152338a433952bffeb0ab0954

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 c5f7b539fc358186f7156fde8a3eb7d64b2ae427bf170beb94b46d5f5ef5e8b7
MD5 36aa09c0c7dcac350ad372eb0107108f
BLAKE2b-256 28d39856f5e6576f864fcb4cdf7943b688b0be6975d2e8a08d852b7b8b4bf093

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ac70723a6bcfea52845c5654192935d5660543be0e513593fda1a7a92d780735
MD5 e5e21de17cd67c3e986e356515443a95
BLAKE2b-256 133988a22c45d72e011886624aaa9ca67fce3c7f5391b9118beb31f4c48015ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 087e38ca9512230e9b0cd4de19367b8b5ba7ae72b079bfc96987151ea10ea9d9
MD5 f3136b975d2e0e31073feae09e700da5
BLAKE2b-256 7bb8ecff3fa8f69ad26779f390192d12c66c3d9adccb1e54ad01ec7471e841a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 a511bc48f8664e21197f537e71b261831096847a4f4bee75f115e8e9a9af7575
MD5 566f655fe687ad1dc6f50213fe6e9ee2
BLAKE2b-256 87f9525d9fba6dca626a117ba419bbf89722aab45d471d222dc0b4e1be920816

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 dfaedbffdc5d22c1e000d0210b4cbf72b1ae726d31efc15c898cad1cdbcbae6b
MD5 dd6e18975a60a270425d79ba5cb145f7
BLAKE2b-256 56ac7f762286a53efbe40df15ecbadaf85d88a2fe6dc638a4b331799ba107c4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 126b8ca1e4f39a9eb9ad770474f3e73fcb97d6fdb7b2100683f38dfde61b0e06
MD5 f61be6ca4327788ac110223f5ecc1ef2
BLAKE2b-256 6a8d9060ee96c751e238c468817710c617afc3a5c1f4285794c804f1e45e7cce

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f2c840ce2cc2c2236e80a91b8e5e1054158f8dae8415f0711040f6ee3563a844
MD5 faad65828deed97235b82fbd0c97102e
BLAKE2b-256 45d873ac73749ae3b5a44aaeaaa5a928d18fc689017a4448c84e32bd584fbb0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp314-cp314-manylinux_2_28_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 568c2ddd6f3eb1b5c6ce9c001ac7e56d6190b5a43b1dd1696ae3be10518232b0
MD5 5b1ddef07e7e246259fad7574fd03321
BLAKE2b-256 eba5363ba2568dfd9c5a5f0620aa9e2610d7275e509ec9e1d1ce6f9efe1be74a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 77804326d36dd8b9278ce4461aa16693bd785b1d970ca00678b284cd708ba5db
MD5 92e09b584bf07de39c03adcebdc5cdbf
BLAKE2b-256 ed65399c9bb31ff8afd83958c9a6788ad0c6a12c1e7a90262efe400f4bc8758a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 89d446d377e1fcd9e8af6157a98b2b80394113e4cfb305b018db2338e3176679
MD5 418edbb1a005715de4406122cbc96038
BLAKE2b-256 d06b4e588ae63d2c25a0c2b2916219d2a9234f2d605f4937743e2f28d105ad52

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d0dd53b015d1690a2a96e4ecfcec43fbc172b82566867c531cfa252df23cbae
MD5 721633a731a8a2848659356794b21e32
BLAKE2b-256 6a12f38477d37ef8452eecfd88f677af11b3af8d40e03a3737e3cc385f73e71c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a47fd83caaeeb9e49ddffbe8510683ddbf90c1690a575028a18699ab3dd18993
MD5 1dc9b82ad7e73aefb117d687a3c023a6
BLAKE2b-256 178b1d683229c753d7994f566e1974e005265a3ac3317d4f903a1e5529725c15

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rtpsynth-1.3.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 34.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rtpsynth-1.3.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aad8e63b6f9abe7216b876c439e278521320590786948135b6361339fd682f25
MD5 94a758e8b67ae16fd429cee115666bcb
BLAKE2b-256 2f8e52469fcf75080d927c6fe4762b9c23878fe7d5e7566b08405c4ee8c6356c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp313-cp313-win_amd64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 649a7c959da7b3866dc540a564474e685d88a26873ea25c86a7c362bc929feb2
MD5 2decb753b279dc4b702ba1a2ca7dae8c
BLAKE2b-256 9857dfa0c52b529e8a5eb0bd038c1e4e79294aa227c52a2636030cbf6f37464a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 b9e2562dbac4df0043d518291adf8b5da6d4d0278d63bfec327d3533e24cacdd
MD5 328c4f1a6d45d81edeba7843de3c4673
BLAKE2b-256 1878236cd90a72608af4f962fbcf3614d7bfeb7ba44ae715e8a2069ec9bed0c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 178413ff9d7f2b36b2fb5da954ce4236d94609c5bbcaefc5b577edd1e2e3b159
MD5 4fdcd198183f2a9814dad80879b13e68
BLAKE2b-256 3f8a531dde5387c5d404627b756b4682282476d8e0bc1624da410a6a0638c82a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 31820a62e08a634719754764fd968c94e855f6d9c7ccf554fccdf23c76fce01b
MD5 6c7602ccb11d003338e2d1c956ceb550
BLAKE2b-256 c09576eab493ae102a10f4b121f1c71eff47c5a1a48c9fbe9bb09e30d09ebe99

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 37253e9f78749766675a335750f2e9c2cf3119df55ccd1611d4ec0a6ba97f9d1
MD5 23f6673ba3dc266ad387dc8944509422
BLAKE2b-256 25910f7f43c1ea5adcdb88738ec06f1c0881c950b114e619e4174ca2282720d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 9693af467cc94858a461a34ce993a6bdd892e8ae5b6fbd5d3e89364fffbb03a1
MD5 644dfd05a25d8bc930f3e17a737f2b14
BLAKE2b-256 d5b87bc71b3ed9302d6b908eb2d2a88db3feb8bad69301211c3130ddbad87680

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 695886fe4c1f79b8b245c75be4ce7c6e5443c23f723064a5cd83792bf4098046
MD5 44927dc414c7827ef7c7e50f7e989902
BLAKE2b-256 b8c7e19c26ebe474d2300813434e8c99cd8fc9388dc20df1e89bd706e69f8daa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 294a69b379725e6d7b5a905e3282c4f2eb56424620bdca983222fc0dc3543fa8
MD5 10b5a12beaad0252805618b0cc634a65
BLAKE2b-256 164e4e5ab017d96771190cd9be124d3711d20d3979662eae72db254fe6e725e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp313-cp313-manylinux_2_28_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb6269f670f8b5dc07d8b4117b5af01de65e48f77aef60705f6231269ad9023c
MD5 b37bf3bc93395002bb24dfa33432357c
BLAKE2b-256 3d2bcdbf5be9334b10de5c687f9f8b31f5f2ba46d0a699ad949670bdfa019caa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4eca6163e4a290cb2bb9162312469a0b40a705ae1f95b2edc22228ae02966eba
MD5 ef2695285f5d58a77f546129081c0314
BLAKE2b-256 ee4c9c5340e9b4e75365b60fca7b23bf25fe7dd04f0178384c2bae58e2bbf0df

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7e5e5eace680e6caf41cc6c0ac013a9ea7bf61e0c2b81db976f2be09ca4b9533
MD5 46559d641eb118f706744ac7dcafdf05
BLAKE2b-256 7b2edb9d684ceec6f93f5ccb8b36fbb6456d30c2de174d1d8c2482505fffd968

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 774c04961f0a629ab69cf02091c9e87286842692d5a938238a4b813a4ee4f355
MD5 26bdbc17f9e02ff135ee02258b688d6f
BLAKE2b-256 ccd4536b0987620c33e50572a8c6ee3f602330569dd2a8fa84cea6d1d2a47455

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40e583125b43e3192fed851d5a823ba5833bbf6a299d18b890d3eca67868263d
MD5 03a5462d3c9e9aab6dc7a1a27ec8cba7
BLAKE2b-256 c28fb0f6be0b92e799be29bd5f7eb758a054c9fbd0daf25620a327621e592a2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rtpsynth-1.3.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 34.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rtpsynth-1.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 203687dde69c2532f86ce120e1660cfb714abd810c4e073042163419ed188fa9
MD5 b3e5c2aa7372deec2b30653784ce506c
BLAKE2b-256 803519bbf7f5a341112e3fbca2b4698abd8c5472d5319be65d5e83730f4e2246

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp312-cp312-win_amd64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 821c2ef5968aa392daaa547369fce6d471142e0323e6d985ed4c9525b11c45f7
MD5 4e58665f390b7c9ecd1053a0703ad61b
BLAKE2b-256 3658afaa23859d7ab1ec2769e9f7912ef5352526bf3fd31fb4ceb861e8495552

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 8f409f42c28fb47257febd9ff6505b4b051b4a27642a6a377f238788914906c1
MD5 ab636e0fd50b3dde33400838e7d2e11d
BLAKE2b-256 448f78b021206c44f63ba3c1e32d955bf9aa2adbd2d05efac33d87bda733d4a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8f74118b0253db7fb6abd0918dcca7ab3e49afda43b5172f630bf9369c474e75
MD5 688c088fe0e7b861170c738871bac6fe
BLAKE2b-256 425d67b15bbb7b67a5594eef5659eb53b1f2385d202d59c896eefce7e47127d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 999a85bb033204653247432798e973a6928a11e02bd98db1723c2ca135586c2a
MD5 630ee769070de236dea6c4e382a103a3
BLAKE2b-256 c426ae56c96615506cb3c8d497e82e73fc5496dca62da28eb1309719ee1f72d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 c18e7e795285a79e1a21ced910cbf5ec64d47f97f5710ebc34a286fe4bc73c01
MD5 3257e915c5cb3eb3b5341e726de3e2d4
BLAKE2b-256 78d7fee9f2a57856935f5b82ef0e2f969d027dcb5a737e2148a842672ca7b7d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 0cbcbac71f0d14224ba1c48aeac6db225aa7b9ac830fa81ccdbf7d7120e5990b
MD5 2362d208e66babc4154432796ef8a703
BLAKE2b-256 18c83ad84fd460f6e385713622fc402606eec7b52b9ce43073f9280ec7add878

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 09872868c24f669a2d1ad45b0cde2034890d1779a91de10abb41dd42a727f1c6
MD5 98a9634cd6911c66bd5020464ef57e40
BLAKE2b-256 b8c6c6a5f6ccce9f1a74c00adf1f28384609cdb40fdef33bbfe493ee7f01f26b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 68f732bc772655218b984e8c9c8640fce1803e2da47af48327ab31ae93874221
MD5 3675a3ec430e33da10a3ec48a1868a99
BLAKE2b-256 5da9f225a36bee96bc55b7e43010eb1d7c184015e4029772694ba508c2b59f99

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp312-cp312-manylinux_2_28_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 87f01ef48bac6b48424039a881f1fdc259843c9d14f1ca1c0c7eaf7b2b5c5c91
MD5 bf0c1ad0aef33b7325a6b3b31ebb15b9
BLAKE2b-256 16c11f3e47fbb2f59519397526d02e6192060a018d63b634783dc7a8d5ccf558

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7dc1095c96ae6e0088c851cc5ae5609bbc8b5d8383bc8371a7d579f802125f91
MD5 03c623d59052b75feecd09926b24c76b
BLAKE2b-256 d6c27c60d6c53c07cebcee6b1feee722435325cce1d14ae0877f455940adf48d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6fcb8524e1957d427571c6952e8431c655bbb937043dd9fabc310f9bd1c06fa2
MD5 a67eb3bbe459ef95d1df352326c5a276
BLAKE2b-256 d4129cf33c6b457be04576761f6cf4f80cfbf2bfac61a20e0632cf80f8ff016c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01708f316d7422a3c763159fa449e0e08d09c1f0e9667799868317072c2837f5
MD5 936c087454264daa3dc4848d683754a5
BLAKE2b-256 20f98464a8f1afa058c534b577180ad2c219b52477b38030ed1723d97344672c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e1244deca2f07c2529d2705110057abc540df7bd9e89de06c9e6a82df85e5a8
MD5 8251613fefaeb7b7cecc7f9bfe33034c
BLAKE2b-256 d6747e1e37a7b6c78b5d4251ea8b48161d700c00639fbf064f5f2e6f866bf311

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rtpsynth-1.3.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rtpsynth-1.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1a5300962c2fbc33ff3a1aa13886721920dcb505fef714b99b04f91e1218a14b
MD5 b2bf315c81a9084af4227d25f55fa4ae
BLAKE2b-256 e4bf7b720dc2b5fa2f36080a81d98b0610a07ff67b0ecf95507836d1c52cb6eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp311-cp311-win_amd64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 71934cf7dda5ffb15958f326b43124f48570d977156150d0d9aa08a2c1a10a00
MD5 c0b3e05fd0c2ee7a030278823870bcf5
BLAKE2b-256 4b9b1024e442826b7f24436e879578a73f9e232052f9d026fdd9248338297d37

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 076b278c6edfbdee41f051e9b13cf18865ffb1243a2afb79a2fe10ddec50ea7d
MD5 26fe7441971b1a342a57bdf23421f2b0
BLAKE2b-256 6a3e034fbcb0721fe0b2336d8a51efeb62ed90cabb3a5d80a4b17b8c36473a7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 76ac4e05c7e6da5d6dc4270db80f4f40f0db27dbf317b78c191b47821acc736e
MD5 1b2331414e8a1a69a37bf75898420649
BLAKE2b-256 7790d51cd97d2ba7f899d8df4373c42a957822992249fa46c20b7091d528413f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 3dea13c7f99b2a85150560fc9dbe65233b4e7cc54f8d0d4af3684743fa95ddd5
MD5 b6d6675ae98eee0ec37f6f5f679322af
BLAKE2b-256 6e34daef2dfb5036ff3818e225c716d5ea72d7ef2db7a837f823e29f9e5b045e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 3c1a7ec66ad08b82481f64477fa49eafca57b2d55ced3cbe0d4889e2aca2ff1a
MD5 643b4975483d3a2b233e500badad6fe9
BLAKE2b-256 364c47dbf9769c99ea09403452d9cc494a0a67663f519cdc3dd89d73ddd00e17

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 7e399d5f3d775b79adea6bfe346ae8069c9a2cb40c97e3ab07af8ce278f14a34
MD5 0feeabf38cd9811fa2de71225e22315e
BLAKE2b-256 4146712abf2755b6f95724a8866612721b9afe3b66bdb7d480cde0c8a5346b84

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 307417eef3dc7efd78206c94507698397a349b786f1f741668affe0bcc3258cb
MD5 c5a100a44c28d058fe80320f73fc4b4a
BLAKE2b-256 b9a3a82efa3406887f5729583596f0853896fc9a1f482b8435018c61902b868a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 84b86d6ff9687c5689fd6d9f604c8cee17032e132a5900ec285b73a3b8e74fab
MD5 98843fd3bb87e614268cee4aef321893
BLAKE2b-256 c43d08dd98e7ed03e417a6c70ddfe3a8a63a61153f1fe6c505f605b50a538dd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp311-cp311-manylinux_2_28_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bcc75289027b7a5264f117532a42c5e7d34740d1388aa15d0fdf01348438cf0b
MD5 19b568958fb9280eefee5e09e6daad4b
BLAKE2b-256 c204ef73867b1f5bd25c202c462d67f6d61062eb9b345191ae706b337289a095

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ba2561d19fbe31a16ee24087e43b4f944bdaac77b56e32a49c666d90e7ad3293
MD5 e6cc1a5ea368424056f5c00212d8f43d
BLAKE2b-256 fb58929cf5dbbe2b1365b42c323899e6fc907ae17e43079acfb7aeceaf6c2e40

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2005b8aec57999765b3840ccd655b90026dcbc9f9db524ddbd698b1b79e587a5
MD5 53f3cf7e33e533608097d02c8a9dd2ef
BLAKE2b-256 ef6aca358a91ac9fe7e30f99555f4244c6181ecd2eb46ec54a28d696179d36ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b157a90e15e523bd00bd400cce8cbd49a179391ebbc924b5b24bc065e4c074e
MD5 6dda896eb438f6822ed59b17df07fdb2
BLAKE2b-256 481f1fc78c8701b4ccc7eded91d16faac6ba6e5a2584f1bbd072ec0fe94a0327

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2c6592f30af3f5a9647681925868fb7711e84a64caa186bf9e73077d981fa2a
MD5 3e5ff1b58be210f85c69d5e792f6856c
BLAKE2b-256 a3a20880f79cbea9202720963c1e05094db04aebbb472563ca04334544c1e21c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rtpsynth-1.3.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rtpsynth-1.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e4ef50f59d92a6ef81f6bcee572a950adf18120814127743907525ec2f512bce
MD5 0385db82777a2e489c10bda649e64d2c
BLAKE2b-256 c9bf330be2ff69dc0f90e59c1b2e4b9773718e7863e8adda94e3ff0a628246e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp310-cp310-win_amd64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 9c088a2910c85af879beb287e0e9f0197e4f5a92f3ab03253bb8e85f08b17a82
MD5 3a387947cf9c783f01f6aeaa7b99ed84
BLAKE2b-256 af4415ac6152e4e76b4b0f1c28191657b135eaa4781206caffbb6611d9ea57aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 c2849b789651669f0d1413e56029f7977a45c43f180fc5d77a594de0318667a2
MD5 b1cfeaad976f01e74f537560b356a2d8
BLAKE2b-256 1d18ae19cba65c8e0fe617129a3ece4f559f975c452a513b033ac8774cec3768

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f980e62d0606b95d23eb5afa9062eb675bc86b4037752f30fae6789efcc624aa
MD5 06d20fab8f966a4239b5a626d21cc1d3
BLAKE2b-256 bcafa1f453866e9d3a8ee1433472da7cc2fceb9af64b8117b085b25978e437b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 7b3c45a927a2ea91ecc9a2f0dd3f976c45dd1d91fd5bbb15363e4b3be85b701f
MD5 7dab2bfc74cf4506b03bc581bcaada10
BLAKE2b-256 a888b13bfc2e402d979b8833a6756ad6cbde6bbf7d7c2feedf7e70d33999d17a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 7047c312fd6fe8f2686caacd32a1abdf1e314c612f13f5c0e2adf58d96d53961
MD5 e9076df0e0c5a6010f95562964702662
BLAKE2b-256 90b5c51360ea20ab7a478a09f8463a945cbb3124e99317d0bbe3187bff6f8561

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 f9da6907a641c1a819a9935f41f274c131e9cbaa30692f5a08ff37dd44419ed0
MD5 0830661efd82236996acb66a2dd33514
BLAKE2b-256 7981f642d84c465b6b5b94eceb6012dc2a89bc56bd24c584db53a0a08c8489a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 2c4dec273e564666edb68cb2e83800ed7e4c8033de101524c663b55abb45306f
MD5 c6f6eeb758590958b6168163ccf712dc
BLAKE2b-256 bc138a7fe726dc6c9107ec72140926b381872a82130b89342a434ae477de6493

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0b9ded7ac9825e115920d05eb29e35e2a4a16dc4152cdc8fdd81a1edceec1cac
MD5 c69f19af3bb7e7648ad7dcd6de37592a
BLAKE2b-256 f6b0f61b62f56480632a1c2b75b84587ab2b12d4a973ca1b0e6710de6092c12e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp310-cp310-manylinux_2_28_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e7ff01e9232069cf591f363178ce86b95cce432ad59c50746700e04f44e771ea
MD5 a53bdffb2c4f92073d5b9aeb71ce3d11
BLAKE2b-256 862e1235614565cbb5d8db143410fda9486eee6bf4f570a6649df657000d9207

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4b55575c16074cb0e571e2e2ca56ffdb370c93febb3190d75189aabeabc45d2a
MD5 11aa34c48ba19d683e6574300c2cc7eb
BLAKE2b-256 435e0b5917947eafb9df4c9ef2345958234d81656447184c171381fe8458f124

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e9204d046a341ead8c1e7d6d2774bf50d5b6a16ae398bcfebb8dcd0353f92f4e
MD5 ca0069783b69f62f6c987fb88664de5f
BLAKE2b-256 3ff854410703868b2abed36aff0410590223b0daf58b55cce31de930835330e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84102c80dd868a99d3fb63bf20babe100244fa4a829ca4271a48a067374bc0df
MD5 5ae3da034a4b20b33ce69cbc8bf8f7e0
BLAKE2b-256 c5dd6667243d1a0a94b604cfaf70cbd423cfe0a411840957b33ef6cec048a599

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

File details

Details for the file rtpsynth-1.3.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24efc6f5c261bff0722ee917f3068963db077a6140924e52e7cc3ddf48d3851b
MD5 fa59d4619f9f27d88285a736ad3a5eed
BLAKE2b-256 e9cbc7cb014ab134b28a28be23f5eb1059021783c9356a853c2e5b32fc1a6ae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

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

Release history Release notifications | RSS feed

This release

1.3.3 This release

71 files

1.3.2

61 files

1.3.1

61 files

1.3.0

61 files

1.2.1

61 files

1.2

41 files

1.1

1 file

1.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page