Skip to main content

ARCH for Python

Project description

Autoregressive Conditional Heteroskedasticity (ARCH) and other tools for financial econometrics, written in Python (with Cython and/or Numba used to improve performance)

Continuous Integration

Travis Build Status Appveyor Build Status

Documentation

Documentation Status

Coverage

Coverage Status codecov

Code Inspections

Code Quality: Python Total Alerts Codacy Badge codebeat badge

Citation

DOI

Module Contents

Python 2.7 Support

Version 4.8 is the final version that officially supports or is tested on Python 2.7, and is the final version that has Python 2.7 wheels. It is time to move to Python 3.5+, and to enjoy the substantial improvement available in recent Python releases.

Documentation

Released documentation is hosted on read the docs. Current documentation from the master branch is hosted on my github pages.

More about ARCH

More information about ARCH and related models is available in the notes and research available at Kevin Sheppard’s site.

Contributing

Contributions are welcome. There are opportunities at many levels to contribute:

  • Implement new volatility process, e.g., FIGARCH

  • Improve docstrings where unclear or with typos

  • Provide examples, preferably in the form of IPython notebooks

Examples

Volatility Modeling

  • Mean models

    • Constant mean

    • Heterogeneous Autoregression (HAR)

    • Autoregression (AR)

    • Zero mean

    • Models with and without exogenous regressors

  • Volatility models

    • ARCH

    • GARCH

    • TARCH

    • EGARCH

    • EWMA/RiskMetrics

  • Distributions

    • Normal

    • Student’s T

    • Generalized Error Distribution

See the univariate volatility example notebook for a more complete overview.

import datetime as dt
import pandas.io.data as web
st = dt.datetime(1990,1,1)
en = dt.datetime(2014,1,1)
data = web.get_data_yahoo('^FTSE', start=st, end=en)
returns = 100 * data['Adj Close'].pct_change().dropna()

from arch import arch_model
am = arch_model(returns)
res = am.fit()

Unit Root Tests

  • Augmented Dickey-Fuller

  • Dickey-Fuller GLS

  • Phillips-Perron

  • KPSS

  • Zivot-Andrews

  • Variance Ratio tests

See the unit root testing example notebook for examples of testing series for unit roots.

Bootstrap

  • Bootstraps

    • IID Bootstrap

    • Stationary Bootstrap

    • Circular Block Bootstrap

    • Moving Block Bootstrap

  • Methods

    • Confidence interval construction

    • Covariance estimation

    • Apply method to estimate model across bootstraps

    • Generic Bootstrap iterator

See the bootstrap example notebook for examples of bootstrapping the Sharpe ratio and a Probit model from Statsmodels.

# Import data
import datetime as dt
import pandas as pd
import pandas.io.data as web
start = dt.datetime(1951,1,1)
end = dt.datetime(2014,1,1)
sp500 = web.get_data_yahoo('^GSPC', start=start, end=end)
start = sp500.index.min()
end = sp500.index.max()
monthly_dates = pd.date_range(start, end, freq='M')
monthly = sp500.reindex(monthly_dates, method='ffill')
returns = 100 * monthly['Adj Close'].pct_change().dropna()

# Function to compute parameters
def sharpe_ratio(x):
    mu, sigma = 12 * x.mean(), np.sqrt(12 * x.var())
    return np.array([mu, sigma, mu / sigma])

# Bootstrap confidence intervals
from arch.bootstrap import IIDBootstrap
bs = IIDBootstrap(returns)
ci = bs.conf_int(sharpe_ratio, 1000, method='percentile')

Multiple Comparison Procedures

  • Test of Superior Predictive Ability (SPA), also known as the Reality Check or Bootstrap Data Snooper

  • Stepwise (StepM)

  • Model Confidence Set (MCS)

See the multiple comparison example notebook for examples of the multiple comparison procedures.

Requirements

These requirements reflect the testing environment. It is possible that arch will work with older versions.

  • Python (3.5+)

  • NumPy (1.13+)

  • SciPy (0.19+)

  • Pandas (0.21+)

  • statsmodels (0.8+)

  • matplotlib (2.0+), optional

  • cached-property (1.5.1+), optional

Optional Requirements

  • Numba (0.35+) will be used if available and when installed using the –no-binary option

  • jupyter and notebook are required to run the notebooks

Installing

Standard installation with a compiler requires Cython. If you do not have a compiler installed, the arch should still install. You will see a warning but this can be ignored. If you don’t have a compiler, numba is strongly recommended.

pip

Releases are available PyPI and can be installed with pip.

pip install arch

This command should work whether you have a compiler installed or not. If you want to install with the --no-binary options, use

pip install arch --install-option="--no-binary"

You can alternatively install the latest version from GitHub

pip install git+https://github.com/bashtage/arch.git

--install-option="--no-binary" can be used to disable compilation of the extensions.

Anaconda

conda users can install from my channel,

conda install arch -c bashtage

Windows

Building extension using the community edition of Visual Studio is well supported for Python 3.5+. Building on other combinations of Python/Windows is more difficult and is not necessary when Numba is installed since just-in-time compiled code (Numba) runs as fast as ahead-of-time compiled extensions.

Developing

The development requirements are:

  • Cython (0.24+, if not using –no-binary)

  • py.test (For tests)

  • sphinx (to build docs)

  • guzzle_sphinx_theme (to build docs)

  • jupyter, notebook and nbsphinx (to build docs)

Installation Notes:

  1. If Cython is not installed, the package will be installed as-if --no-binary was used.

  2. Setup does not verify these requirements. Please ensure these are installed.

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

arch-4.8.0.tar.gz (784.3 kB view details)

Uploaded Source

Built Distributions

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

arch-4.8.0-cp37-cp37m-win_amd64.whl (675.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

arch-4.8.0-cp37-cp37m-win32.whl (647.7 kB view details)

Uploaded CPython 3.7mWindows x86

arch-4.8.0-cp37-cp37m-manylinux1_x86_64.whl (703.7 kB view details)

Uploaded CPython 3.7m

arch-4.8.0-cp37-cp37m-manylinux1_i686.whl (681.5 kB view details)

Uploaded CPython 3.7m

arch-4.8.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (688.8 kB view details)

Uploaded CPython 3.7mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

arch-4.8.0-cp36-cp36m-win_amd64.whl (675.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

arch-4.8.0-cp36-cp36m-win32.whl (647.7 kB view details)

Uploaded CPython 3.6mWindows x86

arch-4.8.0-cp36-cp36m-manylinux1_x86_64.whl (703.5 kB view details)

Uploaded CPython 3.6m

arch-4.8.0-cp36-cp36m-manylinux1_i686.whl (681.3 kB view details)

Uploaded CPython 3.6m

arch-4.8.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (688.5 kB view details)

Uploaded CPython 3.6mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

arch-4.8.0-cp35-cp35m-win_amd64.whl (679.1 kB view details)

Uploaded CPython 3.5mWindows x86-64

arch-4.8.0-cp35-cp35m-win32.whl (652.2 kB view details)

Uploaded CPython 3.5mWindows x86

arch-4.8.0-cp35-cp35m-manylinux1_x86_64.whl (701.9 kB view details)

Uploaded CPython 3.5m

arch-4.8.0-cp35-cp35m-manylinux1_i686.whl (680.1 kB view details)

Uploaded CPython 3.5m

arch-4.8.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (685.1 kB view details)

Uploaded CPython 3.5mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

arch-4.8.0-cp27-cp27mu-manylinux1_x86_64.whl (712.0 kB view details)

Uploaded CPython 2.7mu

arch-4.8.0-cp27-cp27mu-manylinux1_i686.whl (689.3 kB view details)

Uploaded CPython 2.7mu

arch-4.8.0-cp27-cp27m-win_amd64.whl (684.1 kB view details)

Uploaded CPython 2.7mWindows x86-64

arch-4.8.0-cp27-cp27m-win32.whl (655.6 kB view details)

Uploaded CPython 2.7mWindows x86

arch-4.8.0-cp27-cp27m-manylinux1_x86_64.whl (711.9 kB view details)

Uploaded CPython 2.7m

arch-4.8.0-cp27-cp27m-manylinux1_i686.whl (689.2 kB view details)

Uploaded CPython 2.7m

arch-4.8.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (699.5 kB view details)

Uploaded CPython 2.7mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

File details

Details for the file arch-4.8.0.tar.gz.

File metadata

  • Download URL: arch-4.8.0.tar.gz
  • Upload date:
  • Size: 784.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for arch-4.8.0.tar.gz
Algorithm Hash digest
SHA256 fec0f68c38f5b6dbc1493c1eac85fe4aa3e3645d970b42190521a9f358ab0581
MD5 6d249402a3ed38d404faef9855ecf0ba
BLAKE2b-256 60f28eef17a1966b000ec9cc79e3e163ca63a2745c262f2b4a262e45009ddf74

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: arch-4.8.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 675.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for arch-4.8.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 843a0443f83c41a00992b7bd445d737c912f347792c749e77e268cef1e1ab777
MD5 66c83d3da5ebddb528ecc385ee95d876
BLAKE2b-256 ae184395617d27eb9a8c8eb6b5e7a7e260c1bd87609d40a285fcadebe96049e5

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: arch-4.8.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 647.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for arch-4.8.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7a67d6706969cef07932ef4d85be6899d4dba33894e1c19955d3707dd96e1632
MD5 80c24734e59775aeed649d5e74b011c0
BLAKE2b-256 c10fcf9d90f6c977580d192d6ee9db399d92ad5211642d54e859b5d1b348903c

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: arch-4.8.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 703.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.3

File hashes

Hashes for arch-4.8.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0230da303e6397215ea546ca05449ae7102a26e843e87c2dd7e2a2adf6d33ace
MD5 83ee1fb43aff2572e653a1d09c532df5
BLAKE2b-256 7b945bee4fbbcd4fcd4f412f4d8a819aed1f6e9e6dc4adb1f98fa616b9e981d3

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: arch-4.8.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 681.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.3

File hashes

Hashes for arch-4.8.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 51f9990fb1058d9322982f4a78f7bbc7807e77632b987b408de363420893edcc
MD5 4b736f5b0eda39cde0f0edc927dd370e
BLAKE2b-256 781eca0729908c82d690121051b2bbb08ebb8f9de1d81425e38d61934ad9794d

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for arch-4.8.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 203ca3608a46da342eb27e762b899637310ca28467c1dc0c525ffa21be319922
MD5 7ef7d53cc95c514f7741a6662d2ca080
BLAKE2b-256 6c7dc0033c5ebb96d3fb0c6525e03f70a62d3d32e36751caf24d5970be1c5130

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: arch-4.8.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 675.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.8

File hashes

Hashes for arch-4.8.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d61ae03de31fc427c38bb10cb885bfe735d63bc725e5743588963419f21349dc
MD5 3d820d9df9aac788cb4ca5f1baa9e7cf
BLAKE2b-256 474c1e9acf58824b95de3919add86c4d4f886631f8f7108e06203fe5e95e1ac0

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: arch-4.8.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 647.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.8

File hashes

Hashes for arch-4.8.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 064673a236d9d6db4b6e6e86938d677ad4d9e4891c67c6bb53eabf013fb5c0ea
MD5 37cc862577f7e99bd0cae1bd7ee0b6bf
BLAKE2b-256 91dfdf7f81e3ec5216e4d086be4f59882b088ca4ef943869f491d2aadfbe42b7

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: arch-4.8.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 703.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.3

File hashes

Hashes for arch-4.8.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0d0e309205dd7119763d0b2da45c09c326d30c34e1cae68e0d31be149760ec9a
MD5 596416472561a273044aed42f5e49dd1
BLAKE2b-256 51108b19ca76cc5e61b89ea4377e0183c2b57012af175b77268d6ed42edd2a07

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: arch-4.8.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 681.3 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.3

File hashes

Hashes for arch-4.8.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8957e85f8fb89c5b2839d1f8015ea68a9da34e80e5f1c1ee0391dad851af5733
MD5 f016b6e9c1df749b1d8d0bbc1916e3e1
BLAKE2b-256 d291bff19764638dae3e49c1ea695a0917c70501f6300bac79d0d89aaf65aa87

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for arch-4.8.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 223b374a731e6b7408a739be95e00c203983a4912a8079d10b828e6ae42f5b1b
MD5 87109ae13dee419406d4ad0c4bdb2acb
BLAKE2b-256 a2dbb3b15e8ee781a32f39a1f8ec31f904a183cf74fb621b603431fbdb67738c

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: arch-4.8.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 679.1 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.2.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.5.6

File hashes

Hashes for arch-4.8.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 b12bf18b228aae40fcb7179658bf831db0758a618c750d620b3da41df3d622df
MD5 dac856578470e7e805332d06809a40b1
BLAKE2b-256 97c924afde87bf6e0ae57823de096b54b108f96ec8e6cd841017338750df836f

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: arch-4.8.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 652.2 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.2.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.5.6

File hashes

Hashes for arch-4.8.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 5435cd82a801c603b7003ce77be1c65601c94757cc82fd5b13ed14551b9d21c2
MD5 1ab741775dc81680dad0cbacd7548519
BLAKE2b-256 a67516e71ad67d5ea3d70590fd88d63b5b26eaa7863ffdc462c0f8d44fcb33d7

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: arch-4.8.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 701.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.3

File hashes

Hashes for arch-4.8.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 56f37e508bc3c96c74cab9abdff65cf63fcac6f650052d6d54f914a1f22eaaa8
MD5 719b5acd3b9a62d4230a56b3bab65c22
BLAKE2b-256 10fd2439c0c5b3be65bdef4644d7d8403c3fc8348f4507b4988f07e96ac9a7f0

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: arch-4.8.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 680.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.3

File hashes

Hashes for arch-4.8.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1f55ceaabaca3fa0db77753b65afd16e5bffd70d6ec6310ffc2f4c019f09286e
MD5 7e55665619cf3ce92a89c853d2bf7f3f
BLAKE2b-256 92b8d099eebfcae0bfa4bff6279de69d3f88315b0f270c4db0549b25ee5c6038

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for arch-4.8.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 91a56e9ebc43deecfeaeeebdcc3ecf7524380e1ec18595bbda40de84d57addc5
MD5 cad8b69b5af64eeed4c5aba39fd8ba9b
BLAKE2b-256 f56ba8c47f9bf1a2ce30b01471f49925605beeff9e696ac5009b2e2b798cf4c2

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: arch-4.8.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 712.0 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.3

File hashes

Hashes for arch-4.8.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0409f49798bc527c49e90b4455b8299804c22ea9a859bf5779c7ea7d27c19095
MD5 8a839e808e0e96eac111899aabd9b369
BLAKE2b-256 4520f11df485fafee4fc9036060e94304146fb16306020b9466ca8f6299b85a6

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: arch-4.8.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 689.3 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.3

File hashes

Hashes for arch-4.8.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7966ae236f6c150622e3412b0b3b2dede0216d1d0040c0a94be6e191319efd38
MD5 3f5a29942838dac9b7916da138dd8ada
BLAKE2b-256 533867161b8d1cce36f31e29365017ae96723583707b7876c05db1279c7e608e

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: arch-4.8.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 684.1 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.16

File hashes

Hashes for arch-4.8.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 b9a1717b2e25b3c1ba3b0765bec8a63fe4284fd7bb3039728c069be8f3647247
MD5 af5e769bb3a85f19c1a3cf2b53ffcbe7
BLAKE2b-256 17c891d962366c06751bc3f102f6ac1499c518a3932612662344644c5ad1e79b

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: arch-4.8.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 655.6 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.16

File hashes

Hashes for arch-4.8.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 07421ba37de7873faf1fc424df62123b45b0e028f1df303243d84a1105cd4031
MD5 74943963fa15288eece15a3ad532aa22
BLAKE2b-256 0216a6c912099ba9f851479c5886c1bc476c95f33b10a854f24d6a6b862c1dac

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: arch-4.8.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 711.9 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.3

File hashes

Hashes for arch-4.8.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 679a464bec669c78558770c42578403410e72481f48fbf1dbdb52a23cbf3c1c4
MD5 3270c63db120f4a5bbf14e767ad65158
BLAKE2b-256 1c61a942d24f635eb58af6dd244244aeb3da5be5315de731e6032d44e3b8c61a

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: arch-4.8.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 689.2 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.3

File hashes

Hashes for arch-4.8.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6701e4b63090ad8856f8dcdb7bc9c31025995339c60bf70328e9b5377cb8d64c
MD5 9f90f6ad7dc08c16eaa88257b8abef38
BLAKE2b-256 81dca42a8653ac1dd237c3e75d47fad7bd4269f21bc10d5167bb962c8fc39f6c

See more details on using hashes here.

File details

Details for the file arch-4.8.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for arch-4.8.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 03587814338c813932823f18d55b6a64d53ef5c54f70229831a9e4c6d2cf313f
MD5 467d83923bd26fc3e4e179f764168833
BLAKE2b-256 5d5ce46731ce0cf6a27d19ad4dd1a0d5b9dc9a95c5acc8f398ea9ed67febccf9

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