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.1.tar.gz (784.4 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.1-cp37-cp37m-win_amd64.whl (676.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

arch-4.8.1-cp37-cp37m-win32.whl (647.9 kB view details)

Uploaded CPython 3.7mWindows x86

arch-4.8.1-cp37-cp37m-manylinux1_x86_64.whl (704.0 kB view details)

Uploaded CPython 3.7m

arch-4.8.1-cp37-cp37m-manylinux1_i686.whl (681.7 kB view details)

Uploaded CPython 3.7m

arch-4.8.1-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 (689.0 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.1-cp36-cp36m-win_amd64.whl (676.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

arch-4.8.1-cp36-cp36m-win32.whl (647.9 kB view details)

Uploaded CPython 3.6mWindows x86

arch-4.8.1-cp36-cp36m-manylinux1_x86_64.whl (703.7 kB view details)

Uploaded CPython 3.6m

arch-4.8.1-cp36-cp36m-manylinux1_i686.whl (681.5 kB view details)

Uploaded CPython 3.6m

arch-4.8.1-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.7 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.1-cp35-cp35m-win_amd64.whl (674.9 kB view details)

Uploaded CPython 3.5mWindows x86-64

arch-4.8.1-cp35-cp35m-win32.whl (648.0 kB view details)

Uploaded CPython 3.5mWindows x86

arch-4.8.1-cp35-cp35m-manylinux1_x86_64.whl (702.1 kB view details)

Uploaded CPython 3.5m

arch-4.8.1-cp35-cp35m-manylinux1_i686.whl (680.3 kB view details)

Uploaded CPython 3.5m

arch-4.8.1-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.4 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.1-cp27-cp27mu-manylinux1_x86_64.whl (712.2 kB view details)

Uploaded CPython 2.7mu

arch-4.8.1-cp27-cp27mu-manylinux1_i686.whl (689.6 kB view details)

Uploaded CPython 2.7mu

arch-4.8.1-cp27-cp27m-win_amd64.whl (684.3 kB view details)

Uploaded CPython 2.7mWindows x86-64

arch-4.8.1-cp27-cp27m-win32.whl (655.9 kB view details)

Uploaded CPython 2.7mWindows x86

arch-4.8.1-cp27-cp27m-manylinux1_x86_64.whl (712.1 kB view details)

Uploaded CPython 2.7m

arch-4.8.1-cp27-cp27m-manylinux1_i686.whl (689.4 kB view details)

Uploaded CPython 2.7m

arch-4.8.1-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.8 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.1.tar.gz.

File metadata

  • Download URL: arch-4.8.1.tar.gz
  • Upload date:
  • Size: 784.4 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.1.tar.gz
Algorithm Hash digest
SHA256 d56fe5341f3a3294477f677e16000d2e283fd110fb1f1d3d4c27046b1f988797
MD5 576415fe562b8e87aacdcb9e47553299
BLAKE2b-256 fd86069aed4bb08a72dfa305888d37cb0db299409bb620fe5c50826b52009b45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 676.0 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.3

File hashes

Hashes for arch-4.8.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c93849da5cdfbe5e1906b4ff5283820c28f5f3c15bbeb63e5a8538d68ef3c7c5
MD5 70cc97554fede9202e201bb88b3a59b7
BLAKE2b-256 4c54b34248805927fa0cf9b21d92d34bc3090d25067fad3c537e184f34892f5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 647.9 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.3

File hashes

Hashes for arch-4.8.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0cf13caae533eb632ba7e619ca8b74529c893d4ecd1cfe471edde785873b52d2
MD5 ff4bc2690e3ea6c0265a0c9cd62206ea
BLAKE2b-256 65a702498963482f456b199e34f8f48886f785e912be72dd310fc0824148b57c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 704.0 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.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 55b5271efeacc3f50f5b437a9ba9fd729dcd2ec4fca6db1e827c9e7828b6f304
MD5 8957d555847b7bf74cc250c1819735ad
BLAKE2b-256 69bd5d6ddd2d1511eca87d30690402e9243d354d3f93aa90a163ca201e8512c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 681.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.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 65994fb48ed1c4b73cb6e15b9c101276dea0dcc201627063b5945079fea3034e
MD5 86654a28174f56909b33443787bbb882
BLAKE2b-256 a2908db5f0e5fa86442270a81795be9d6ac335e689889fd839621eb32b3385eb

See more details on using hashes here.

File details

Details for the file arch-4.8.1-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.1-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 c399abaa71d7d26fb7d9caa77ef8335deed4c10e5ca4fe048e2c74f161422a83
MD5 74550d73c8544b5895581675cd49fbca
BLAKE2b-256 5e205571890f53e8486f4b9fd3bff20518e0d42064ae5f5f61a293b3d158cd13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 676.1 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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bc03d3ca86343724f4883ab5ada118abc3f760c595ee8531aedc5eeff09199b9
MD5 de704ba0b452454b6510720c48d26941
BLAKE2b-256 417b37b32a2dcb64c96e90a767c66f0e6957ddd8d3a71838d889b5570cbdaddb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 647.9 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.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 9a46687f3122b3d47f5fc2861f6541f08c6292763928e3866a39a17ae6a20c18
MD5 49870b8481c27024abe1f14cfaf9d688
BLAKE2b-256 5ccff98943e3d802a7dbac47eee979f315671ba7e75cfc7ab4e751fa774d1a33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 703.7 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.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6cc816abb8aa0fe0081c106d69a30b7c6dc982f206169de3e10b4a05f457e04a
MD5 dde016f6781b8e2add4a9390e165c405
BLAKE2b-256 a230a56017246790c01d6091baf1c7a419e546a7275318793f3deb2574bf4714

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 681.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.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 194f02a85b8b9a8820471d3b7d949191e5f2f435b9086871029efa7ee25ff6b7
MD5 f07739af7982b6b9f8a4cdffa896cc30
BLAKE2b-256 6b6e0b2d70e8ec0b2e698c6f2cf8ec07832220431b1c9f5bca9074bcd9ffcad1

See more details on using hashes here.

File details

Details for the file arch-4.8.1-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.1-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 239ef5868619ee0be46ad2dbed5c0f67d8c0b72df077e0dac1ee7c6ef892c2f7
MD5 fdb8851e9940d89a77753fb3d0ef9ded
BLAKE2b-256 8bbb2158373fd35f29cd56045266083102123df490c1535a6d3adde97a00b64c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 674.9 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.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5c0839d8b5ad7ad3261b065428cc617a59524cb8885c63fac9ece808236bfc07
MD5 0809b7223670d40d38e4a9aa47530a24
BLAKE2b-256 bee79bf8c9c761af9f4dda0689902cfba3227380ba0765d3be7899e30fce4775

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 648.0 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.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 89ebd64c55de41ad3d95de85138efb626b5c162dbf706b67504db7ff6bfd6846
MD5 fc33b4cab855765eb349288fe3c4bd9b
BLAKE2b-256 7b5012ab600add1530118041524507505beef4953dd560366a9e77e18ae108e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 702.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.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 41b109577cfd35979596d097c36d2f2237350f977853d5d03ccb8131b5d8a0be
MD5 7e00892b99ccb77511c18e93626f9932
BLAKE2b-256 d01aa84d172dbd8bb3c1795eb58fa56d65d728ad1bacef3cab3c14f3bd1fda29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 680.3 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.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 86e76fcdd84e261817f52e1c257582e29c5820fcce610b10318a338d204edcb0
MD5 625646bfdd68023284c003b7131c046b
BLAKE2b-256 dd3e193fa5ad9c72b13f89dc9cb0650bf02a9274c8049ad1b8d83186b3d33405

See more details on using hashes here.

File details

Details for the file arch-4.8.1-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.1-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 6feaf909766b95560296da02fef8f30b0c41914ec6586e095a4c4726a04995bd
MD5 e6039da649bdfc9790ba756ba28045c7
BLAKE2b-256 37a1f00c07c2cb74babb6a143658dcb4a1fb75363be83f5a32239f529e184d12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 712.2 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.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f887d9703784f1f59e141ed7c3530975673086a63af5f80c3758a057083b4a4c
MD5 575b82addaacf2e4321ed3afb3e29615
BLAKE2b-256 052498c80c9565a4e9f424cb857a34faafa8926cc079d555bdaad12efec1c490

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 689.6 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.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 52bcc16714f2a2bed78b26f42ebf9cce67b5e3bf05a9da6a142ea9a8f5565e2f
MD5 62b7ae7bcfd0aeecc96dc6bbb8e3f2e8
BLAKE2b-256 1920d4df93911be32ad662b05c59ae9257a423629d1dd3ec50487f75b71c640d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 684.3 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.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 6a405f2767ae7a422a1ee33af235b77ddec834b99eba9272293e76a0df230ebd
MD5 3342858342c0b6b8fcbee52cba9cfe63
BLAKE2b-256 462c3946cd36005a795cb09a894782edad6523a134906f6500190974e68ae061

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 655.9 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.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 08c8ef9a8c55f265dbef95719fbb748fb8bf70117a885e71be4edd2595b6f1ff
MD5 24e86e1e8c90e2c0ef4b35350de0fa03
BLAKE2b-256 5c8b57758674e66797b18b3f4c7da53c1cf5889654af7b9d76631ead5edbd6bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 712.1 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.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 daf1d1b32bb66280474b8a98ae5c1277dd6827b6a473ac3475c246d3431f181c
MD5 410b3cfb0c59a631d399ed370591f054
BLAKE2b-256 2e42b79467b3171acb9e0764422fd4a07becf0816abf28c5c09eb3d68245f47d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-4.8.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 689.4 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.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 943fff04bce3c828047a64523e7e281beaaa7a1f8632ee6458f150b7bc0f9afc
MD5 fea11566b7b3d77d217bc3ad0d4cf357
BLAKE2b-256 0e8f4881a4e587202caf0dfef8c778957ccff4875e42039fe5b16f8d2acce539

See more details on using hashes here.

File details

Details for the file arch-4.8.1-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.1-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 a7b00daf907637d2be43b74360d7f99a39d226b65e0982cffa88444ecb6dd39d
MD5 0fdb9343c1a2245a40b76bf1c7a19e3b
BLAKE2b-256 636995097e57e14e76f62bbbd4e0b78cf70372d6fb9276d696d832d6c494b552

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