Skip to main content

lightweight wrapper around basic LLVM functionality

Project description

Travis CI Code Climate Coveralls.io Readthedocs.io

A lightweight LLVM python binding for writing JIT compilers

The old llvmpy binding exposes a lot of LLVM APIs but the mapping of C++-style memory management to Python is error prone. Numba and many JIT compilers do not need a full LLVM API. Only the IR builder, optimizer, and JIT compiler APIs are necessary.

llvmlite is a project originally tailored for Numba’s needs, using the following approach:

  • A small C wrapper around the parts of the LLVM C++ API we need that are not already exposed by the LLVM C API.

  • A ctypes Python wrapper around the C API.

  • A pure Python implementation of the subset of the LLVM IR builder that we need for Numba.

Key Benefits

  • The IR builder is pure Python code and decoupled from LLVM’s frequently-changing C++ APIs.

  • Materializing a LLVM module calls LLVM’s IR parser which provides better error messages than step-by-step IR building through the C++ API (no more segfaults or process aborts).

  • Most of llvmlite uses the LLVM C API which is small but very stable (low maintenance when changing LLVM version).

  • The binding is not a Python C-extension, but a plain DLL accessed using ctypes (no need to wrestle with Python’s compiler requirements and C++ 11 compatibility).

  • The Python binding layer has sane memory management.

  • llvmlite is quite faster than llvmpy’s thanks to a much simpler architeture (the Numba test suite is twice faster than it was).

llvmpy Compatibility Layer

The llvmlite.llvmpy namespace provides a minimal llvmpy compatibility layer.

Compatibility

llvmlite works with Python 2.7 and Python 3.4 or greater.

As of version 0.23.0, llvmlite requires LLVM 6.0. It does not support earlier or later versions of LLVM.

Historical compatibility table:

llvmlite versions

compatible LLVM versions

0.23.0 - …

6.0.x

0.21.0 - 0.22.0

5.0.x

0.17.0 - 0.20.0

4.0.x

0.16.0 - 0.17.0

3.9.x

0.13.0 - 0.15.0

3.8.x

0.9.0 - 0.12.1

3.7.x

0.6.0 - 0.8.0

3.6.x

0.1.0 - 0.5.1

3.5.x

Documentation

You’ll find the documentation at http://llvmlite.pydata.org

Pre-built binaries

We recommend you use the binaries provided by the Numba team for the Conda package manager. You can find them in Numba’s anaconda.org channel. For example:

$ conda install --channel=numba llvmlite

(or, simply, the official llvmlite package provided in the Anaconda distribution)

Other build methods

If you don’t want to use our pre-built packages, you can compile and install llvmlite yourself. The documentation will teach you how: http://llvmlite.pydata.org/en/latest/install/index.html

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

llvmlite-0.26.0.tar.gz (103.4 kB view details)

Uploaded Source

Built Distributions

llvmlite-0.26.0-cp37-cp37m-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

llvmlite-0.26.0-cp37-cp37m-win32.whl (8.3 MB view details)

Uploaded CPython 3.7m Windows x86

llvmlite-0.26.0-cp37-cp37m-manylinux1_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.7m

llvmlite-0.26.0-cp37-cp37m-manylinux1_i686.whl (16.3 MB view details)

Uploaded CPython 3.7m

llvmlite-0.26.0-cp37-cp37m-macosx_10_9_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

llvmlite-0.26.0-cp36-cp36m-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.6m Windows x86-64

llvmlite-0.26.0-cp36-cp36m-win32.whl (8.3 MB view details)

Uploaded CPython 3.6m Windows x86

llvmlite-0.26.0-cp36-cp36m-manylinux1_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.6m

llvmlite-0.26.0-cp36-cp36m-manylinux1_i686.whl (16.3 MB view details)

Uploaded CPython 3.6m

llvmlite-0.26.0-cp36-cp36m-macosx_10_9_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

llvmlite-0.26.0-cp35-cp35m-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.5m Windows x86-64

llvmlite-0.26.0-cp35-cp35m-win32.whl (8.3 MB view details)

Uploaded CPython 3.5m Windows x86

llvmlite-0.26.0-cp35-cp35m-manylinux1_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.5m

llvmlite-0.26.0-cp35-cp35m-manylinux1_i686.whl (16.3 MB view details)

Uploaded CPython 3.5m

llvmlite-0.26.0-cp35-cp35m-macosx_10_9_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

llvmlite-0.26.0-cp27-cp27mu-manylinux1_x86_64.whl (16.1 MB view details)

Uploaded CPython 2.7mu

llvmlite-0.26.0-cp27-cp27mu-manylinux1_i686.whl (16.3 MB view details)

Uploaded CPython 2.7mu

llvmlite-0.26.0-cp27-cp27m-win_amd64.whl (10.6 MB view details)

Uploaded CPython 2.7m Windows x86-64

llvmlite-0.26.0-cp27-cp27m-win32.whl (8.3 MB view details)

Uploaded CPython 2.7m Windows x86

llvmlite-0.26.0-cp27-cp27m-macosx_10_9_x86_64.whl (12.5 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file llvmlite-0.26.0.tar.gz.

File metadata

  • Download URL: llvmlite-0.26.0.tar.gz
  • Upload date:
  • Size: 103.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.6

File hashes

Hashes for llvmlite-0.26.0.tar.gz
Algorithm Hash digest
SHA256 13e84fe6ebb0667233074b429fd44955f309dead3161ec89d9169145dbad2ebf
MD5 3f48aa764e3458c08b6237bc939ecdcd
BLAKE2b-256 990e78da3ea5777d61f0f61c38550d0d257f0ad24a7954ffbdaea991a161ad68

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0468ebf4b4161c076e8fce07a313405034bd11abc7133947b647fd0a8059efa6
MD5 c46965934170a506ba22696febff6d3d
BLAKE2b-256 91cdd5a605854e0325cd5e597f18a2f367e7e752751d1df2352619dad2f909c9

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 cd0d530c72d423176f6ea4a2d7b098252bb4547ed2c7e09686ff3283878dbd0a
MD5 b16adad552b75f13bf82591e194dda1d
BLAKE2b-256 90113a786ffee141f9ae1f9d2c48cc9b3e6d681fd82af92124f2d9d68592978a

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d209142c89fc83fc79674454ad5b861d5d62af6670d0694384502f7151b3ae8f
MD5 faf58969a5b4fcfc6a55d748dbde0568
BLAKE2b-256 b99ff8756879c99434b6f716987e9073c4a0ed1d50d79c0c95155630e99fea2f

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 75b15a7568dcec83136f5ac80adff9e9c450f554995a3c43e7e1c4c766ad4c76
MD5 adbdc57e3578cd3177e199d66b6870fe
BLAKE2b-256 9a368d647622548ea6208fdfe1e1491c6da6b5ecb268a20d5f6d878da30d9f0c

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.5 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84e72bda0d397263ffdb1982a2b764c3f479e1302aa59f92fb636f2215d1fee0
MD5 bc18c6801a67d043728c696dd051bc77
BLAKE2b-256 849fbce6b3ac48a53f2453fd56279e0db5965cc8d0a1bcc7de6a984ebd9ce2a5

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1d28e0f10ac4222bd79a83914d2efc03e8d8d79b1c7246c83f30f66465c8963c
MD5 2a262680172460239274f3648449445a
BLAKE2b-256 5de4ef71389eb6eb8da3a16f129f69237a68f76e1b725e40435cfdab42b6c7c3

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4648e1511a2095ea0b1f43f624348f1fcc73d33581d3f7fdbfea6ead2ca05dba
MD5 48d0b4adfd1a31fcc3e034541d6528e3
BLAKE2b-256 262cfa68ad6c9ed3b40c4fa0ad3461f811028810f25349f2f79a079b3ec47c9e

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 24e7ba80a4dc4aa89d6f0062928d1b3dd4c6c3ff137d76909f57b89972b673ca
MD5 54aca5f9f319710b56fc7563ee5bbf06
BLAKE2b-256 a260d22966c97a47687ac1cc57c2e756380897c264f1ce40780105d7dbcd9564

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3554a558e5977bdbbc172c13b4055f24cb985f85557205fb44e231e96eeaddeb
MD5 e011cc563ecb0f125cdf2c432a4c7a68
BLAKE2b-256 f12ed47a981c03e26789edd7a120d15163e7c55ca15cba701166a1a73dbe473b

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.5 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7861e89052f91d670050692e87459840179629978e3189aa2b6fb8685eace98c
MD5 146cf125642c8d9de24acb5caec6fac3
BLAKE2b-256 d705be0997c6307063d3c8c788391a00b20a56a1b35c6859443383e12c85b061

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 f1d1112f5fe9f5f3e03d74adf16ac436d7988af048949e27f9e10d3ea79e2596
MD5 1b2b0db17bb80c6c69b6e518dbdbd84e
BLAKE2b-256 dfe4b976c30350e8e78ee52049c9a0990b2a47d77b8e6adb0b895ee29b6356fb

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 8cc0278bef8ef70b487452ee8d15adf18412997018bf807370f128535fde80c0
MD5 7462224a578423bad8e450fadc206ee7
BLAKE2b-256 c3d4803a6b5dd99ec22a5ce142dc99bf173cacf69ad6af0b84ea31387bd33c28

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a4eff8ed50de51d88dd745bae24a74415915f128a250c01a22f12e6ff9e44be9
MD5 de1021bddcd46eee8b869920be5b4f29
BLAKE2b-256 f9ad17deffd4c88b1c50d57b97547e33ef652f27a561347b8441f01901a3014e

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ad3b9d4e127d5b5f6993788732e9a4a6aa7a5451106c35eab61d7f3a63974c3d
MD5 bbfefc6f28910b2d0df533cb71cdaffa
BLAKE2b-256 5024749d11762a4e247d21e6bba0eecd1c0e2520a33359f3ed72fe4fdfddafe0

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.5 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1db76486373ed11df98f8641bcd95fe78e80aaef2e351013032bf33828067d11
MD5 4971be3564799b5bf30e04ed0d739f6a
BLAKE2b-256 33a5b8d25cbdfd94b5647f6107bb39802ce67afc098cc9cd9935f40415ff4def

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c2a96175f0e0fe385a79b103073017cff046357eccde1849885a4d5871839965
MD5 082c6ac03afb56c482645a9c86d0de34
BLAKE2b-256 3b37b1e09e5b16161ec27a5df3f87c7435bb046feefe6355696f6af3aea9e4ef

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 02ef5d4070693f9bd5cc849ba281fffeecd74a0e774e685741992a2e184e28bd
MD5 35f00d882a622b4f3f30047614d7dd5f
BLAKE2b-256 4a0867a67a2ae8560489b32a9bde2f7cf62a8434bd8c24a576b7d99417d9c995

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 2438499c6a4c120b8562dc2a0376055ff6f3685cb0ea24a6e01e0991483ba974
MD5 3bbac2e6918418715a1b40a69a0ffb16
BLAKE2b-256 552716175d784fedfa6b50f9e1f6ec957f6074b8fefa0ea5961f9d512f6f71bc

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 6bec9380dec3f56ab7f0b8ea2ccd09ce051e4d378489e95cd09778f1809adcfd
MD5 707dd686aabf857fa22e86d276d4a25a
BLAKE2b-256 6363fad394c27d0db1d3c8e31783570f09961244a3d185bb47c56eceb019acaa

See more details on using hashes here.

File details

Details for the file llvmlite-0.26.0-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.26.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.5 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.26.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cab1f4e4e84c22968eb959a24708a2dd29c25cb10a696eabda21cea8d84ca146
MD5 c6c2de8dde63ea87f6fdb126f27af692
BLAKE2b-256 c60917535cad8112cbb06dbe3429914e729a958490b848acd7b5850394db8e1e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page