Skip to main content

ARCH for Python

Project description

arch

arch

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

Metric
Latest Release PyPI version
conda-forge version
Continuous Integration Build Status
Appveyor Build Status
Coverage codecov
Code Quality Code Quality: Python
Total Alerts
Codacy Badge
codebeat badge
Citation DOI
Documentation Documentation Status

Module Contents

Python 3

arch is Python 3 only. Version 4.8 is the final version that supported Python 2.7.

Documentation

Documentation from the main branch is hosted on my github pages.

Released documentation is hosted on read the docs.

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_datareader.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.

Cointegration Testing and Analysis

  • Tests
    • Engle-Granger Test
    • Phillips-Ouliaris Test
  • Cointegration Vector Estimation
    • Canonical Cointegrating Regression
    • Dynamic OLS
    • Fully Modified OLS

See the cointegration testing example notebook for examples of testing series for cointegration.

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 numpy as np
import pandas_datareader.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.

Long-run Covariance Estimation

Kernel-based estimators of long-run covariance including the Bartlett kernel which is known as Newey-West in econometrics. Automatic bandwidth selection is available for all of the covariance estimators.

from arch.covariance.kernel import Bartlett
from arch.data import nasdaq
data = nasdaq.load()
returns = data[["Adj Close"]].pct_change().dropna()

cov_est = Bartlett(returns ** 2)
# Get the long-run covariance
cov_est.cov.long_run

Requirements

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

  • Python (3.7+)
  • NumPy (1.17+)
  • SciPy (1.3+)
  • Pandas (1.0+)
  • statsmodels (0.11+)
  • matplotlib (3+), optional
  • property-cached (1.6.4+), optional

Optional Requirements

  • Numba (0.49+) will be used if available and when installed without building the binary modules. In order to ensure that these are not built, you must set the environment variable ARCH_NO_BINARY=1 and install without the wheel.
export ARCH_NO_BINARY=1
python -m pip install arch

or if using Powershell on windows

$env:ARCH_NO_BINARY=1
python -m pip install arch
  • 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

You can alternatively install the latest version from GitHub

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

Setting the environment variable ARCH_NO_BINARY=1 can be used to disable compilation of the extensions.

Anaconda

conda users can install from conda-forge,

conda install arch-py -c conda-forge

Note: The conda-forge name is arch-py.

Windows

Building extension using the community edition of Visual Studio is simple when using Python 3.7 or later. Building 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.29+, if not using ARCH_NO_BINARY=1)
  • pytest (For tests)
  • sphinx (to build docs)
  • sphinx_material (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 ARCH_NO_BINARY=1 was set.
  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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

arch-5.3.0-cp310-cp310-win_amd64.whl (843.6 kB view details)

Uploaded CPython 3.10Windows x86-64

arch-5.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (905.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

arch-5.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (882.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

arch-5.3.0-cp310-cp310-macosx_11_0_arm64.whl (857.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

arch-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl (886.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

arch-5.3.0-cp39-cp39-win_amd64.whl (845.3 kB view details)

Uploaded CPython 3.9Windows x86-64

arch-5.3.0-cp39-cp39-win32.whl (814.4 kB view details)

Uploaded CPython 3.9Windows x86

arch-5.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (908.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

arch-5.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (885.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

arch-5.3.0-cp39-cp39-macosx_11_0_arm64.whl (851.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

arch-5.3.0-cp39-cp39-macosx_10_9_x86_64.whl (879.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

arch-5.3.0-cp38-cp38-win_amd64.whl (845.5 kB view details)

Uploaded CPython 3.8Windows x86-64

arch-5.3.0-cp38-cp38-win32.whl (814.7 kB view details)

Uploaded CPython 3.8Windows x86

arch-5.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (907.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

arch-5.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (884.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

arch-5.3.0-cp38-cp38-macosx_11_0_arm64.whl (848.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

arch-5.3.0-cp38-cp38-macosx_10_9_x86_64.whl (876.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

arch-5.3.0-cp37-cp37m-win_amd64.whl (842.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

arch-5.3.0-cp37-cp37m-win32.whl (810.9 kB view details)

Uploaded CPython 3.7mWindows x86

arch-5.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (903.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

arch-5.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (883.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

arch-5.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (876.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file arch-5.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: arch-5.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 843.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for arch-5.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9329b6c633ca40bf457605bc1eef0093b7c6bac15754903987914cb6ef1861d5
MD5 532a8d733ae202d7c01b82a1b5e574c9
BLAKE2b-256 b7a6a59d04d86736f23920d0eb58112bf3d93ff8bfccb3d7616ed4165c4b7513

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for arch-5.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44d5601307d67150d522f3137b6bc4327da9d04c8217e17cfaa6ba8a31e8cd55
MD5 4d3a4507519561d4355d45398f30f102
BLAKE2b-256 bbaeb44af3957bd745a4ab3160cd913a20cb6544585744ea6850e995abfd1d79

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for arch-5.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60a908398695775eb4582ceb538565f36862449e1b9475d0707cf1c4fa130964
MD5 4812b4762e43dce9b24ab4459ee43adc
BLAKE2b-256 74601f54301837b4ab487019dd32490bcc9151c313b8723cd6966daa8c5ce3ee

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arch-5.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1b47437ce24a8943d23f407cf12374c66dbd06c69ea269188bbebd899956347
MD5 b49ba423bf064d6911083356c1390196
BLAKE2b-256 60e11255788a37e0f2ce713a625159ae4b44612adcc7d88f9a5ed20b6cfa222f

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for arch-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84acb49c1a364c05846d87ddcf5fd505c0e07aa862ed42eb4c5790d91e02cc06
MD5 3f142c5eb6e9766d4cb2f31cc0c75787
BLAKE2b-256 c819ab2233ac88d53625c4520e0b7cc8e87e7a2108247dc36b15f0c13d041e09

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: arch-5.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 845.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for arch-5.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bfb6c841414a83017f0dc7b13b4a491062fe170fc9f9eb33e04f54e9bead4af9
MD5 c04946e7def46c7f326869a02ceef58f
BLAKE2b-256 62098a452ee1e18c0ea1bf423fc22e9321714eaabb82f0f37ffe2ded8962bbe0

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: arch-5.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 814.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for arch-5.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0edd49c3524bd35f9e17ffdf5af7d1530d39d908406a4208754864e0e70b62bd
MD5 4c6f8044a4d776f46256cc5091fabd56
BLAKE2b-256 74a0ccd6ca2b2c7a7778623c20285a20bb9a4a6a3a7873f6caf2b852ee528908

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for arch-5.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 091e328d6604c1241431227322140ae354125b5219d8484ffdfa0968a050491d
MD5 1af450c4c0b18b2d574dcd1f3b8c018b
BLAKE2b-256 57cfd20e84b40666e8af3c64dff037a16926070e92b6513610907eb8519ea6bf

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for arch-5.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7ffefb8401b202d012d86d857509b4d5921039906b631214097f9963e74fe5d
MD5 bfaf524f089cf8d78a495a441e2774d7
BLAKE2b-256 738a116c8b80e448644a9dad5d2c276bdb65b908b8c6a34c7da53a693892ff91

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: arch-5.3.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 851.3 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for arch-5.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed2aa50b06dde2a803331494b1e0048a9e7f3e969a7d2463eca2cca86fde8a75
MD5 5a24f661be53832fe9d8fe02339708e1
BLAKE2b-256 27695a7565258a05f2910419881f951dc51f8dfe0a09230c7b09d60b41fd173c

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: arch-5.3.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 879.0 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for arch-5.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7fa36de059f24f3446cf752d16089b6320493bec00d171bb170f49b6747b7916
MD5 d263b305c103f674c4bfb4decc859fa8
BLAKE2b-256 e52fd2a8c9e51363268d056043f25d2ae7302640590855c9fb05147bc1c5be28

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: arch-5.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 845.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for arch-5.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e517ca337d084c47ac1f71a7559db6462623f12823e473e157178a9f650f194a
MD5 7e71e7885d42824fc645f36e2ce47d16
BLAKE2b-256 caf3decab0ce015308ab99dd34e019c41836a663e45b2ddcc68f216e974f57ca

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: arch-5.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 814.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for arch-5.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3b599a2f8bf75bf1deace6045bab2790da1d41889d6c3f979f3fe0324a7dfc33
MD5 651b9b5b4b60a99cab63906d198f4327
BLAKE2b-256 80d3f28b8189f089fd2e50b1fec1026f33ee1e62f0fef0a186b30b3f2fc44176

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for arch-5.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dbcd0a7a1e4b697af1902d982d937774543f7b127a96f6cb94f0f41b8cd047a
MD5 3f54c64962283e1daeeec980769bd213
BLAKE2b-256 52284681fafaccc4a337b5021645ce0383f6065e96713b7ab3a8d91df04810f9

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for arch-5.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98dd5e07d83c9dfddba0441be3c982fd39831026d93bb029c6ff35a8598a583c
MD5 aa47a2fb2c5d31aff29c266d35e8dfb3
BLAKE2b-256 a87f6392b7a50c2faffd512a270b6f3bf361237980bec046d1feb06ca3d285ee

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: arch-5.3.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 848.6 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for arch-5.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce3ceba7786916619ddf06a062ed09e9e8e4e15c6982661daf6132a25103351e
MD5 afea6f16f418cdfbf6952e9a1c89d899
BLAKE2b-256 058030d17a25f69ad64e61fa024dabb181aa52fd4d999b4cb2585c1eb5219483

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: arch-5.3.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 876.1 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for arch-5.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95ceb0b0266b65052c66334fa6e5afa99deae56576beb7b63ad0c2afc6bfed89
MD5 2d6b1cc6e654794b2fa09ecc9cd14a9b
BLAKE2b-256 020e38c9eae393807014c50050fa5f9c9545c62fcb99cd40122adbace00d2708

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for arch-5.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 60220d90428ed19ce13ff88045482177d9a95648292b75d2ce80748dc67163ea
MD5 a4c5963016f3becd2eb5b6b1472ade25
BLAKE2b-256 8ef412b4803cad46dd48dc4e310d02186a16a8ab65cca4c636d53c96a5fe97c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arch-5.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 810.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for arch-5.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2aaa969b2a49096d79abafac63bc4540203d8bbba69bbfbfb92f6d3f18488a29
MD5 7504a72e3e51d36f8c27bece98c9c1ff
BLAKE2b-256 bed61c4d9b4855ff06a2852125b384f9af81daf6263cf95b83929e509a6a5010

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for arch-5.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c08638b948e6b5e5526d10cdbea23e847eb76a04667c42087373ebe55a097eda
MD5 db11ee17e6e7c2927e7cd22cfcbd16c4
BLAKE2b-256 477362aa19bb56984a6faea5da2ec89750facc4c618414ece66ffdbc262d5691

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for arch-5.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f795d4bfc6b5bd44e71f480bccd030fb914dab756ecca081f75fa25c72b4646
MD5 6ca7425d3e53a6eaf53a02b8f2e67ff7
BLAKE2b-256 020292d9b70ca93f12d1a6a54e2e768a8ee47b8d526bcb13e6f1bec9f057c9c9

See more details on using hashes here.

File details

Details for the file arch-5.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for arch-5.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65d4b63ca395b546ed97f883a65144bb6decd827e4fecefcda1adc5fbdd91f66
MD5 1d6acdb189851cdd9f534a8f689055b7
BLAKE2b-256 7d13e0cb7f5ec8ad9f3ca1821ec39591dd838145b0934086173651e9cb06d527

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