Skip to main content
Files added late

6 files were added to this release more than 14 days after its initial publication. Inspect the release files before installing.

sh-month sh-wheel

SDIF for Python

  • Author: Eduardo Moguillansky

  • Contact: eduardo.moguillansky@gmail.com

This is a python wrapper to IRCAM’s sdif library (http://sourceforge.net/projects/sdif/files/sdif/) to read and write SDIF files. It consists of a core written in Cython and some other utilities written in Python. The SDIF library is included in the package and built together with the python wrapper.

NB: This software is released under the GPL v3 license.


Install

pip install pysdif3

Build from source

git clone https://github.com/gesellkammer/pysdif3
cd pysdif3

python3 setup.py install

Introduction

Sdif files are used to store time-based analysis. A Sdif file consists of time-tagged frames, each frame consisting of one or more matrices.

Read a Sdif file, read only selected matrices

from pysdif import *
sdif = SdifFile("path.sdif")
# get metadata
print(sdif.get_NVTs())
for frame in sdif:
    print(frame.time, frame.signature)
    for matrix in frame:
        if matrix.signature == b'1MAT':
            print(matrix.get_data())

Write a Sdif file modifying a previous one

from pysdif import *
infile = SdifFile("source.sdif")
outfile = SdifFile("out.sdif", "w").clone_definitions(infile)
for inframe in infile:
    if inframe.signature != b'1TRC':
        continue
    with outfile.new_frame(inframe.signature, inframe.time) as outframe:
        for matrix in inframe:
            # 1TRC has columns index, freq, amp, phase
            data = matrix.get_data(copy=True)
            # modify frequency
            data[:,1] *= 2
            outframe.add_matrix(matrix.signature, data)
outfile.close()

Write a SDIF file from scratch

from pysdif import *
import numpy as np

sdif = SdifFile("rbep.sdif", "w")

# Add some metadata. This is optional
sdif.add_NVT({'creator': 'pysdif3'})

# Add any matrix definitions. In this case we add only one definition
# This is a matrix named "RBEP" with 6 columns
# Each row in this matrix represents a breakpoint within a frame
# Index: partial index to which a breakpoint belongs
# Frequency: the freq. of the breakpoint
# Amplitude: the amplitude of the breakpoint
# Phase: the phase
# Bandwidth: the "noisyness" of the breakpoint
# Offset: the time offset in relation to the frame time
sdif.add_matrix_type("RBEP", "Index, Frequency, Amplitude, Phase, Bandwidth, Offset")

# After all matrix types are defined we define the frames. A frame is defined
# in terms of the matrices it accepts.
# Here we define a frame named "RBEP" which takes only matrices of type "RBEP"
sdif.add_frame_type("RBEP", ["RBEP ReassignedBandEnhancedPartials"])

# Now we need to add the data. Since there is just one matrix per frame
# in this sdif we can use the shortcut sdif.new_frame_one_matrix which
# creates a frame and adds a matrix all at once
# The data is just fake data for the sake of an example
data = np.array([
    [1, 440, 0.1, 0, 0, 0],
    [2, 1000, 0.2, 0, 0, 0],
], dtype=float)
sdif.new_frame_one_matrix(frame_sig="RBEP", time=0.5, matrix_sig="RBEP", data=data)

# A second frame
data = np.array([
    [1, 442, 0.1, 0, 0, 0],
    [2, 1100, 0.1, 0, 0, 0]
], dtype=float)
sdif.new_frame_one_matrix(frame_sig="RBEP", time=0.6, matrix_sig="RBEP", data=data)

sdif.close()

Documentation

https://pysdif3.readthedocs.io/

Release files for pysdif3 1.0.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Files added late

6 files were uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release files before installing.

Built distributions (wheels)

Table of built distributions (wheels) for pysdif3 1.0.1
File
pysdif3-1.0.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
pysdif3-1.0.1-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
pysdif3-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
pysdif3-1.0.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
pysdif3-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
pysdif3-1.0.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pysdif3-1.0.1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
pysdif3-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
pysdif3-1.0.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pysdif3-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
pysdif3-1.0.1-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
pysdif3-1.0.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pysdif3-1.0.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
pysdif3-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
pysdif3-1.0.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
pysdif3-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
pysdif3-1.0.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pysdif3-1.0.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
pysdif3-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
pysdif3-1.0.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
pysdif3-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
pysdif3-1.0.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pysdif3-1.0.1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
pysdif3-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pysdif3-1.0.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
pysdif3-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size: 17.8 MB

Release files / pysdif3-1.0.1-cp313-cp313-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pysdif3-1.0.1-cp313-cp313-win_amd64.whl
Size 472.8 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
a3cd0741c98d65b820f94e6cf0e66e1a6a018c072c57de827f1d0f444b78db9a
BLAKE2b-256 checksum
How to use checksums
f27170ce0691e097a89c37524d08c3d70cfd8a63762e3e3f754d4f8841b5f56b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.2

Release files / pysdif3-1.0.1-cp313-cp313-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pysdif3-1.0.1-cp313-cp313-win32.whl
Size 443.9 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
32827434da4607526aa44fa5a87e52b8c121dc39b72cccb9532a8fdfb33131fc
BLAKE2b-256 checksum
How to use checksums
e0ecd4ae88cc882a8b0685cb966fd14fa4da47ccbf3c89cdb0900550b51a519e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.2

Release files / pysdif3-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pysdif3-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.6 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4a889afb015bd68b84d409f4f713b6372e22a85372e9bc72da3f7ab9b57c8f74
BLAKE2b-256 checksum
How to use checksums
0cf9b09ec2d37541ef9d528d56af3c07d8cab094b3ef47c3b8a7b8644f4db491
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.2

Release files / pysdif3-1.0.1-cp313-cp313-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pysdif3-1.0.1-cp313-cp313-macosx_11_0_arm64.whl
Size 519.7 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fe3a5bbe65dac778f747e2b128a1d92eca4caad4133179c008fd1b8a900298ae
BLAKE2b-256 checksum
How to use checksums
50a285a53154e1f78ab64c49b322e0ad9ae7d2ba83b45d2784ed5563c8814de8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.2

Release files / pysdif3-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pysdif3-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Size 535.8 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
d6d6a71f5030ea8599e994d5d70bbbc5b423f32837220bc71102223dc8645a79
BLAKE2b-256 checksum
How to use checksums
2e03b70d8710fe49bc3b9a9f98d70373faf165b37e588a8d3d2eea278eac1474
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.2

Release files / pysdif3-1.0.1-cp312-cp312-win_amd64.whl

Download URL pysdif3-1.0.1-cp312-cp312-win_amd64.whl
Size 472.8 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
cab83773a696ea3165f888d3c4f89e40d94e167c867d39608b22f5568410ad34
BLAKE2b-256 checksum
How to use checksums
2fea012e7200446fc235eabb13039f9310894fd616dc9a9e6a8d5f918a2f6c5f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp312-cp312-win32.whl

Download URL pysdif3-1.0.1-cp312-cp312-win32.whl
Size 443.7 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
3d55a1d3aa3f15999c04c25c66b2fbebce87e145483cffcd2e58a3b3bc2e9465
BLAKE2b-256 checksum
How to use checksums
5e0b5566e434b9f554179733b0fdfe34c317661e6dd3b4e4aeeef492a6d36fab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pysdif3-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.6 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4e02d161f8a9711b5e516afd38c3bfda536c64f6232dd4ad7bda206809f24c85
BLAKE2b-256 checksum
How to use checksums
bb90f1977b8331c3ddcb84ed6acaf031771e9941ab39c2c7e93881ad57976411
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL pysdif3-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Size 521.7 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
56b36a3de18fdd04b7e7c165fb13035bebe5d486f2149a01490594502384257e
BLAKE2b-256 checksum
How to use checksums
51dc27896bf04c59286c9392502e79af562527dd696c171f35ef60238d64da89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pysdif3-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Size 538.6 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
35894adb5f9e5f270180037142c5d47a2186651a7acf94b054159295b21d3d26
BLAKE2b-256 checksum
How to use checksums
6f5d009e828e3a305fa6d860d85a33e05e0774916354cfc67c41dde1068f4c90
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.2

Release files / pysdif3-1.0.1-cp312-cp312-macosx_10_9_x86_64.whl

Download URL pysdif3-1.0.1-cp312-cp312-macosx_10_9_x86_64.whl
Size 538.2 kB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
16971aeac279c58c5f9f83e7c0b8ca1fc7dac7f526cbfd1a61136fb83ce66f75
BLAKE2b-256 checksum
How to use checksums
91b83197be00a3c9535f3369ab544682b99e7ef3213a1ae79c4449033d92f666
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp311-cp311-win_amd64.whl

Download URL pysdif3-1.0.1-cp311-cp311-win_amd64.whl
Size 476.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
ad7cb34a89693059fce3820052722cd5c7acecbf2ac4a5db59b9edf441866769
BLAKE2b-256 checksum
How to use checksums
1fca4da9bdd185523e89ca21012cd6c74dde57af3c4022b33a5b0f1e0be08eb7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp311-cp311-win32.whl

Download URL pysdif3-1.0.1-cp311-cp311-win32.whl
Size 446.9 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
e1843fcb2116e07b5a73dd6d949624d700e25c82fc88b5d73c1d08464c687b6f
BLAKE2b-256 checksum
How to use checksums
6b26a5a058a6c10c70e8928a0b2833fb574d89308996c89a336b724f593f6c2e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pysdif3-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
55cfb05cea3db37a2d51b64fea9fa9fa69585822363c7d9ad9d1714600d6494d
BLAKE2b-256 checksum
How to use checksums
10419ea2c36ea4dca08a8c72025b83c88355fbc5bc9969b9b7e75037d520ac57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL pysdif3-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Size 522.0 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1e3841e6f2cc6a7dd440be51a382fa764972d254d5c23716e0d978d0d2c78b3f
BLAKE2b-256 checksum
How to use checksums
a4fde58cd4d4dbfa753f754477b3adb312fa2b0cf2c3acad6e5c60b8e7eb043a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL pysdif3-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 539.3 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
085bc799abf62a29c0f5dafdb536a341a35e901560b0ff0941c5368bfaf1fc9f
BLAKE2b-256 checksum
How to use checksums
6bede85e844df5ce7a9239776a0dd63663e1faaeb659e14f2114219816a41120
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp310-cp310-win_amd64.whl

Download URL pysdif3-1.0.1-cp310-cp310-win_amd64.whl
Size 476.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
a32eabfe64b9933f7ad6dc39ed258edd5d577550a11b230c0db6cc50f629d7fa
BLAKE2b-256 checksum
How to use checksums
05a69173983e3e8e71a2d71ba2ca44dc76ac87c3356736c3537dc2cd12852e9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp310-cp310-win32.whl

Download URL pysdif3-1.0.1-cp310-cp310-win32.whl
Size 446.9 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
93c55c2ebfd58a0e60402118f4ef822bc88bcf18eb66f70a526a57fcdb2260ff
BLAKE2b-256 checksum
How to use checksums
dbc34ecc9be8867a034bf64b4500e4b7a1c23ecdf145eb085340cb14c4b9c3c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pysdif3-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.6 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
36b178101bef9f5a405f9e070b03a1a3f6bfe55dee02f68b4cf585c193ea638e
BLAKE2b-256 checksum
How to use checksums
6dd54582a508b9eec0000f4c1410815590b1a07882eb8fef4d216fee581da154
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL pysdif3-1.0.1-cp310-cp310-macosx_11_0_arm64.whl
Size 520.5 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a8f040158b0682b557deb06e02aae99e6096d7b0cbbc333860ccaa4d4f9d69fe
BLAKE2b-256 checksum
How to use checksums
6f084d4aea16debd3590fb43e5d22e16086689c2a2a322ac251269f77c01e175
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL pysdif3-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 537.3 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
454e8aa0d073dc8dd45ae0926cb48afb6b3e591fd0ebdf3693d4229a4d73e39a
BLAKE2b-256 checksum
How to use checksums
2c3096057d886fbbc835c5fba6b55028759393d238d7201bac4019f0ab14b60f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp39-cp39-win_amd64.whl

Download URL pysdif3-1.0.1-cp39-cp39-win_amd64.whl
Size 476.9 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
5ec3d4f9213aef5422fc230f538d791ff877f2a1347e4eb8c3aa1b86e5988e6c
BLAKE2b-256 checksum
How to use checksums
07066e6410dbda6e5ff5fde1f9a1362dd12321023268c3d78c9948bca316c116
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp39-cp39-win32.whl

Download URL pysdif3-1.0.1-cp39-cp39-win32.whl
Size 180.1 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
c44946087f06bec11edbf37ab79a2cf9fd2859d5a242a51470184b583379d7ee
BLAKE2b-256 checksum
How to use checksums
b0884540cd1864b7d8a23b75fbc9fdef22b8b5988438612a946306ebf225a531
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pysdif3-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.3 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fd4d275596dbfbdb68312999861141b66b6bedda764eebc32a0c904c5b70ebae
BLAKE2b-256 checksum
How to use checksums
2c23fc898c6329eed9800f6b03b72d917aaa1d1d1002a873da11b531a0094154
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp39-cp39-macosx_11_0_arm64.whl

Download URL pysdif3-1.0.1-cp39-cp39-macosx_11_0_arm64.whl
Size 520.6 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6e88912570a8b1ee46aae85adf1932be4869ae98230410cdc86d250cd8ed796f
BLAKE2b-256 checksum
How to use checksums
831f972518aef8fef3ccdba7ee022d8621d0412d6287bd7986d82fa7a1892627
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / pysdif3-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL pysdif3-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 270.7 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
563a0d4b3dd6e4f0ae6d3be98a1248b73616e0ee35c726e4b8de6215e194a369
BLAKE2b-256 checksum
How to use checksums
e517f761dce216bf6d9bc657d49afa5f3a728594d33b42b808830a969c1367a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release history Release notifications | RSS feed

This release

1.0.1 This release

26 release files

1.0.0

21 release files

0.9.1

9 release files

0.8.0

16 release files

0.7.4

4 release files

0.7.3

3 release files

0.7.2

3 release files

0.7.1

1 release file

0.7.0

9 release files

0.6.3

9 release files

0.6.2

3 release files

0.6.1

3 release files

0.6.0

2 release files

0.5.3

1 release file

0.5.2

1 release file

0.5.1

1 release file

0.4.0

3 release files

0.3.0

3 release files

0.2.0

1 release file

0.1.6

1 release 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