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.25.0.tar.gz (102.1 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

llvmlite-0.25.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.25.0-cp36-cp36m-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

llvmlite-0.25.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.25.0-cp35-cp35m-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

llvmlite-0.25.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.25.0-cp27-cp27mu-manylinux1_x86_64.whl (16.1 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

llvmlite-0.25.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.25.0.tar.gz.

File metadata

  • Download URL: llvmlite-0.25.0.tar.gz
  • Upload date:
  • Size: 102.1 kB
  • Tags: Source
  • 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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0.tar.gz
Algorithm Hash digest
SHA256 fd64def9a51dd7dc61913a7a08eeba5b9785522740bec5a7c5995b2a90525025
MD5 1e3d823b5774807272deaf95b85df5a9
BLAKE2b-256 5e6c4711620ae28b8aaa8d731e519ead648359d71c1de0c709e408671236b23a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b19f69376799848e411fad5c079dedc6ac4aedb032f922b80dcf3ec368a59dc3
MD5 003e4915eb3a1f2b3f50c70fd7ff8991
BLAKE2b-256 cd7ac1b5bccc1f4d6c51dd6cf62d1cfccdebe82a41aa4fca5837902f465f548a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 964d76903e8298ae3446319d12183dcf64722bdc9deb66159fa97ef68986594b
MD5 07686832e3f31b9d843c09b0c1a0dc5e
BLAKE2b-256 472c31c4fb1f14b024f1419a0db26f9a929102e4e92d1265a20ed840df5eb368

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c27fedc3cd6869c222a36cd7b1db8906bb209a8b7b1cd6e84174e8e53e51c23d
MD5 e74c6340bc7520ee0c16737dcb7c1185
BLAKE2b-256 5b663c1ddc89e87f50b4f379443ac352321f11b735becba2ba1a9e1bfd5c43e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b36854919a9b13408d7523e4327a04afc62ce880564466f9f79f506d560b70ff
MD5 4aeb94eec3f58d580bb5bfff6311954c
BLAKE2b-256 093abb995ef06735d190b7d8182dc5647f0475fb41b9e5e807313f61162e8f48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05b817a961fa0aacfccc5ecaa2e6fbc826c8988759a6d25243916e74c2082d3e
MD5 2acc0415869fe02c3e002f71d4776586
BLAKE2b-256 0e894ea09305315dda941118f037fbe719ac0078044c414bb147e98466db9958

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b445c88e9677e427cc6dc49aa621691f04dbee1c888040413fba26711d0edc68
MD5 7979cc46614a192965ef1c9a7999bb1a
BLAKE2b-256 04fbeabd824250e618c9ad478342304596af510ab5f8e68932c02b13ced45e04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7a249ec0a3731e789fdffe9772f2ae62303b47554b7e5109360d7fa77be0cb76
MD5 1fe9518cdf9ed3b5c115be89461f75f8
BLAKE2b-256 30dceac7d7f113e8cb2e8d36ce9a77a39ac24b46b4d0d523737b72837f3152e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 950f44f2b33f04c91417b9846271decc66adfaa16849ca3522a4c51e0037a022
MD5 491821f6784db79532a4720ac54883e9
BLAKE2b-256 34fbf9c2e9e0ef2b54c52f0b727cf6af75b68c3d7ddb6d88c8d557b1b16bc1ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 276f6585a7a962d86f0751cc3016afa45c0ba86190e1ebd7b43071507ff18967
MD5 3bac846469d22798d61d407bb1f687d0
BLAKE2b-256 90683a7b52827e749b7b2dcfe73ecb51261cd7d2b91873b54478b719a7be28b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 152e1ac25c57d3d686128a8ee899762be95d2bb1418d7b776c55b83c9591cc44
MD5 cf94ba86dfa58ac1a27203d2bea6a2a5
BLAKE2b-256 ab764c0556b7be358beafd21992f430c0a36de591f875cbb100a3eb223375474

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2bb68dbe572b021b238677729ed77dc2bda396acf6ede00373bb24124e282383
MD5 c17e8182c9ecce7e2996d06b92ffdf3f
BLAKE2b-256 4a12ee5ed479d8e847734ee7fabda5c5c7c5a59b674e76af044af9d97521fc0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 696ce74ac7060eba4f8b3cb6122bb8aff5d30a6ddc872b519dcb3ed201c42af2
MD5 0ae147c646c561255eeb02f2b4b7d0cf
BLAKE2b-256 7237cf6e179b34ddc0e2c195af228eb194f233f2b17c8950c4e6dd38f0762934

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c7f6e7078b1830c8fb15f340af4da5692d53a6590eff03c0afa7e69857ac37c0
MD5 a160e08b30e1efd99d67e3ba7bc1453d
BLAKE2b-256 c5e69e0384bd16bacb94db48c65f995317715539befb9dbf409832573cb732dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e866935bc1236478fe09c741313b1ed322ab34343ef226aa34f75ce80e5188ef
MD5 f7dd6717b9a54fdba204712db58ae4bc
BLAKE2b-256 a1cdd374ca5abffd9fd704612a4542e9812a1430e9dab621a7b024e95a1667fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a0e5a5c9aa56ca506b576ef6ca6e6c37306a483baf951034dc357cb34beb7c7
MD5 14bc22daa3b2bce11554660144911327
BLAKE2b-256 abb03cddb34355711f8009b174f627a5096f1ab4e99624c67687468921dff5fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f54bbd9e73fabd13b208b71a14a8e4d83400fc59cc5eb3bceeff1a7352a23f2f
MD5 57aaa45ed549fce885eecd7177e2bb70
BLAKE2b-256 03cda29f3a1964c3a4198c44390516ac6e29115911104219ba7a8c7e924e818e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f35c1b9d3efdcf54a1b0599c72995e66e1e4033bf08d13ab450011f0f3ca78a2
MD5 28324cfc43e4cb1f8140d6bcf96f9567
BLAKE2b-256 08b28375fd1f49a084fb1b3f448fe8924baa6e8ae0fd5bc64428980a580863ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 9b1c41413bf5d709c8bd3621e075e19dd9170cb08cbf95319d6cbd28ca2d84ed
MD5 6a8885d9f4e5e54853148cf9a7d1a17d
BLAKE2b-256 3fd64d8c24211a71bd4b302d5835c3503661db33070500b4f0705900302fb7f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 d8702b8825349b090f51c358cd1e5f9631865bdab4e9e13bfce1ac7c82e44cfe
MD5 79b3fb6d2164b5c7d6e309c232b7c09e
BLAKE2b-256 dc2acd302bb76432ac947d2949ef566a5d3201fd7cbf4447a649b4389486d775

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.25.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.23.0 CPython/3.6.3

File hashes

Hashes for llvmlite-0.25.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0ea68d4ab6a1fa73d919b17ab2f4909f4aa9a6730ba32a91c61db8c08626f408
MD5 06ecc2a6378ac548455ddd115e8a41f3
BLAKE2b-256 c9fed892851e35fb4b93e4082ff0f9b226c6dcce4c0520cae5b8d914c8ae2f49

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