Skip to main content

A fast math and neural network library for Python and C++

Project description

Build Status Documentation Status PyPI version fury.io PyPI license PyPI pyversions Downloads per month Discord

Credits

Thanks to @Windoof-Colourblindoof for his help on the library

How it Works

LibRapid is a fully templated header-only C++ library, which can be found at ./librapid/. The C++ library is then interfaced with Python using the amazing PyBind11 library, meaning very little performance is lost between the C++ and Python versions of the library.

LibRapid also aims to provide a consistent interface between the C++ and Python libraries, allowing you to use the library comprehensively in both language.

Additionally, the Python interface has been adjusted slightly from the C++ interface, providing a more "pythonic" feel, while not reducing the functionality in the slightest.

Installing LibRapid

To install LibRapid as a Python library, simply run pip install librapid in the command line. Hopefully, there will be precompiled wheels available for your operating system and python version, meaning you will not need a C++ compiler to install it (if this is not the case, a modern C++ compiler will be required)

To use the library for C++ use, a modern C++ compiler will definitely be required. To use the library simply add the directory of this file to your extra include paths, and include the library using #include<librapid/librapid.hpp>

Documentation

Unfortunately, the documentation cannot currently be built by ReadTheDocs due to a bug in the version of Doxygen they are using. It would seem that the systems will be getting an upgrade in the near future, hopefully moving to a newer version of Doxygen, though this is still not certain.

If you would like to view the documentation, you will have to build it yourself. This is very simple once you have the correct software installed, most of which can be installed via pip.

pip install sphinx
pip install breathe
pip install exhale
pip install furo

You will also need to install a recent version of Doxygen, which you can find here

To build the documentation, open a command line window in the docs directory and run make html. You can then open the file docs/build/html/index.html in a web-browser to view the documentation.

Hopefully, the documentation will be available online in the near future, so you will not have to build it yourself...

Performance

LibRapid has highly optimized functions and routines, meaning your code will be faster as a result. Many of the functions can match or even exceed the performance of NumPy

Both the C++ and Python libraries are designed to work with any CBLAS compatible library, such as ATLAS or OpenBLAS, though will be fully functional without one, using built-in, but slower, routines.

To use BLAS in C++, simply allow LibRapid to find the cblas.h file by adding its directory to the additional include paths, and link the required library, such as libopenblas.lib on Windows. Finally, before you #include<librapid/librapid.hpp>, you'll have to #define LIBRAPID_CBLAS to let LibRapid know it should use the provided BLAS library.

For the Python API to LibRapid, things are much simpler. If you install the library via pip, it should come precompiled with OpenBLAS, so you don't have to do anything yourself.

Unfortunately, when building OpenBLAS for the Python wheels, they are designed to be optimal on the build system, which is often use very different hardware to normal users. For this reason, the BLAS installs are often not optimal, and may lead to strange and inconsistent speeds while running. To mitigate this slightly, we recommend you install a BLAS library on your machine and then build LibRapid from source if you want to get the most out of it.

LibRapid will automatically search some specific directories for OpenBLAS, though if you have it installed in a differnet place, or you have a different library installed alltogether, you can specify where LibRapid should search for the files when you build it from the command line.

The following command line options are available
They should be used as follows:
e.g. --blas-dir=c:/opt/openblas

Options:
--no-blas	   << Do not attempt to link against any BLAS library
				   Use only the pre-installed routines (which are slower)
--blas-dir	  << Set the directory where LibRapid can find a CBlas
				   compatible library. LibRapid will expect the directory
				   to contain a file structure like this (Windows example):

				   blas-dir
                   ├── bin
                   |   └── libopenblas.dll
                   ├── include
                   |   └── cblas.h
                   └── lib
                       └── libopenblas.lib
--blas-include  << Set the BLAS include directory. LibRapid will expect
				   cblas.h to be in this directory
--blas-lib	  << Set the BLAS library directory. LibRapid will expect
				   a library file to be here, such as libopenblas.lib
				   or openblas.a
--blas-bin	  << Set the directory of the BLAS binaries on Windows.
				   LibRapid will search for a DLL file

To build LibRapid from source and specify commands, use the following commands:

git clone https://github.com/Pencilcaseman/librapid.git
cd librapid
python setup.py sdist --blas-dir=C:/opt/openblas
#					 ^~~~~~~~~~~~~~~~~~~~~~~~~~
#					 Change this to your arguments
pip install .

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

librapid-0.1.7.tar.gz (1.8 MB view details)

Uploaded Source

Built Distributions

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

librapid-0.1.7-cp39-cp39-win_amd64.whl (857.4 kB view details)

Uploaded CPython 3.9Windows x86-64

librapid-0.1.7-cp39-cp39-win32.whl (674.0 kB view details)

Uploaded CPython 3.9Windows x86

librapid-0.1.7-cp39-cp39-manylinux2010_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

librapid-0.1.7-cp39-cp39-manylinux2010_i686.whl (299.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

librapid-0.1.7-cp39-cp39-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

librapid-0.1.7-cp38-cp38-win_amd64.whl (862.1 kB view details)

Uploaded CPython 3.8Windows x86-64

librapid-0.1.7-cp38-cp38-win32.whl (673.9 kB view details)

Uploaded CPython 3.8Windows x86

librapid-0.1.7-cp38-cp38-manylinux2010_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

librapid-0.1.7-cp38-cp38-manylinux2010_i686.whl (298.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

librapid-0.1.7-cp38-cp38-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

librapid-0.1.7-cp37-cp37m-win_amd64.whl (861.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

librapid-0.1.7-cp37-cp37m-win32.whl (673.5 kB view details)

Uploaded CPython 3.7mWindows x86

librapid-0.1.7-cp37-cp37m-manylinux2010_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

librapid-0.1.7-cp37-cp37m-manylinux2010_i686.whl (301.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

librapid-0.1.7-cp37-cp37m-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

librapid-0.1.7-cp36-cp36m-win_amd64.whl (861.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

librapid-0.1.7-cp36-cp36m-win32.whl (673.5 kB view details)

Uploaded CPython 3.6mWindows x86

librapid-0.1.7-cp36-cp36m-manylinux2010_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

librapid-0.1.7-cp36-cp36m-manylinux2010_i686.whl (302.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

librapid-0.1.7-cp36-cp36m-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file librapid-0.1.7.tar.gz.

File metadata

  • Download URL: librapid-0.1.7.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7.tar.gz
Algorithm Hash digest
SHA256 05b39be32159bdb193f518f081b30bc2962ac206f2b45b86e3bbc234191a17cb
MD5 5dd33d3057d8a3dea527bb0c5f6a73c4
BLAKE2b-256 85a6be464747516df3aa269287c10a677eaf0d8fea5d6058359486e4264b3ce6

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: librapid-0.1.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 857.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 54f73b0171a771ae90eab9e5301e0b232948cba833f3f0412e5c35d972566cec
MD5 bd4e2f895cbe3eff286e16cc589fb2f3
BLAKE2b-256 55c0d786e8856c7d2b1b801e0e23d65677a1c12e63662487121490d64311a415

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp39-cp39-win32.whl.

File metadata

  • Download URL: librapid-0.1.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 674.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 eaae4568c036c2236c12585d6b5a184790f744677a2bfafa741fa3ffa9e024c9
MD5 65080db5c4f2d6983de48619bc2dd924
BLAKE2b-256 0666d4718ffa83ba23d8fd77f111308e8f5a8ca433de71d601c2e6437df97140

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: librapid-0.1.7-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2cd718b43e6c906a5d9e54a6baa11f25e40962861020f766138fdc3cc38560ec
MD5 f40700385013557b6e6e5573007d0947
BLAKE2b-256 35bd59c065b9cba266158bdf4b13ba500caf650bd5dfe1f660f81ad1db970e31

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: librapid-0.1.7-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 299.0 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 29bad3a407fc84023902ea23e6b7acba112b5534fb252b456541f7630bd87fcd
MD5 9cb8bfa2997587e19b77661b81fdb69d
BLAKE2b-256 c7e6c9fa0c5432718f9b1cb0fd5a990726afe7fb31da66dff3c4cf09faeefee2

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: librapid-0.1.7-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5d8146b4282b4ca67e107efa4e474b26c773417935ba050433c2191c78d6e79e
MD5 59b27131a1c26ea8f3f82c87a1c28055
BLAKE2b-256 b3d9aba687b19521176119e9a0267879613a0ca8b638c0c839309feaac7c1186

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: librapid-0.1.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 862.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7f63753a4155685264606f6c558e0e4349026b2942c9b61277505f1e758b523d
MD5 e0cb54829bd33ec9350a8a1894b8222a
BLAKE2b-256 36f12f944e16d5fc18526d13ef2b9c0ea1ee2df30b514c22b95adb0d40a6c66c

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp38-cp38-win32.whl.

File metadata

  • Download URL: librapid-0.1.7-cp38-cp38-win32.whl
  • Upload date:
  • Size: 673.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a597d528203e09bbcb8dbda44962452fcdda6f134ade3715c25e4b070d7dc230
MD5 43985beccf8084578cb41fa7a2a04f02
BLAKE2b-256 39334f987b8e03c4f55b81fecdfcc51b61315cfe5b854173cc971bc32de5d163

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: librapid-0.1.7-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 311365e692870ec86c31170c6eaebb318b3154973670c872db7317005d1a9c97
MD5 544187c2c6ef860cb9f4c3b339feb6ab
BLAKE2b-256 4c225ec44ef2dc4bc960b5d90be43349c2acd6902f56843b0ee1edea046ca372

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: librapid-0.1.7-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 298.7 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 605828ce8e4afbdce0e1697d4e0cf2a135044fbe7319b3d79d19db951747219a
MD5 2d0245807c84f6e26627b082e938b476
BLAKE2b-256 3603c7de05555adb93f0d7d579625e43daee6f0e497902533fd528d0e76105ba

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: librapid-0.1.7-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ce3a6aaab5198d58b540b62219b1aabe498f1e8b1f8b9b57241a0bdf15a3d6b
MD5 ac37f4636ffc804109c18ff5665e0f6e
BLAKE2b-256 3b8afc71219c31bf1512b8c552bd7c3ea88f5e342914bc7d7eed98ca2443bc0d

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: librapid-0.1.7-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 861.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e3c571ba1ce2a9dd5586194051a6e66a12c6712f9a048338220a3f77eedcab43
MD5 9956ea655b27e7053e9a9f477be8d3af
BLAKE2b-256 2289dc82d28cd5a75261c5d1d2d008b5a51fe6a21d6378b105121ec304dc159e

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp37-cp37m-win32.whl.

File metadata

  • Download URL: librapid-0.1.7-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 673.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 806e78d23661b50c172a8685e81324ba79b32f604f6ab4f7b6fd1684a99516c6
MD5 9cd96e2b3c567442afdbb5cf1072cbfc
BLAKE2b-256 ff1caf5a8aa267eaebeb62754447ec9ada52039a52b91f85b91457f4d2e4d070

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: librapid-0.1.7-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5098eaf7da3e69a1f158af4f88ae04fb1345f9fd591b55b75e6cea350beb687b
MD5 7d6eeca10d174a47f1a7bcc52aee5c10
BLAKE2b-256 ed9316bccae849b21c1f4708c772e7d220fcfd90dfdea9598e4947d3e544f049

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: librapid-0.1.7-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 301.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9acf2c013e0258610f11858d4f046131ccd7261d3174497eb847220df71cc053
MD5 ef24c95f97a45650a2da4aa5f59d66d9
BLAKE2b-256 6b8aaf4f734a98c3aa0a81e04b71447fa9ac6a0adf52a97b27338723bfd8aa53

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: librapid-0.1.7-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e821cfbe93190f6b1075d9c275e608b44375a12b7b5807fa130c69fe0390fccd
MD5 4436bca94c6701cfcc7b28093a6cd9af
BLAKE2b-256 69db143ed524d52318f2d37c53541041cb90db0e58b0175f0f6d327e71214fe1

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: librapid-0.1.7-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 861.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 773dd7faedd94348279522a00f5f20ba8e02e0d07a6234354b530f7828ca137d
MD5 0c47564cab911c9659521cee7a8a0c20
BLAKE2b-256 df9798c6ccf3be2d1bc25572ffdf7e5cf9e2b44693e5931975d55f383129d384

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp36-cp36m-win32.whl.

File metadata

  • Download URL: librapid-0.1.7-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 673.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b005e576ba52e93f137536520e2953bc8d34f2ce5c7ecd0c76f603338f996c4c
MD5 f7f20c1a61382c4b92f355fe37736c32
BLAKE2b-256 7bec088df23e610a9b11d67aaf463e94d77ea3c348e962186b8bb345efcd9d26

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: librapid-0.1.7-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2acda3ba697791ed675283288d8a5d30306181c3467f12fbf4eaf61a6c22e841
MD5 f974f273226711d1be2f41c566098f5d
BLAKE2b-256 3171853373a27dfc165282316f70be66f5f5fc2e6c1f735b84783b48e643a890

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: librapid-0.1.7-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 302.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 91b2c011a50d9efeed0da4089f3542ff643bef6107e6a645c59efdd52695d3a9
MD5 ef2222f9d3ad8d2fb4e13648263afbac
BLAKE2b-256 67450ce814eb72ba26e39089f7c610ddaae313f06d1a2b7aaf403a3b14c1301f

See more details on using hashes here.

File details

Details for the file librapid-0.1.7-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: librapid-0.1.7-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for librapid-0.1.7-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f50aff9af62af2a4be402962402c7b37410248a3379c3c6539d84b175207aed3
MD5 1f212fadfc3370049fec20b259ad9a19
BLAKE2b-256 a8d8b2ea40785a2470821a98645d463a098748f83d3a90924ce2fa7d0d4b39ca

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