Skip to main content

Better, drop in replacement of vmdpy

Project description

vmdrs-py

Drop in replacement for vmdpy with fixes and improvements using the vmd-rs Rust crate.

VMD, aka Variational Mode Decomposition, is a signal processing tool that decompse the input signal into different band-limited IMFs.

Installation

Available on PyPI

pip install --upgrade vmdrs-py

Requirements

numpy>=1.20

Examples

#%% Simple example: generate signal with 3 components + noise  
import numpy as np  
import matplotlib.pyplot as plt  
from vmdrs_py import VMD  

#. Time Domain 0 to T  
T = 1000  
fs = 1/T  
t = np.arange(1,T+1)/T  
freqs = 2*np.pi*(t-0.5-fs)/(fs)  

#. center frequencies of components  
f_1 = 2  
f_2 = 24  
f_3 = 288  

#. modes  
v_1 = (np.cos(2*np.pi*f_1*t))  
v_2 = 1/4*(np.cos(2*np.pi*f_2*t))  
v_3 = 1/16*(np.cos(2*np.pi*f_3*t))  

f = v_1 + v_2 + v_3 + 0.1*np.random.randn(v_1.size)  

#. some sample parameters for VMD  
alpha = 2000       # moderate bandwidth constraint  
tau = 0.            # noise-tolerance (no strict fidelity enforcement)  
K = 3              # 3 modes  
DC = 0             # no DC part imposed  
init = 1           # initialize omegas uniformly  
tol = 1e-7  


#. Run VMD 
u, u_hat, omega = VMD(f, alpha, tau, K, DC, init, tol)  

#. Visualize decomposed modes
plt.figure()
plt.subplot(2,1,1)
plt.plot(f)
plt.title('Original signal')
plt.xlabel('time (s)')
plt.subplot(2,1,2)
plt.plot(u.T)
plt.title('Decomposed modes')
plt.xlabel('time (s)')
plt.legend(['Mode %d'%m_i for m_i in range(u.shape[0])])
plt.tight_layout()

Compiling from source

Requirements

  1. Python >= 3.7
  2. Rustc

Instructions

Rust compiler is needed since this project is compiled using Maturin.

pip install maturin
git clone https://github.com/jiafuei/vmdrs-py.git && cd vmdrs-py
maturin build --release

Customizing BLAS providers

BLAS is used by ndarray, follow the instructions there and edit Cargo.toml.

Project details


Download files

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

Source Distribution

vmdrs_py-0.3.0.tar.gz (22.8 kB view details)

Uploaded Source

Built Distributions

vmdrs_py-0.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ x86-64

vmdrs_py-0.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ ARM64

vmdrs_py-0.3.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ x86-64

vmdrs_py-0.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ ARM64

vmdrs_py-0.3.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ x86-64

vmdrs_py-0.3.0-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ ARM64

vmdrs_py-0.3.0-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ x86-64

vmdrs_py-0.3.0-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ ARM64

vmdrs_py-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.28+ ARM64

vmdrs_py-0.3.0-cp312-none-win_amd64.whl (451.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

vmdrs_py-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ x86-64

vmdrs_py-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ ARM64

vmdrs_py-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (447.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

vmdrs_py-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (537.9 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

vmdrs_py-0.3.0-cp311-none-win_amd64.whl (452.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

vmdrs_py-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

vmdrs_py-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ ARM64

vmdrs_py-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (450.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

vmdrs_py-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (541.0 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

vmdrs_py-0.3.0-cp310-none-win_amd64.whl (452.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

vmdrs_py-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

vmdrs_py-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ ARM64

vmdrs_py-0.3.0-cp39-none-win_amd64.whl (452.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

vmdrs_py-0.3.0-cp39-cp39-manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

vmdrs_py-0.3.0-cp39-cp39-manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ ARM64

vmdrs_py-0.3.0-cp38-none-win_amd64.whl (452.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

vmdrs_py-0.3.0-cp38-cp38-manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ x86-64

vmdrs_py-0.3.0-cp38-cp38-manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ ARM64

vmdrs_py-0.3.0-cp37-none-win_amd64.whl (452.4 kB view details)

Uploaded CPython 3.7 Windows x86-64

vmdrs_py-0.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.28+ x86-64

vmdrs_py-0.3.0-cp37-cp37m-manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.28+ ARM64

File details

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

File metadata

  • Download URL: vmdrs_py-0.3.0.tar.gz
  • Upload date:
  • Size: 22.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for vmdrs_py-0.3.0.tar.gz
Algorithm Hash digest
SHA256 62689384f5b3b6eba97e107b047928eb3e857c29233d04b329cb87cb200262ae
MD5 4491452c88bbc01747b10a55560146eb
BLAKE2b-256 6a295602daf34b72cde46b8f2c6ee7f7841dde997d0c91c54c37cd75703660af

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d8ce42e9d82d91e4bedd3f32a7fb939d67b62db62fba7d44d5387fb2a7bf14a
MD5 3d4b0f74610883037a915d252eb7ebce
BLAKE2b-256 fbc7170c5fe91438fd5980f9fc1a8739cc3df7d7f322a6d2ceec323d99754e60

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8005e1b6e885d17ff1f3eabbaad85aeaa05ef7be9c45284bc7390c1e5d9a167c
MD5 157efe37caad7eeaca19d244e649ce1a
BLAKE2b-256 2759526561c0315fbfe9e8ea12c74cd780599def692e92d1b75e7098870d1637

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97fc20e1dc5c6fba935431b018a4c5d632add5f309313efac52bf0fbc6d94d69
MD5 34db08946d935098263207b0bab0a6c8
BLAKE2b-256 7ae959b946a9ae556851ad51c1de9b3d00314b3e1450d388ba11952fe018dcd5

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1373d199b1145570f30492c90be30e4fd8a66629651af88ad3cda10e5dd2e4a1
MD5 3881d947b1c28bd6c850f173130cec53
BLAKE2b-256 b8b3be67a0f38258f34c600e73f75935e432f7dcdc1ddd573a1f1fd424592970

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7cec155f82e0e01a057cc8ff97e2a7dac8e4dcad9c824dcc905bb7ff77c6470
MD5 c4a1d829063d794f647a98dbd1c5b0af
BLAKE2b-256 7d8639e7053c0671c0639df6d1bb417f109e48876b4d89144a64fb4ff274499f

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0bc2266fc1c647cb965d2a8b2ac8c6faee6c25ccd1ca8bbd507656c594e38282
MD5 e0104b255a86ebe8b2225ab5f24e4b09
BLAKE2b-256 395ce4e800bf8384b99c3472c8c376cdb62f0bfa4a78ea70c0629d0a358c35bf

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23423a83cbb0b450722589013206ba5a67c6fe92a9239d0643ab61407badfaff
MD5 479c4fc7be62d120cbf76ab92838af93
BLAKE2b-256 918451dad2343457624ad218e1499c431692ef53b68b888275a65e9ace9d7b4b

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55923725745142ce2ea07fc7282f96e86597fd46e55493de648321f55437eb3a
MD5 06b8af092850c92a3386e36c1debac3c
BLAKE2b-256 37d739e53808f799cf72554d9ed6ceba98510175ed60c53712fc9c907f723b0f

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16868bfe7440397bed43fe806ad3943e3bb3d6a80eb21cd4143b2901b1abe89d
MD5 559a24ea759ec0c62379890c7c9d6628
BLAKE2b-256 d6e1ceae8a2431650405ff888daefc6db634a56125961f56dfce566912562ce0

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 f9833979ba5e5dd0a3ee26281f81c7ca3c4fe43fed49580c09120ed24399196a
MD5 61ffea39a16f33c9e0a5eb134cfa2f07
BLAKE2b-256 d91fbd128f4e350606fc910c264fd4e32a694517d75fad85777b39b8240429f4

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 609171f8e8ce8108e1f60e56c2be9b44788c1561b21f0cc0d6a1e5c5d40a6b6f
MD5 a7500d54f6abc405b4232cee60e2ca39
BLAKE2b-256 efc401b6aa80c2685b6289a30b7d734fd715d1da70e1b9a7dea189a8c2134e90

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6af7c3a23dd762b742b8582ab47f8aff843cea73fb46e3436c36891d93aa4a5e
MD5 d25260f09cd0e98495500eb77f4e0480
BLAKE2b-256 0ea64a939ed52505c285c2f2c73e3aecbca5cb0c588745f039ef0ee6fc007779

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d3d4969184a12ea957b3f228d251535afd99a1848e204603659b00c9c01e32c
MD5 682f463ad6d371e5f5e66c46c36f2b16
BLAKE2b-256 2491e0916699813fe04bf671b6c1edf28139fe77800c309440115e9f8976c106

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe6dc0d06fb5c00fff77ad40ad6efadcf1219d19c00108c4e9e53024576be3a5
MD5 3f8d939de6140be7b7b940812e4a0dcf
BLAKE2b-256 655538d73abed01ebbe1ff7ef486d5a6a809826bc24ec299f18df52eec85269b

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 d7e7fd8ef1040b4a340e2818dc4ea66f4f02cd4e3516552adf07dc6c9251ef49
MD5 0f4d21f47098b4d3fc9293e345b0ebea
BLAKE2b-256 9c047827675278615a38462b3d8ce05e9f2f6855ecccce4c48fa0e17a37eff56

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9063280bdbe65a258fd62ac7f51adeb773cf3c50b6a7e4696e7f87ec7fe97369
MD5 3a010b5d758cd4f9c5de24232b9920a7
BLAKE2b-256 3d8329dc2c66905a69b1e57b392354c7511446dbfe0afe0a32bdfe1736f6341e

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e0c40170faec4e4b3cc24b1876c9f95c236fd24ac2bdf74e76a8dba2c07b10b
MD5 0cf3823febfc63cdc17a2fbaa0f5a379
BLAKE2b-256 7537352ca195a4b49186fdccc34fa763862dedf9e063c1e6f408baccecd5c49b

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69b7d4031c6b22c8da9e26cbc531d75ee2fee19f13902eb8f87a2a4afc65384d
MD5 48337b4a9efd3e04ab62fb483643c2e6
BLAKE2b-256 3a109f295d48d3344717b8ac9e1fb492e9a4c6e789c3608343bd72968e31548f

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 385489e2cf9b7596d31db18379bb6e10d892c1399577ef6db15cbe783c3954f9
MD5 34858c3ca3beb3964fd12c6da5066c3b
BLAKE2b-256 5bbf6e2c7da01468ffb3ebb7f2c81dc505323fbd2ac900c38b580f7444e81eb4

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 fd8cb8bf89271ac8010ae3d2567e53f438d718e883e26f75212e75eaff4c9b13
MD5 63159fe54d2cc510383e37753f4de37c
BLAKE2b-256 797bf99d0c5b4ad99f68a269b4f1a1c21f37336cd62e4ef3e5176a02062ee62d

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d29b6ae7bd9ebe29f275bfee0231861b43ec0f264529c327b374241c83ec087
MD5 1c411cdde391ac5e318fcd1a20693380
BLAKE2b-256 7befe47364559e4b4ee596ddd179601bee418c9098146f794dfa460580559edd

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 37058de1cf23eb2eddfee2a84806fe9e1afba9f2a04b0cd7eb12eb5b3764ef8f
MD5 24c96361524fa588bf9d0b057fdbde75
BLAKE2b-256 a17ba0db63c12c5480eb3ee18660ad41ed3e2a669199dd820334049cd343880c

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 cd13c2c9808ff16b6e669aa6801bc82fb1b3a66cdd6100ffb8cc73ba8ff7574b
MD5 4677d21c41c74e15da0ab3c8277b0f6e
BLAKE2b-256 ae98d9ffc3e130dc5d5dc7d601ef18f2805526e4a3fa0acb4ea1d06af539d534

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4705f17a39087165a4e05edf4eb7bb9c7abe1c187b5df4b651187b87ada0816b
MD5 cfc73ecb3ed68a1eee9a4e1e3b91918f
BLAKE2b-256 ff830f5d84e82ffd0cf8d8ec3217286e37f1e5f8d3a08b5b8bc8044421de919c

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2cac3cfb1110ec1a82937ee8a90ee9b119fe2eb76e1eee38fe14d8824d09768a
MD5 c185cadaf954039798742b942dc99693
BLAKE2b-256 49efd0c95193e57fa5811932fedd4962716e759d98bfa9a1664702dd2b871def

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 a755ccd79a4c3e6eaf29f07832a8afea2cb2522359a460c481e7521d596bbd7f
MD5 44c814cf189c45dd21055f00c87a5a2e
BLAKE2b-256 8a31d229fe1f52d79b3ded00da1290e8ef066c94b4ea2f6ce87ed5457b297c79

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4369ee791f46ba968b83aa5d7faebaed8aa3827332fcac22966021634ba3c944
MD5 47d41046889e4bb4cb2acb1cc046ad80
BLAKE2b-256 b3ffbed6e18b3c74e0ec40c44ce719c5132dca432bcf29606aa7c9061054acd7

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a264d0ecd012380d4cece79fc4522fb56c8ec519f01bf0cbfae24300bffe051
MD5 6d7391683da279821ecbae3049013aac
BLAKE2b-256 8a8917b356691ad5494d5f6207d5ed9b0eb05e0989ac18b10380771252215967

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 4b35df39c6bb882a53b31f67abe63f4985849f723ac13c50cf875f9f9b883bb8
MD5 7897714acee48f644641ec14dc0fdc05
BLAKE2b-256 38726999666bd213c22f87efe0ee51ff2c348a0db456f834683a246e85408169

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48d2f3a993f31e9697b997b673e70886b34a5b5d6abaa88bf2d86ce7a48ead00
MD5 c5598c4fb942acd64892d7a57200bb3c
BLAKE2b-256 03fec322c29b986d39007266167406d8d1d740178f29df3ce15d57beb78ed588

See more details on using hashes here.

File details

Details for the file vmdrs_py-0.3.0-cp37-cp37m-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vmdrs_py-0.3.0-cp37-cp37m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9e433fd706ead0345c6d24d5f32f4e8c3e929b2aa336dbe007eebe98ad3cf3f
MD5 c2c4cd3b72b26a51364d0e3259e8d0a6
BLAKE2b-256 bced715da263f62f251b83ad9c13ec5ee6f53123056a0b7b152a073f9f5e94b4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page