Skip to main content

rtvamp

Python bindings of Vamp plugin host for real-time audio feature analysis.

Installation

Install the latest version from PyPI:

$ pip install rtvamp

Simple example

Using librosa to read an audio file and the spectral roll-off plugin for analysis:

>>> import rtvamp
>>> import librosa

>>> rtvamp.list_plugins()
['example-plugin:rms', 'example-plugin:spectralrolloff']

>>> rtvamp.get_plugin_metadata("example-plugin:spectralrolloff")
PluginMetadata(identifier='spectralrolloff', name='Spectral roll-off', description='', maker='LB', copyright='MIT', plugin_version=1, input_domain='frequency', parameter_descriptors=[{'identifier': 'rolloff', 'name': 'Roll-off factor', 'description': 'Some random parameter', 'unit': '', 'default_value': 0.8999999761581421, 'min_value': 0.0, 'max_value': 1.0, 'quantize_step': None, 'value_names': []}], output_descriptors=[{'identifier': 'frequency', 'name': 'Roll-off frequency', 'description': 'Frequency below which n% of the total energy is concentrated', 'unit': 'Hz', 'bin_count': 1, 'bin_names': [], 'has_known_extents': False, 'min_value': 0.0, 'max_value': 0.0, 'quantize_step': None}])

>>> y, sr = librosa.load(librosa.ex("trumpet"))
>>> t_rolloff, rolloff = rtvamp.compute_features(
...     y, sr,
...     plugin="example-plugin:spectralrolloff",
...     blocksize=256,
...     parameter={"rolloff": 0.5},
... )
>>> rolloff
array([[1291.992188, 1291.992188, 1722.656250, ..., 5684.765625,
        5598.632812, 6459.960938]], dtype=float32)

Release files for rtvamp 0.3.1

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

Source distribution (sdist)

Source distribution for rtvamp 0.3.1
File Size Uploaded
rtvamp-0.3.1.tar.gz 175.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for rtvamp 0.3.1
File
rtvamp-0.3.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
rtvamp-0.3.1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
rtvamp-0.3.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
rtvamp-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
rtvamp-0.3.1-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
rtvamp-0.3.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
rtvamp-0.3.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
rtvamp-0.3.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
rtvamp-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
rtvamp-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
rtvamp-0.3.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
rtvamp-0.3.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
rtvamp-0.3.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
rtvamp-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
rtvamp-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
rtvamp-0.3.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
rtvamp-0.3.1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
rtvamp-0.3.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
rtvamp-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
rtvamp-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
rtvamp-0.3.1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
rtvamp-0.3.1-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
rtvamp-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
rtvamp-0.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
rtvamp-0.3.1-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
rtvamp-0.3.1-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
rtvamp-0.3.1-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
rtvamp-0.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
rtvamp-0.3.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
rtvamp-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
rtvamp-0.3.1-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
rtvamp-0.3.1-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
rtvamp-0.3.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
rtvamp-0.3.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Details
rtvamp-0.3.1-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size:14.8 MB

Release files / rtvamp-0.3.1.tar.gz

Download URL rtvamp-0.3.1.tar.gz
Size 175.6 kB
Tags Source
SHA-256 checksum
How to use checksums
337bd1685443cbe72e8617b2beee45f68b8f090aa9e8903d0bd6f64d8bb6c2fd
BLAKE2b-256 checksum
How to use checksums
739ec575e2f08c74b855e5c01188ee2278981ece22c412c0a21e446ad27eac5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp312-cp312-win_amd64.whl

Download URL rtvamp-0.3.1-cp312-cp312-win_amd64.whl
Size 164.2 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
410be109463fa0c2299c6ed6a78748a2ae6cafb3d89ad1fa7a753c50cb8a25ad
BLAKE2b-256 checksum
How to use checksums
82ca35ee6d096b9c5e7fc51428e51e9546aae497ad43962b0a02b592ac255788
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp312-cp312-win32.whl

Download URL rtvamp-0.3.1-cp312-cp312-win32.whl
Size 138.1 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
e9c0e549f047137f25b61079cf09f4a1eb87480fc724d61b2777908048f5d8d3
BLAKE2b-256 checksum
How to use checksums
35173acfb8d191c05c673384e3f892ebd6d2e7702de5a16254e1ef1b53ee3a22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rtvamp-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 351.6 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e267cfea057cb036f6190f243c3788b74e19747ab943f96b3226dc2eb384a854
BLAKE2b-256 checksum
How to use checksums
a8c913d20efc82a732757acddfde4f8ab988bf7bb679d2fbb62d79554ef7dc50
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL rtvamp-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 376.0 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
721f462035421ba76dc60fe46d776435a3a29eda084fd98c3a53e31de501ec57
BLAKE2b-256 checksum
How to use checksums
4fd1ee8a41a239a23ea074c066d08ce3b16e8f9c61db02d53a926008a248c7e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp312-cp312-macosx_10_9_x86_64.whl

Download URL rtvamp-0.3.1-cp312-cp312-macosx_10_9_x86_64.whl
Size 1.1 MB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
6245f4f6be42260eedd23f78e3f61b166362110e67d6325e3e3bbedddc387f40
BLAKE2b-256 checksum
How to use checksums
99e8aee7a770b9efca892513a56c726127288fb7fc938f454fed5c1a187147ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp311-cp311-win_amd64.whl

Download URL rtvamp-0.3.1-cp311-cp311-win_amd64.whl
Size 164.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
d121bb39e3efff181640f86c6b8ca6200beb8d192ded6f3c1aaae050dd3d295c
BLAKE2b-256 checksum
How to use checksums
1620f8d4cb17ba512118dc2799b769b489c496d622b3194ee1a4481129d261b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp311-cp311-win32.whl

Download URL rtvamp-0.3.1-cp311-cp311-win32.whl
Size 139.4 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
a1b7ce9f66d047544fe1c897d4351c4bf05e5af368b8dd85bafbf32af3e05d6e
BLAKE2b-256 checksum
How to use checksums
223813a84b3a4c15dd77fc7a5a134fff39c3197d531ff26780428f7ade1119d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rtvamp-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 352.4 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9315a14bb1f6263b70e05f3855f3e89d2014aa47f3d4c7f4398f64e522baa96b
BLAKE2b-256 checksum
How to use checksums
a193190f0b7c9728fcfac27711377ea3ee6beb3d91b05aef211c1c6f7877da93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL rtvamp-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 376.4 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
929b57d1c62b11e00fd8bc8d85a8ec9e1e72d0fd1aa22fccbcdcbac5bcc9741d
BLAKE2b-256 checksum
How to use checksums
2372329f3ac99a9e7db0ab9fb2e51dc6e9a813f7909b3153de1c3bbdbbd46d59
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL rtvamp-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 1.1 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e34c5e73c55752f7bbd0573888e2aeb7d3fecf134a8b83b70d1069615215b89c
BLAKE2b-256 checksum
How to use checksums
ac037bc359998f42ac08f52503a501e0ab2b6a77525b6c95e1e8b1bcb86077f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp310-cp310-win_amd64.whl

Download URL rtvamp-0.3.1-cp310-cp310-win_amd64.whl
Size 163.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
0ec957ca8cd9f4f1ada55a6744d43c1422cb0a9a813f9c36906c6af7b76ba930
BLAKE2b-256 checksum
How to use checksums
de77ab3e662425b2ca8e627544d14c143738f4ac23012e26a91ad6be281c4e7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp310-cp310-win32.whl

Download URL rtvamp-0.3.1-cp310-cp310-win32.whl
Size 138.2 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
5bfb7de3a8bf8bd1fe3de7b9c303fc81582de92f6ddb2759d83a3144f00435dc
BLAKE2b-256 checksum
How to use checksums
1173248105cb5cd6a8d518bb3dc1c86fcdf5bb4f1eec19944badcb14d890e711
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rtvamp-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 350.9 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
793f5b6e8662cd8b004f1cac70e5362fcffd4729a0f58fbb92670a1bf3710db5
BLAKE2b-256 checksum
How to use checksums
7be3518cc477f52a3a0475cb34e4dc41058180bf384e23dbc2927c86bb231a3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL rtvamp-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 376.6 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
7ad3acfc5d78a53f4c50077a4b733430314021527ca27626e0312f7e03ed4ee3
BLAKE2b-256 checksum
How to use checksums
daf758af9e57fd4f4aae15305aff264a2dde6f0062cfafaaea7d99a1d3f902e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL rtvamp-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 1.0 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a9bfca5f2dfa694a935b80353263ffdf514870e1fc5a06fbcca34088b0a1d8a3
BLAKE2b-256 checksum
How to use checksums
cbb84a933c5acdbac0859818d342954e02ac75b8d804fd72bb0784f9f01a251a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp39-cp39-win_amd64.whl

Download URL rtvamp-0.3.1-cp39-cp39-win_amd64.whl
Size 161.8 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
7b1d1e534d0174f9fab7b564bf112b9b1d00f87af22aabf0c952a2097f19cbc4
BLAKE2b-256 checksum
How to use checksums
9031048224af9cb9d4a1dbaae8602b3d6d28153af675e48eb0936c02db0b3f02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp39-cp39-win32.whl

Download URL rtvamp-0.3.1-cp39-cp39-win32.whl
Size 138.4 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
ee4cb786a32f09da244f38f12fbbfefd06e42b292f0db48c527015c5f0aaff60
BLAKE2b-256 checksum
How to use checksums
a2a2aba3eaab3fdc976766627eb594df405cb8888077576f5a281b4f310d0bcf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rtvamp-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 351.2 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4473907aede306ef00f0c0e38767d11ac1ca4dce4995fa0cb63be8dc10fa71be
BLAKE2b-256 checksum
How to use checksums
ba9699bc9f9a1c183023b375c7a9cbdfb370e5f1f95e0f60ed6f18047fbe1b46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL rtvamp-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 377.0 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
20475d7bf62df9076cdc7a9d2b4f15fa62e4ec03b9f01a4a1435d43be55a8e24
BLAKE2b-256 checksum
How to use checksums
ffde469e473c277ff1069703fcd03d807b7ad7b2a3eb9db0b2a3ba506164c546
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL rtvamp-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 1.0 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e799e35afdb728919fce54cfc4592b88bf116ba8a074b80e962bef8f1ae991dd
BLAKE2b-256 checksum
How to use checksums
d4aea9c3dbf02cfcc7b5e2a857ded7647f1e0820d6395b3f64c17086556bef6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp38-cp38-win_amd64.whl

Download URL rtvamp-0.3.1-cp38-cp38-win_amd64.whl
Size 163.0 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
fb08ed4cae07602130f39794c2294a5441d07e9dbc980c5fad6a007e9b5749b7
BLAKE2b-256 checksum
How to use checksums
47aad686339cd102d33a23ad3a155a2e1d2b21bd5ff4954b25ee7a5b28138368
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp38-cp38-win32.whl

Download URL rtvamp-0.3.1-cp38-cp38-win32.whl
Size 138.3 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
75ad0e039f009d7d7ae8bf79eb7bb66af65d9cf47625a5a7ced0887d9626a5c8
BLAKE2b-256 checksum
How to use checksums
f1786d8f74dc8515f5941e44e77ceee31d75911bb360a8b031c2693748065c08
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rtvamp-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 350.4 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
86f97372316070c7a105f054783c6d04732eeaa80df11257e692bbb8b9a0f575
BLAKE2b-256 checksum
How to use checksums
3be6a45d6b88d8485fdb2c07cc6fd3463523bd6533129bccee64608f8493666d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL rtvamp-0.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Size 376.3 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
25f57b744f8a92143d8d88d0744bf42d76af01af71f240863ba161c3009d864e
BLAKE2b-256 checksum
How to use checksums
420cc4bf193c46d999ffaf9b251b785793504b883981a033e2c2623faa792968
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp38-cp38-macosx_10_9_x86_64.whl

Download URL rtvamp-0.3.1-cp38-cp38-macosx_10_9_x86_64.whl
Size 1.0 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
0184e389c473292e7fa8a7772a3c896190065b7b0020298016a6abd6183b44e2
BLAKE2b-256 checksum
How to use checksums
cfdd4ac3f031203523f554717884b4eba540a85e2d69621f58174804606ca6b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp37-cp37m-win_amd64.whl

Download URL rtvamp-0.3.1-cp37-cp37m-win_amd64.whl
Size 162.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
c93b313fabffc89195ce40ce1d3ea830804dbab09fd0235e3a0136f414c32cbd
BLAKE2b-256 checksum
How to use checksums
9601777915c6f59d3ec946caac81feb919de9f4584f5ae6c979248ef3098d490
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp37-cp37m-win32.whl

Download URL rtvamp-0.3.1-cp37-cp37m-win32.whl
Size 139.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
d19a446078d4ba99f263a50f3a8aae8a5e915b762476d45938f5a4b380d50634
BLAKE2b-256 checksum
How to use checksums
3708f8a410d7b13b088af8a115ebd105e8f9dbfd608136c5928b886dacff1b29
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rtvamp-0.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 355.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
851ef7f78845672f020e2ab665ec41282d85f6a3d603828e2457da1d86748b54
BLAKE2b-256 checksum
How to use checksums
4b53ed63847068c9bb622dbd9bdb026ad642744277c5c29de996c85e7afbe732
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL rtvamp-0.3.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 382.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
ee3aafa709ae0bd1bee501a123a6d3aafbe8a41ecaa8d102a6a33d97e0272189
BLAKE2b-256 checksum
How to use checksums
dd1d2dea369eaac2840493fd9cc7fe42ccdb094c5a8414c6ff75da177f660b73
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL rtvamp-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl
Size 1.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
fbc93e929a6f10ec1dfa97b474c1a7280fd9440807422bb593c135133416dbf2
BLAKE2b-256 checksum
How to use checksums
c90e9ed452eda9e3a465994e7dfbaed1cc4754f8018a52d849b9ec905e269df1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp36-cp36m-win_amd64.whl

Download URL rtvamp-0.3.1-cp36-cp36m-win_amd64.whl
Size 162.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
78d5f83f4029b9b7626a050006c7e60d457e25ac57aee07452b4fdfccdf3559a
BLAKE2b-256 checksum
How to use checksums
259ce8517a9a19f689e109a76ea8bef04c6144fc972a8923bccfabe4f52a6ba5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp36-cp36m-win32.whl

Download URL rtvamp-0.3.1-cp36-cp36m-win32.whl
Size 139.4 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
8d0213d3095955e16e3cd247eaa3f6a7de028b7038943175126e6881e7236e67
BLAKE2b-256 checksum
How to use checksums
327d1032770ac62e705db6a11e8747360db438e3e636b7060ea0b7d68247cece
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rtvamp-0.3.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 355.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9d59f9562ca27209e21120447476e22f8c6525437d19d883042d952f61ec975e
BLAKE2b-256 checksum
How to use checksums
437b3c61ac3f72b818e323dbecd486fc882ae7450f4d19aab7ff1ee396bdcd7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL rtvamp-0.3.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 382.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
c3dbdb41c9766c7f19642e95400a548caea9fb304a80ca83d90cdb202deae223
BLAKE2b-256 checksum
How to use checksums
886a79c564d26ba429488ed65b3cacfb9764df451cf93b4fb1adfb10b1ecbbc2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release files / rtvamp-0.3.1-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL rtvamp-0.3.1-cp36-cp36m-macosx_10_9_x86_64.whl
Size 1.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
eb61bb951dc67390c351b89fb3de1fecf708e02a8e9ebbfceb65ebc97d1de5b5
BLAKE2b-256 checksum
How to use checksums
f919b8232e865cf4e765b9cc302ba8ad8eef17fb0ada09b655fa8a385eff0f37
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

Release history Release notifications | RSS feed

This release

0.3.1 This release

36 release files

0.3.0

31 release files

0.2.0

31 release files

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