Skip to main content

This package provides "rough path" tools for analysing vector time series.

Project description

esig

The Python package esig provides a toolset (previously called sigtools) for transforming vector time series in stream space to signatures in effect space. It is based on the libalgebra C++ library.

build

Installation

esig can be installed from a wheel using pip in most cases. The wheels contain all of the dependencies and thus make it easy to use the package. For example, on Python 3.8, you can install esig using the following console command:

python3.8 -m pip install esig

(You may need to tweak this command based on your platform, Python version, and preferences.)

esig can be compiled from source, but this is not advised. More information can be found in the documentation.

Basic usage

esig provides a collection of basic functions for computing the signature of a data stream in the form of a Numpy array. The stream2sig function computes the signature of a data stream up to a specific depth. For example, we can create a very simple data stream and compute its signature as follows.

import numpy as np
import esig

stream = np.array([
    [1.0, 1.0],
    [3.0, 4.0],
    [5.0, 2.0],
    [8.0, 6.0]
])
depth = 2

sig = esig.stream2sig(stream, depth) # compute the signature
print(sig) # prints "[1.0, 7.0, 5.0, 24.5, 19.0, 16.0, 12.5]"

The signature is returned as a flat Numpy array that contains the terms of the signature - which is fundamentally a higher dimensional tensor - in degree order. This first element is always 1.0, which corresponds to the empty tensor key. In this case the dimension is 2 (specified by the number of columns in the stream array), and so the next two elements are the signature elements corresponding to the words (1) and (2). These are the depth 1 words. The final 4 elements are the depth 2 words (1,1), (1,2), (2,1), and (2,2). esig provides the sigkeys function to generate these labels for you based on the parameters of the data.

width = 2
sig_keys = esig.sigkeys(width, depth)
print(sig_keys) # prints " () (1) (2) (1,1) (1,2) (2,1) (2,2)"

To compute the log signature of a data stream you use the stream2logsig function. This works in a similar manner to the stream2sig function in that it takes a Numpy array (the data) and a depth and returns a flat Numpy array containing the elements of the log signature in degree order.

log_sig = esig.stream2logsig(stream, depth)
print(log_sig) # prints "[7.  5.  1.5]"

Here the first two elements are the depth 1 Lie elements (corresponding to the letters 1 and 2) and the third element is the coefficient of the Hall basis element [1,2]. Again, esig provides a utility function logsigkeys for getting the keys that correspond to the coefficients in order for the log signature.

log_sig_keys = esig.logsigkeys(width, depth)
print(log_sig_keys) # prints " 1 2 [1,2]"

There are two additional utility functions for computing the size of a signature or logsignature with a specified dimension and depth: sigdim and logsigdim. These functions return an integer that is the dimension of the Numpy array returned from the stream2sig or stream2logsig functions, respectively.

esig also provides another function recombine, which performs a reduction of a measure defined on a large ensemble in a way so that the resulting measure has the same total mass, but is supported on a (relatively) small subset of the original ensemble. In particuar, the expected value over the ensemble with respect to the new measure agrees with that of the original measure.

Using alternative computation backends

esig uses libalgebra as a backend for computing signatures and log signatures by default. However, the computation backend can be changed to instead use an alternative library for computing signatures and log signatures. This is achieved by using the set_backend function in esig and providing the name of the backed that you wish to use. For example, we can switch to using the iisignature package as a backend by first installing the iisignature package and then using the command

import esig
esig.set_backend("iisignature")

To make it easier to install and use iisignature as a backend, it is offered as an optional extra when installing esig:

python3.8 -m pip install esig[iisignature]

You can also define your own backend for performing calculations by creating a class derived from esig.backends.BackendBase, implementing the methods describe_path (log_signature) and signature and related methods.

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

esig-0.9.1.tar.gz (83.8 kB view details)

Uploaded Source

Built Distributions

esig-0.9.1-cp39-cp39-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

esig-0.9.1-cp39-cp39-manylinux2010_x86_64.whl (25.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

esig-0.9.1-cp39-cp39-manylinux2010_i686.whl (21.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

esig-0.9.1-cp39-cp39-macosx_10_15_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

esig-0.9.1-cp38-cp38-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

esig-0.9.1-cp38-cp38-manylinux2010_x86_64.whl (25.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

esig-0.9.1-cp38-cp38-manylinux2010_i686.whl (21.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

esig-0.9.1-cp38-cp38-macosx_10_15_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

esig-0.9.1-cp37-cp37m-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.7m Windows x86-64

esig-0.9.1-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7m Windows x86

esig-0.9.1-cp37-cp37m-manylinux2010_x86_64.whl (25.1 MB view details)

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

esig-0.9.1-cp37-cp37m-manylinux2010_i686.whl (21.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

esig-0.9.1-cp37-cp37m-macosx_10_15_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

esig-0.9.1-cp36-cp36m-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

esig-0.9.1-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6m Windows x86

esig-0.9.1-cp36-cp36m-manylinux2010_x86_64.whl (25.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

esig-0.9.1-cp36-cp36m-manylinux2010_i686.whl (21.8 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

esig-0.9.1-cp36-cp36m-macosx_10_15_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

esig-0.9.1-cp35-cp35m-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.5m Windows x86-64

esig-0.9.1-cp35-cp35m-manylinux2010_x86_64.whl (25.1 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

esig-0.9.1-cp35-cp35m-manylinux2010_i686.whl (21.8 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

File details

Details for the file esig-0.9.1.tar.gz.

File metadata

  • Download URL: esig-0.9.1.tar.gz
  • Upload date:
  • Size: 83.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1.tar.gz
Algorithm Hash digest
SHA256 77a40c6dbf71e54c62e34e793b54d7ec41f6b114c7f78b3425314b5d90d088c9
MD5 95a11546f3633ab89409ae773e1cfb61
BLAKE2b-256 1325e4b5b51b6126584ae043c5937085953965b8f8566d626751fc7bb08f3b53

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: esig-0.9.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 98a3dcb94d4f2a6eabc103f2c956da58db9cf52eeb91f04e4e5d5308cd2d4f3a
MD5 53a4c6b6aebd0440bd329332b3e1d7f9
BLAKE2b-256 f6e59a6f838dfa4b368654796e303748a86501f38c90406e56bf8404be808078

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: esig-0.9.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 25.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ee0b0b4045b2bb3b9c5e91f82d3e5cb90685278f4c41b808e7397921d9a9dcbd
MD5 47d99a7063745186d541952a91698a04
BLAKE2b-256 2fa03710ff9c5c18a2ab3035b9ead0de7c2e26e3a594858af2f3e9090807a8a2

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: esig-0.9.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 21.8 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 07f0faa8e0695a1854c1e9b78f13a3cfbfef4651ba2bdbada83915c34b428c4c
MD5 68927a1243a0bd73d354a34b3d54eee5
BLAKE2b-256 23ac5e85a165a5e999710b1f385c36b6246d05738a569a649fb146d1481f85f3

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: esig-0.9.1-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cb665bd95f3148c844de168371fe013142dcb2b35678e57a367ac8912299c360
MD5 d236564efcb814a070b47f818545e2c5
BLAKE2b-256 c314c04a2c104b2327f43f66029de0cfdfe9dac98558b7558bd0aee15020f117

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: esig-0.9.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0e07417829c361b95c1abf3ae1ff1f4fcefb451d3328d99cf22986baf1e8e624
MD5 5f0c067968b84c12fab50043d9ba3118
BLAKE2b-256 bdc18810989b2d6e0ee7e0d347ea99502025a18aa0384c3b92d30981e504a589

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: esig-0.9.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 25.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a6bd03730d96d825458ea178ed18a5f3fdcb267a6124c2933c8e8ee030afe384
MD5 c9b7e9d9b24b116a62a71e279b9d8e77
BLAKE2b-256 9030b233df05536f089f9d4aa11b93cf5a2b43eb3dff20134a1c4ae973868ff4

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: esig-0.9.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 21.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5314fd26c033a721b7e7ac39538545f82276c15f2c5042953c77649daa12eaad
MD5 80401d631876dc97138b3b2b45155d30
BLAKE2b-256 857baaa13cd9ea29a0ec6c1877ad915cd69dca529d64325198d9ac66a4456a85

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: esig-0.9.1-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a8756677e6fa36c7c4965dae06ec47bf9f77b1cea86738bfce08f69aa60030ef
MD5 a9db56523cc989120bae0a78f78668f5
BLAKE2b-256 e144dc5a8af618793c2a09a0228a3c95a783a3b813c8ae67a45d02395ca3a216

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: esig-0.9.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 967aa04672fc4a28ccc6ff3738ce75629b7b54caf2e7416aedf67e58e18a37c2
MD5 0843b7687916bc90e75add73b323a4de
BLAKE2b-256 fe8b9bb389486e96a6a3999d7ff9a3085654ae4f937bd6ab0c3ab4827cf2c8b0

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: esig-0.9.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a4e9be1c71efcea5d12280b607f229bb40c47c2846512515114d12d049db37ec
MD5 05b7a9c89feae4e006bb066b1d6c866e
BLAKE2b-256 3505ee0f0b06b296050c1bdbc2c81daf97feffc33f4ceda35e81ec6c7c38ca5b

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: esig-0.9.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 25.1 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 021710a5a4325a0b7faf7597e72d2644af5901fbf7a918a6785dff9bff76dcea
MD5 4fa99fd72c8fea13ac634b777f580e0e
BLAKE2b-256 56ea26b9c45a69ee2fdc79d363b3131f69d48881690cdc242382484de7324a83

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: esig-0.9.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 21.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 57c46f8edb10c1728a1284d691ef6358cabdddfa29b6e14c8448c3516c15b834
MD5 431371dfb5b91adc22ea8ae3ec61e20a
BLAKE2b-256 22f77a6092f4509ddcd08ac69f96d143307a54d8ae1588705a9856b048db34f1

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: esig-0.9.1-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 65808974dc12d688e5a14674269804d53466bd4cc8027964adb03e6c22b069b1
MD5 c45bb436543e0cc38385fd84752a14d3
BLAKE2b-256 459a861e208b0863528e92874ed9587b986c6ad0231c88b3d7089e76d96471ae

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: esig-0.9.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 745bad82d5cd00b31c840195db2ea8f6a0575033e3733c0312ff9b618abddb3a
MD5 e2ca20ec0f11eb738062d2f8f4dc5176
BLAKE2b-256 c48d6864101313ea20e5b909e35667aad87c6e6f9bc2bb2ddb270cd098741189

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: esig-0.9.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4fe294ff6322572ce81f020b18c877b877e389a4b49cee3fe09797f8a56c84b4
MD5 6d6cf79ed04065025f16abf5e8255574
BLAKE2b-256 c21e26811b6f9acbe3588ae06b2112831e919f9f95a876a4dad3fae21f835f1e

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: esig-0.9.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 25.1 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 67781024a83070ef5d83175cc2528ed175964d3b400fd145cef12e35a6f1a3fc
MD5 c097a501b34237396b76fa77b31f58ad
BLAKE2b-256 cc966884d930b932b41c757aef970a747ec832ff6d19034d622c167330b7cebd

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: esig-0.9.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 21.8 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cf1dc15bca203ab16a35d631702057f4eb119fa74f2cd0d0ae49d7c9edfe1d1d
MD5 f852816e36155299b78095b66d5d3310
BLAKE2b-256 3645e7b1bb6a5c51b6b97a9b6adf8b9c6b4290161cd3aaeeda6ca3d29ce3bbd4

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: esig-0.9.1-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 092964e0c0e35df695a37c23d29fb8604330c3e4d0695d7ea1e39d33871fc67f
MD5 10916e198b809e07208f73973c555976
BLAKE2b-256 cdab3759433f2817bad37323d525d2ffd33d7f5883975be6076a4aa9096da5fd

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: esig-0.9.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 859c7c234d47f91510ed9a37d330716575b4a00bcc31a97eaa9cefded7caf4d2
MD5 76152488a0342d24498355008a57a112
BLAKE2b-256 dfc71b14b2011566f3c7711bd8d2b17c61bb4cc59860f17d84ed2c4dfeb8ca1e

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: esig-0.9.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 25.1 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4479729aad0e2603cf991555d6ce8e806b41bdc922985d1c1077e50a0d3e0d25
MD5 6c723daa651cd452e262b821c5d47f24
BLAKE2b-256 0ca19c56ec2955293a62a598eb521b79dce29f1932aaa7fd1fd6250e449ee268

See more details on using hashes here.

File details

Details for the file esig-0.9.1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: esig-0.9.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 21.8 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for esig-0.9.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 328be44f62b57b23e8e19e6db0c1595f84bae691ff7160870899f1b7a77630a2
MD5 275ab186f8a7f840095b5ec2295973e4
BLAKE2b-256 3e795ccb94209bc88abddc10dda5de65452ccb01f0878c9ce573dd81cac209a9

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