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

Language grade: Python Total alerts Codacy Badge codebeat badge

Citation

DOI

Module Contents

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

  • 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 (2.7, 3.5 - 3.7)

  • NumPy (1.13+)

  • SciPy (0.19+)

  • Pandas (0.21+)

  • statsmodels (0.8+)

  • matplotlib (2.0+)

Optional Requirements

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

  • IPython (5.0+) is required to run the notebooks

Installing

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

  • py.test (For tests)

  • sphinx (to build docs)

  • guzzle_sphinx_theme (to build docs)

  • ipython (to build docs)

  • numpydoc (to build docs)

Note: Setup does not verify requirements. Please ensure these are installed.

Linux/OSX

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

Anaconda

Anaconda builds are not currently available for OSX.

conda install arch -c bashtage

Windows

Building extension using the community edition of Visual Studio is well supported for Python 3.5+. Building extensions for 64-bit Windows for use in Python 2.7 is also supported using Microsoft Visual C++ Compiler for Python 2.7. 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.

With a compiler

If you are comfortable compiling binaries on Windows:

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

No Compiler

All binary code is backed by a pure Python implementation. Compiling can be skipped using the flag --no-binary

pip install git+https://github.com/bashtage/arch.git --install-option "--no-binary"

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

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.5.0.tar.gz (366.6 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.5.0-cp37-cp37m-win_amd64.whl (260.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

arch-4.5.0-cp37-cp37m-win32.whl (235.6 kB view details)

Uploaded CPython 3.7mWindows x86

arch-4.5.0-cp37-cp37m-manylinux1_x86_64.whl (524.5 kB view details)

Uploaded CPython 3.7m

arch-4.5.0-cp37-cp37m-manylinux1_i686.whl (504.9 kB view details)

Uploaded CPython 3.7m

arch-4.5.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 (508.5 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.5.0-cp36-cp36m-win_amd64.whl (261.0 kB view details)

Uploaded CPython 3.6mWindows x86-64

arch-4.5.0-cp36-cp36m-win32.whl (235.8 kB view details)

Uploaded CPython 3.6mWindows x86

arch-4.5.0-cp36-cp36m-manylinux1_x86_64.whl (524.7 kB view details)

Uploaded CPython 3.6m

arch-4.5.0-cp36-cp36m-manylinux1_i686.whl (505.5 kB view details)

Uploaded CPython 3.6m

arch-4.5.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 (508.3 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.5.0-cp35-cp35m-win_amd64.whl (260.2 kB view details)

Uploaded CPython 3.5mWindows x86-64

arch-4.5.0-cp35-cp35m-win32.whl (235.1 kB view details)

Uploaded CPython 3.5mWindows x86

arch-4.5.0-cp35-cp35m-manylinux1_x86_64.whl (523.3 kB view details)

Uploaded CPython 3.5m

arch-4.5.0-cp35-cp35m-manylinux1_i686.whl (504.3 kB view details)

Uploaded CPython 3.5m

arch-4.5.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 (506.5 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.5.0-cp27-cp27mu-manylinux1_x86_64.whl (534.1 kB view details)

Uploaded CPython 2.7mu

arch-4.5.0-cp27-cp27mu-manylinux1_i686.whl (513.7 kB view details)

Uploaded CPython 2.7mu

arch-4.5.0-cp27-cp27m-win_amd64.whl (269.9 kB view details)

Uploaded CPython 2.7mWindows x86-64

arch-4.5.0-cp27-cp27m-win32.whl (245.0 kB view details)

Uploaded CPython 2.7mWindows x86

arch-4.5.0-cp27-cp27m-manylinux1_x86_64.whl (534.1 kB view details)

Uploaded CPython 2.7m

arch-4.5.0-cp27-cp27m-manylinux1_i686.whl (513.5 kB view details)

Uploaded CPython 2.7m

arch-4.5.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 (521.9 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.5.0.tar.gz.

File metadata

  • Download URL: arch-4.5.0.tar.gz
  • Upload date:
  • Size: 366.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.6

File hashes

Hashes for arch-4.5.0.tar.gz
Algorithm Hash digest
SHA256 022a01cea492ffde934e23ed6d2bc7f9723df57c406f5739f41c672a91c8dea1
MD5 68e590a8c2d9a9318963541883f62407
BLAKE2b-256 80694cab7d2d07e3d592346bcc94023cfc5eb64f93f3aafe906613057ba0a369

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 260.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0

File hashes

Hashes for arch-4.5.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 580156b47a2699d1adf7c2e871d1ae92f0d37f317bd56229e47eec5a0b6e139d
MD5 22ecfe12b460a85838f68aa103cfb207
BLAKE2b-256 277db10f2a0be0a0260d5bd8df6b05b023f5fc5e4d4c4305c281b3acf06931a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 235.6 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0

File hashes

Hashes for arch-4.5.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7f87880c1ad41e2d84db451ca44070e70b70ab2b0ae3d89ac28d70eaae0ae87f
MD5 fa7f13475b68f820e11f67511eb280ae
BLAKE2b-256 1bf664280f414d873ee907f56e9ee7726ebbd5ae4fbaaf73fa1f7361ba1e3613

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 524.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.3

File hashes

Hashes for arch-4.5.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 928fa251571a6c056323b8b8c80d4f0e31ee3c7514a8db9180f19d42b6771a7e
MD5 0f8367071336ff37230035129e0936e4
BLAKE2b-256 38abd8a4b13930ea5975fdd8bdfb0886b81c77cbc482deba368ed77c019f7cd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 504.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.3

File hashes

Hashes for arch-4.5.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3dc005a94fcb5f961d052d6a310dee1d7900d962ab5052913e40b2d0636e0c24
MD5 517582fbbc02b79b33563a325e0c3761
BLAKE2b-256 4568202c6fc08b24bb8a15bc80406f658f0005af01306bdf3605eb9dd6d703c5

See more details on using hashes here.

File details

Details for the file arch-4.5.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.5.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 0d3963983f1dbb02d71e4bc1e1aaba8ad4e67ad1493b2c5b717f6880f80730a6
MD5 6cecb748a29628177dc73b187034c126
BLAKE2b-256 98b7fd91859b000ff401c503fb4f7d672b6aecb2a88d8951bc75b5486c17e750

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 261.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.6

File hashes

Hashes for arch-4.5.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6eb31f2e97c8caeafe6e75695ed6230e069632916d779ce0324f6ee2d04691ad
MD5 c3b852c38c9cb9859ca1efed5fb0da83
BLAKE2b-256 954dbce94c208673c28cd7fecf7d58a4cecb3180e702e9e6544b99f2a02d45b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 235.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.6

File hashes

Hashes for arch-4.5.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 40ac9939ccf6def5fc4cf7880543a3a2a9400251a9fade1e614a1eba5dc6a622
MD5 c0abd64f9bd76891ff3e77d170f83bef
BLAKE2b-256 b938268bc51ce4e0c610bef1a67578ea70f37a08c2958f6363a77b4e134c8d69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 524.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.3

File hashes

Hashes for arch-4.5.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cba2256c9d538fc7e89ae193c47e74d8aa703ac5b0eae995a7ad7fe9b435ab19
MD5 ee03a7e387ccb620346d78d5c56a3c3d
BLAKE2b-256 170ac5fbe20303398d77a375716077b1eebaabd717ede7713a414fa38840dcdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 505.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.3

File hashes

Hashes for arch-4.5.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 db2d5488547d1f88ca5227ab61ebce78d9c22e6ab3ffe080e42fc71a84ee3b55
MD5 a114ac2b25757776336684e67b3c06ec
BLAKE2b-256 6a8632a8efbdf6e33d534b1e754463e74c7d02711d982df551ae4ebbed00c3a8

See more details on using hashes here.

File details

Details for the file arch-4.5.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.5.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 3e3af660517e32ac0d0e32fe226147141e44c9a139b28c27fc38f06fa9c60664
MD5 da08d46b974a08395525bc645bc85895
BLAKE2b-256 7ac829a1604cee172cdb7e8c7f4bf768cd2df08b47491412e3bda7f78044d40d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 260.2 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.5.6

File hashes

Hashes for arch-4.5.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 1bc7bd91240808101e3dc6bf97e093952811cf554776731740f6ae3e191fcb5d
MD5 50f3b6fab963e046a2f163d257d5a157
BLAKE2b-256 0b6d2e5227d3710b78b036b0802eb1fe101abd9641a08ff20279a0018dbdaa52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 235.1 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.5.6

File hashes

Hashes for arch-4.5.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 2423031a7f110ff3f9349ddd06ceaa430d9357d6d659548960d73b46cc579584
MD5 d50e1c5a4c2e95d353180ed4469014c3
BLAKE2b-256 a4e5fde502ddab4bc95d2ba927269e57793ebf3d40881eedebe75defd5684ae5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 523.3 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.3

File hashes

Hashes for arch-4.5.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2f3e6911338762242e494d9950b88ea6d2b11f048d212577ca701c1c64c799c9
MD5 e02cab44c04a8cd897f944cdf6cba9cc
BLAKE2b-256 9c7c4ca01ac1569f3b7b9438175d2530bdb95355c697df15a102b3a16d9fcdd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 504.3 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.3

File hashes

Hashes for arch-4.5.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 65f8ccf4066c016ff0d517631951013241adb19c1cf61dcc1917cc99ace32046
MD5 a0ca4bf91465ab9c50fe9df53fb5c2c1
BLAKE2b-256 d4422a6275e7d6f3949491188673618d6a715c90cf617bbae29160fb62521d2f

See more details on using hashes here.

File details

Details for the file arch-4.5.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.5.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 97a5f55a4b2c604a2d13516182c25d0d60d62a99ac82e548dc8d43d8d0ec1302
MD5 30d5f4d7b55c1b74576e61d9ef6742d2
BLAKE2b-256 87a48e872636d512b53cf564cd3eb128504e059ba5a6b62a8d3aecb6eb6f13c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 534.1 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.3

File hashes

Hashes for arch-4.5.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e014c13be13449465c2b37aeb332621d9dd28e7cdf6bf5579480bc4283270782
MD5 e126d438e0d21ec56748f8ec21539a8e
BLAKE2b-256 46ef21cbb5a16c04ff2ba1655e55908146c3025fe49b4c8ebcd826a09551c511

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 513.7 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.3

File hashes

Hashes for arch-4.5.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 65133f83f2334d7d40a72780300ec769baee593d4fea7e95c469a0578be65b60
MD5 ca48b78cff74d332b20e2d3d82e5883f
BLAKE2b-256 aff499ec4f9153273e2e552a64051348e36de791a82f112f635904a9f80b4dbf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 269.9 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.15

File hashes

Hashes for arch-4.5.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 9902fcd0be2e2a84c4714be248f2dce271ccb916fd50861d188410c51fce7cdc
MD5 59cbe49f5f3691839789c7410a7d81f7
BLAKE2b-256 3cadc671f833cc6faf4671468daeedf82ecd94c1d7580078958bf5af36ceb8a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 245.0 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.15

File hashes

Hashes for arch-4.5.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 999ff525ab6ca426dc3295e69fae45bb2247093ef961e70c451c62ab9e4ae93b
MD5 ee9edaff3aa01e82fb3c6a96a0959ab7
BLAKE2b-256 74296bb51c3f06cc7a79938e2273ec3c5804f301cd38068c582df0bd3c8ba052

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 534.1 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.3

File hashes

Hashes for arch-4.5.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e21715bc2915141a59ed35d6edf53f32a369be68f526f7fb3e7683486b807fe3
MD5 99dc47a1c230a0dde7ad577d1b09c37c
BLAKE2b-256 386908c0046e3fe74dc8c8248560a9d4ac31fa15c8ae9890937ed92c06a3f3c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.5.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 513.5 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.3

File hashes

Hashes for arch-4.5.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a1cf9d5976a05982f0abaa6e3d850b549a9c8c80dfabf2da75a6dfd178b8c05
MD5 d22d52d26457ff62a121bbca20ebae49
BLAKE2b-256 781a09a6edddcc27676ac3f58205ce73c3f319b851a5b032496bc01623666665

See more details on using hashes here.

File details

Details for the file arch-4.5.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.5.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 5bd3715a79fd85ecfab8e90daf2838418550f826775a1a2c1cbefa4560bd7c67
MD5 a6709deac86b046128ad9185b4b8f39e
BLAKE2b-256 e0f6847ebe16eb27d19309d98244e0c7a9243b2ed9e1c40b2157af9dadbc6271

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