Skip to main content

Build visibility graphs from time series data.

Project description

pypi pyversions wheel license

Example plot of a visibility graph


The Python ts2vg package provides high-performance algorithm implementations to build visibility graphs from time series data, as first introduced by Lucas Lacasa et al. in 2008 [1].

The visibility graphs and some of their properties (e.g. degree distributions) are computed quickly and efficiently even for time series with millions of observations. An efficient divide-and-conquer algorithm is used to compute the graphs whenever possible [3].

Installation

The latest released ts2vg version is available at the Python Package Index (PyPI) and can be easily installed by running:

pip install ts2vg

For other advanced uses, to build ts2vg from source Cython is required.

Supported graph types

Root graph types

  • Natural Visibility Graphs (NVG) [1] (ts2vg.NaturalVG)

  • Horizontal Visibility Graphs (HVG) [2] (ts2vg.HorizontalVG)

Available variations

  • Weighted Visibility Graphs (via the weighted parameter)

  • Directed Visibility Graphs (via the directed parameter)

  • Parametric Visibility Graphs [5] (via the min_weight and max_weight parameters)

  • Limited Penetrable Visibility Graphs (LPVG) [4] [6] (via the penetrable_limit parameter)

Note that multiple graph variations can be combined and used simultaneously.

Documentation

Usage and reference documentation for ts2vg can be found at carlosbergillos.github.io/ts2vg.

Basic usage

To build a visibility graph from a time series do:

from ts2vg import NaturalVG

ts = [1.0, 0.5, 0.3, 0.7, 1.0, 0.5, 0.3, 0.8]

vg = NaturalVG()
vg.build(ts)

edges = vg.edges

The time series passed (ts) can be any one-dimensional iterable, such as a list or a numpy 1D array.

By default, the input observations are assumed to be equally spaced in time. Alternatively, a second 1D iterable (xs) can be provided for unevenly spaced time series.

Horizontal visibility graphs can be obtained in a very similar way:

from ts2vg import HorizontalVG

ts = [1.0, 0.5, 0.3, 0.7, 1.0, 0.5, 0.3, 0.8]

vg = HorizontalVG()
vg.build(ts)

edges = vg.edges

If we are only interested in the degree distribution of the visibility graph we can pass only_degrees=True to the build method. This will be more efficient in time and memory than storing the whole graph.

vg = NaturalVG()
vg.build(ts, only_degrees=True)

ks, ps = vg.degree_distribution

Directed graphs can be obtained by using the directed parameter and weighted graphs can be obtained by using the weighted parameter:

vg1 = NaturalVG(directed="left_to_right")
vg1.build(ts)

vg2 = NaturalVG(weighted="distance")
vg2.build(ts)

vg3 = NaturalVG(directed="left_to_right", weighted="distance")
vg3.build(ts)

vg4 = HorizontalVG(directed="left_to_right", weighted="h_distance")
vg4.build(ts)

For more information and options see: Examples and API Reference.

Interoperability with other libraries

The graphs obtained can be easily converted to graph objects from other common Python graph libraries such as igraph, NetworkX and SNAP for further analysis.

The following methods are provided:

  • as_igraph()

  • as_networkx()

  • as_snap()

For example:

vg = NaturalVG()
vg.build(ts)

g = vg.as_networkx()

Command line interface

ts2vg can also be used as a command line program directly from the console:

ts2vg ./timeseries.txt -o out.edg

For more help and a list of options run:

ts2vg --help

Contributing

ts2vg can be found on GitHub. Pull requests and issue reports are welcome.

License

ts2vg is licensed under the terms of the MIT License.

References

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

ts2vg-1.2.2.tar.gz (618.4 kB view details)

Uploaded Source

Built Distributions

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

ts2vg-1.2.2-pp37-pypy37_pp73-win_amd64.whl (296.3 kB view details)

Uploaded PyPyWindows x86-64

ts2vg-1.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ts2vg-1.2.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (392.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

ts2vg-1.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (309.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

ts2vg-1.2.2-cp311-cp311-win_amd64.whl (323.3 kB view details)

Uploaded CPython 3.11Windows x86-64

ts2vg-1.2.2-cp311-cp311-win32.whl (279.2 kB view details)

Uploaded CPython 3.11Windows x86

ts2vg-1.2.2-cp311-cp311-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

ts2vg-1.2.2-cp311-cp311-musllinux_1_1_i686.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

ts2vg-1.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ts2vg-1.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

ts2vg-1.2.2-cp311-cp311-macosx_11_0_arm64.whl (350.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ts2vg-1.2.2-cp311-cp311-macosx_10_9_x86_64.whl (394.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ts2vg-1.2.2-cp310-cp310-win_amd64.whl (326.4 kB view details)

Uploaded CPython 3.10Windows x86-64

ts2vg-1.2.2-cp310-cp310-win32.whl (281.9 kB view details)

Uploaded CPython 3.10Windows x86

ts2vg-1.2.2-cp310-cp310-musllinux_1_1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

ts2vg-1.2.2-cp310-cp310-musllinux_1_1_i686.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

ts2vg-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ts2vg-1.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

ts2vg-1.2.2-cp310-cp310-macosx_11_0_arm64.whl (355.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ts2vg-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl (399.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

ts2vg-1.2.2-cp39-cp39-win_amd64.whl (332.3 kB view details)

Uploaded CPython 3.9Windows x86-64

ts2vg-1.2.2-cp39-cp39-win32.whl (287.0 kB view details)

Uploaded CPython 3.9Windows x86

ts2vg-1.2.2-cp39-cp39-musllinux_1_1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

ts2vg-1.2.2-cp39-cp39-musllinux_1_1_i686.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

ts2vg-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ts2vg-1.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

ts2vg-1.2.2-cp39-cp39-macosx_11_0_arm64.whl (357.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ts2vg-1.2.2-cp39-cp39-macosx_10_9_x86_64.whl (402.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

ts2vg-1.2.2-cp38-cp38-win_amd64.whl (331.8 kB view details)

Uploaded CPython 3.8Windows x86-64

ts2vg-1.2.2-cp38-cp38-win32.whl (286.8 kB view details)

Uploaded CPython 3.8Windows x86

ts2vg-1.2.2-cp38-cp38-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

ts2vg-1.2.2-cp38-cp38-musllinux_1_1_i686.whl (2.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

ts2vg-1.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ts2vg-1.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

ts2vg-1.2.2-cp38-cp38-macosx_11_0_arm64.whl (348.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ts2vg-1.2.2-cp38-cp38-macosx_10_9_x86_64.whl (393.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

ts2vg-1.2.2-cp37-cp37m-win_amd64.whl (327.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

ts2vg-1.2.2-cp37-cp37m-win32.whl (280.6 kB view details)

Uploaded CPython 3.7mWindows x86

ts2vg-1.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

ts2vg-1.2.2-cp37-cp37m-musllinux_1_1_i686.whl (2.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

ts2vg-1.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

ts2vg-1.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

ts2vg-1.2.2-cp37-cp37m-macosx_10_9_x86_64.whl (396.5 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

ts2vg-1.2.2-cp36-cp36m-win_amd64.whl (376.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

ts2vg-1.2.2-cp36-cp36m-win32.whl (309.8 kB view details)

Uploaded CPython 3.6mWindows x86

ts2vg-1.2.2-cp36-cp36m-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

ts2vg-1.2.2-cp36-cp36m-musllinux_1_1_i686.whl (2.5 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

ts2vg-1.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

ts2vg-1.2.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

ts2vg-1.2.2-cp36-cp36m-macosx_10_9_x86_64.whl (393.5 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file ts2vg-1.2.2.tar.gz.

File metadata

  • Download URL: ts2vg-1.2.2.tar.gz
  • Upload date:
  • Size: 618.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2.tar.gz
Algorithm Hash digest
SHA256 53bdbb52f2fbcca6b5b23050a69b240927a122b359f235f5532636fd9f3bbaed
MD5 ca9a3fc1ac52426c45b76b3065802774
BLAKE2b-256 50aa4ab3190fbacbae79da39e8cc9c392ff020bc87776530a07e52242fc27590

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ab1b8437eaeee07433b19c77864586e9784c340703e0e97605997be7588f77ac
MD5 8999a36651b078d8137df6e32d256767
BLAKE2b-256 5f45dc457508125e9e21673e9ca1bcb0f5ee3c475b609b40bd88b8c20e422192

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 510a4716b0b5c0577b22462fd6217d8cb50c4a53c94c5fae4fcc27c46f7c8188
MD5 72f9b7ae6f433261a0adf63c1808c116
BLAKE2b-256 c99b41f02cf13fa3a04d80d22e6c3175816e89572c49128d938c8f57a269b427

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5677d7f750a7c0c4ed4309ac0e29f25f11c865c739d53d4a38b57fd5b704d5a6
MD5 b3618d8b22c5cabbf499b6aa3c06d778
BLAKE2b-256 473d19c63134a334d06652b5548cf8a5ba0ca8002e86f85457c437d77e1da2a1

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 27ce308847b0ce307064376d0614b18bc66feea212166530faea053cd6691c7e
MD5 fe869f8501126a407c5cfa0d015fb688
BLAKE2b-256 67bf7786b7438207728b1dc86b1feb1fcf35a20b39278eeb8deb04e60b8face0

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 323.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 70d00c27a04d848d01e9a76b3a37977f4a07d9d6b5c5e5ebd3f7963a260b4b71
MD5 9b6389639832a75ef021f7aa948bbbf4
BLAKE2b-256 4e00f4ce91233b65dac13b9de8977c6ba123ea824ba9fa13e0e75cf4bcf3c6b6

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 279.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d8adc0c8d599227d86e08c48f063e8ac0ccc9579a4d0325a5127379eacc79e83
MD5 423c030eb812a14ba20451d702777169
BLAKE2b-256 21f590ce74d6f6c6e0bf73d95b4b0d0cf05a70a8db9cf03e0162960256b12621

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2e21f4271c1b7f5bb6b5e1058a816c5870ab549bd8ec4bf6a87dda9750c7bb1a
MD5 625740608a928c7e8ed1b23ea76ea9f2
BLAKE2b-256 4bc2b69e7ac770e38421f87ebd460d27a13a4c9f477497c6c67aca0d1f36c27e

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a7174838b477820286ff8f769878f47d2c68aeff154510319b88045bf4a9713e
MD5 53e07fa3f7fa1e35c6d07f5863b8f9d9
BLAKE2b-256 edeb3c91d0f49798f728306f22b0e9490cd1c6c228624a59e05925a0f3b6e454

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8e6b3d4631000c3d76b4c46fb03b55b40f813e94d0b79bb597ced6e44e24bfe
MD5 b4ad14a597ab0fcc708cab53ceadd44a
BLAKE2b-256 798ad040d2a9d05978187d5a0db18e74e41fc17e17690890bcced39074f2f007

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aaddd5e0e12855b941be566fb331d77c747014cfb61566cad541ab0d7371303a
MD5 fd9472818a9d3fa2efc5378f90baeaca
BLAKE2b-256 a72142d2d2aa058ba27b3471a4be275b7516dde62d7680a45fb53f6b7eea896e

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95a7c4247de87a3680afe944aff2604dcff3fcf66045eb3c5a1ac841ff770bda
MD5 a6fb22dd3479ebf48d0ba912736d0747
BLAKE2b-256 320ec44b3bdba9d56b383bc4805848c92bfa73ddca6d9f4cb6f07ea9b6d48389

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3dee3bf65d1b51a2212afa6bf7eeed31f7bf4b46045a0b06400afe8786026fac
MD5 142e40acb87305868bd30b9e0e91dfac
BLAKE2b-256 5f80c6cd3b7b9d882743e4b7d574c2ed222f1b62079636250d86b2a3ec8e9674

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 326.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f25c41ca746950f27ba0f01769f06c4402a1508a7c9da7e5f4e5f3ecf2558fe4
MD5 e87cd135146e07216c82bf9e515c1044
BLAKE2b-256 55aef2b1f2325d1d3a7241db789d1c33b95c18b938ff6b2a1592441b2ecd7f37

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 281.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f6ce0458b68a9e1d98b6cc29e601b6e18ca2f3b5917de33cc9828e5dd2605b0c
MD5 12872fa290569c5f518f237a4c757ca2
BLAKE2b-256 e20bffac5cad544d9f26412833d70c3e579ad6d4b95fe7d5f1b63cb97d8eb60a

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0cb45e296326a9506137153e039206d0f7da16751a7c55a8fe68555d09340294
MD5 6c8512f14accb2f4dd95345ec8959b4b
BLAKE2b-256 dcbf12c3511ff475a1a69353120b8c5fc1bf8d7c023ef7d16856b2555477bfb4

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d5113df88299479bd8095b5b9989d908f35add8bf63755a709b3b23f3892df8c
MD5 493173897ae4ca384ea81993031c805a
BLAKE2b-256 7570f8b30a293c61c4662c7aa9209657cbd13912b3f7aaf50d68e6780703e714

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e028edf95764d709777437babaaf470ed610c8b4f4330a44f1410eece0e8866
MD5 35976473f65d45f54f988f94303cc2c7
BLAKE2b-256 a7397e621f3f2ce893cef220d9abea30b96dcfcd03b442f8c500da8d41210f2f

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f01169ef403df8e1aa83ec15be36f5a07a96d2829ab359f768668bf62b7a719
MD5 edd9728c1e1744640eb58d38d3c007e0
BLAKE2b-256 90f80eb0747dc4236c4b5b19b3424fa2322e0aa7db084cc2c4c22ec7fa1c6b06

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c5baae5e5ec73b463683442d18e70bd3ceb1cbe362176325dedc09d76a3ff31
MD5 6b6e6e0f4737d0dbd36729ab822ffba0
BLAKE2b-256 2f7e524b94b910a208a6dd23105b7291772f894779372459d969018ac5799f21

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f00328c9ec7ad9cacd0bdd737ad5c79f26158bd154d076518fd392ae47be671d
MD5 61d3e052dfdcca16ae938c4684b1eed5
BLAKE2b-256 4e36bcf36f7e6d6aebc06dce249e623c78487164d089fb25a1dfa919a1c22ad6

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 332.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 81e81177c820d340655617446095be95f188e59cfd0c27a31dc7c8e487c3cac1
MD5 959a0e2eaf94dfdfdb59eda4fe1ebc27
BLAKE2b-256 4aaced30dc2911270aab8d20ef2098fe797952392db3ba9c17e76dcecedd4f20

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 287.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f8bf4261d0e0aecab2af214b209e1ede5a6372aeb335e3c8910e5d5f429a880f
MD5 9cdb07d66b8a62bdc8b6b4d3009eaa95
BLAKE2b-256 5cf1cc22c2c9671a2ed1d769bb26fb82586c95e81e8da2adcf15ffedc94c1de9

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 48e03fca2f74a9cd0dc7936ceeb947564168047f26c1fe575a836305403f28d9
MD5 8bda0a64c95ace30e640bf6fb6c3c6e8
BLAKE2b-256 34d4690d3358b468fc1f65d4c4c1e1a6d564689cd574f9497bf716f6772ef350

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4607bcb44b971f68d24b2b9c335a2645db5112e0ae114a2b9c09ace0bc3787c5
MD5 32d33e358565db77ff9fa5b3bbf4ad61
BLAKE2b-256 c69d38a0d8dbf474eaf771ee48297021490b80cd876896a1c712d0fb562c98e5

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85fa377e0a48eddd073514f545f34d2cdf80fece45312841213c0182b0264965
MD5 44c5e92b0dc7255d14106d2d92b5dd99
BLAKE2b-256 08b1d4710830caab20cf81f8043a3a52f2d6a419c1b29e79489085da859eb51e

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01e59fa07cc7bc469fe59850ff61515c76fb10fff0dc978141edf62fd3f928ce
MD5 cad6d5d145e9db2f4a6fed7c43d9dd7c
BLAKE2b-256 9db5114bd5f4e78dbc9a6e4a2b673ecaed7b248a2487cc468125e1c8ca7e91e4

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 357.8 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1bec84f6fc55ae409dabe12b98b040b3199a5ab71fba4044e5d3f94679a6316
MD5 37c7210eaaf188d0a4e993b11d0099c1
BLAKE2b-256 60d2887dc74a29199c380e707b668b1a2fdea0413b75bcff0ba8fa6d25fb78b6

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 45b1a5f61a0b19d251b620bd0bc421eec9e08aad63c375e9e30fbb6218cef02e
MD5 a5ad35af5a47a86bc00bba9202420e85
BLAKE2b-256 014cf768081cfb7be63671f0e50937a39346f68025068424e666e9e8f32ba575

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 331.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 53b1bcae73a84101e3160987c82a3e39311f126221eb72d328940bd0b7e7f8be
MD5 92e45db6dfea1d9fb31a21154b13540e
BLAKE2b-256 aa312f74bea4e86922b0f532e5f7be7ef27b51781aa8bc4922a562d66d697a57

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 286.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ada3f279fa5e4ad4c924cdc1fe26be6997a91729179dbfd375fd950ecaad970d
MD5 70c6a45d49e1e1981922b6cd521e1aa8
BLAKE2b-256 e2f8fb13d3d280a0e483ef585e21b3e584089b8d625def8b679db115c666f2bd

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ca1ef850d7b1cad1a60ef0ac2a813cf2a05848bc546a3bd6c689c3989076aa64
MD5 75288a9a11bad55c9b923c4eb394b609
BLAKE2b-256 9f93326ff72e660d25977d01d079a4175a55b9d55edb26f3299f25a7a8692bff

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ea9633c701a38d4435d32d70ac8109bf285b34b0fd716d5725bf425a6fb4cedb
MD5 5bd897a53601ebb12e53c6ac890d84f7
BLAKE2b-256 6ac7f01b0b276004f1d36828a60f047d86b6872107aca72e510910d2416398b0

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9715ea7e0ef099f598a9c9af03b6c98e1ef2339a6eda9182b99b3461a310aba
MD5 81a70382d7aa7c7fde84de943adb7ddf
BLAKE2b-256 fee116383e8ca326a5048c98e713445bff70ca96b2d22ef28f8dce9507a88341

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e579baf3d0d37371df0eacfe1139dbccee20c46dd1731a58bccd3e1a202835ec
MD5 092b9385012250d16da071c7d7ddf440
BLAKE2b-256 3212ca5b459245dba7640098f49c0b248ce7253a5445b43fb60da87920d3abac

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 348.6 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7d036d6a430ea22da7ee9397383f9483848e19e717b3e88b359ccd1f6dacb04
MD5 8e669cb31a2ab728d71abb6ae03b237e
BLAKE2b-256 90344c87882e4eb92a1ee4c5bf3dead3039d1e9fa9e9aa4e276449b546907824

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c92cbf9f9ba6f391d67c32d1f79c10fe8d490180c74e0fecccbac3eb6e48640e
MD5 62c9d16852f2da091ad231f4dfa036aa
BLAKE2b-256 e2ace70280ac1d055214c25effec5c42a915bce41b2b86c798f9d685a2e13571

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 327.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 32f7972a19b017b89f863e5a1f49ae1c639e5f34fc6f40d6afd7e53fa0c41cd1
MD5 0ca2088d13e4060012e55e839461ca7c
BLAKE2b-256 d2fab2c18f663c42a4b9e4724dcfb8377cf01aedb319ff029195a04f07899ed1

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 280.6 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ecdcaa600974577341f1aa109ddcb9a69cc1e706ffa54adee11d239b80fd5280
MD5 2730fcefacc2f1034d57dcbb27b39779
BLAKE2b-256 c2799bac412a6cbe5cb55411cca9070994330cc9a70d604ce83ef67de86aead2

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 52d013285297ff942d47c1066b87487e051df72fa880f0a1da475c073813790a
MD5 955ae732883487ec26fc3b97f4bdb2e0
BLAKE2b-256 702c1715e24b7f5e82f55f5e5e23651b15469c3a7f4fd9c3cb6f1e1e22bfabcc

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 08a5334d24ad6c77e6c1e6e579b26a24006378f483133f4fe623c6b9ad6dd240
MD5 14a1b812537bce2c817d39ef95a9ed46
BLAKE2b-256 202f6eaf1aa40b053316d5aa365c016e061bcc0fa5928b8e59651f314ee54e62

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c09c6161a99307d1c919b5ae917be594d9b17a6c4622a3e6e082a8093d69c687
MD5 53c3fc070d55d0b682e39ca0a034e155
BLAKE2b-256 c2b029e627ac56c40bd5ea6ea898ffe3b5c701aea769bc3be8dd6eb0174cbb93

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24e6edf48c1cd2dd5fe86bef87ff9705a3cbbd3421033840c0191dc63a321494
MD5 2b2492daafc1949e2cceec02918b97bf
BLAKE2b-256 6f4a869b668a382aed28c0b5df49576a8efdec540db0d315b9d3a85590900f55

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4cc0a42a2d715a6ac0569381294873072253d88fb90755a56e2abaf6a3ef3202
MD5 f3a798806252dc072022fc4bdc6bf757
BLAKE2b-256 c86e3c1e0b88bc027c86eb9041dc02321ff63373fff02c68661eb6000ebe084a

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 376.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3b4a1cf245e05f3a1f75079550dd5b32557f5b182913c18af86a33f0beec290e
MD5 c745b73bf618ccced00c7acc059841af
BLAKE2b-256 d90b5ba3af20e1b6b61a5899f2fda1305c4f87f5782b75c2d4b6eeb03a1aa6d7

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 309.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 90a354247117eb1d368821e22160d656d1098f7b6714f7f9852f16da4b50cff6
MD5 29e7e362c1f3afba99fb0dfd62292a37
BLAKE2b-256 5aa5e9374522eda14b897e6bb3a7e571420e26c2549755c353a861eaa63df581

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5131a28cbd79dfec99c6caa896e8d2badfb26ec4c46ac9a97251492ba4f1df7f
MD5 5fa53d2cd0eed00dfdb25fe5d25e638d
BLAKE2b-256 d3050be7dd71d6952094261d30ea849195abf98da913b4913521f3202a685804

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: ts2vg-1.2.2-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for ts2vg-1.2.2-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 17baea27aa0d4357198ab3165823f276bcc8c8e6ca5a6e052ccb41aaee8741df
MD5 8c8a18259f719a239d28c1072d80cf99
BLAKE2b-256 e571541743caf0280533436a5b98647a99fc46d6cd57f62e2e9fd00031b47c32

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16563cc4aa3c27a0515174325d6ae632932699b54f01fd574f824ad38d939da9
MD5 4ccd5d070a673817513696b9bb132426
BLAKE2b-256 fbda445edb458dbf6d7832db8663030068c8a9b3d29966289bbe60d198293be2

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 477e0b7752c897270242f01afc7587eedf864183e7701bdc98a2185e703428bc
MD5 20f4e3861f82b4b4077d369679051f73
BLAKE2b-256 eb22cccbbeac161010860e96568662c2e7a6e26d9c924bd198fa99c5fb92e025

See more details on using hashes here.

File details

Details for the file ts2vg-1.2.2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ts2vg-1.2.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2da54a8ce6d3d23736405cb66d597ed6b4fba24fcef444398576313b0cff4c58
MD5 96e9a4ce8a3dfb2e97bc536e719cdaa5
BLAKE2b-256 2082425135fc0aca0da3e22bcbe2709871dd8efb52a77b36488b8f11db6f920f

See more details on using hashes here.

Supported by

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