Skip to main content

Vehicle routing open-source optimization machine (VROOM)

Project description

Python Vehicle Routing Open-source Optimization Machine

gh_action codecov pypi

Good solution, fast… in Python.

Pyvroom is an Python wrapper to the excellent VROOM optimization engine for solving vehicle routing problems.

The library aims to solve several well-known types of vehicle routing problems, including:

  • Travelling salesman.

  • Capacitated vehicle routing.

  • Routing with time windows.

  • Multi-depot heterogeneous vehicle.

  • Pickup-and-delivery.

VROOM can also solve any mix of the above problem types.

Basic usage

>>> import vroom

>>> problem_instance = vroom.Input()

>>> problem_instance.set_durations_matrix(
...     profile="car",
...     matrix_input=[[0, 2104, 197, 1299],
...                   [2103, 0, 2255, 3152],
...                   [197, 2256, 0, 1102],
...                   [1299, 3153, 1102, 0]],
... )

>>> problem_instance.add_vehicle([vroom.Vehicle(47, start=0, end=0),
...                               vroom.Vehicle(48, start=2, end=2)])

>>> problem_instance.add_job([vroom.Job(1414, location=0),
...                           vroom.Job(1515, location=1),
...                           vroom.Job(1616, location=2),
...                           vroom.Job(1717, location=3)])

>>> solution = problem_instance.solve(exploration_level=5, nb_threads=4)

>>> solution.summary.cost
6411

>>> solution.routes.columns
Index(['vehicle_id', 'type', 'arrival', 'duration', 'setup', 'service',
       'waiting_time', 'location_index', 'id', 'description'],
      dtype='object')

>>> groups = solution.routes[solution.routes.type == "job"].groupby("vehicle_id")["id"].apply(lambda x: set(x.dropna().astype(int)))
>>> groups[47] == {1414, 1515} and groups[48] == {1616, 1717}
True

Usage with a routing engine

>>> import vroom

>>> problem_instance = vroom.Input(
...     servers={"auto": "valhalla1.openstreetmap.de:443"},
...     router=vroom._vroom.ROUTER.VALHALLA
... )

>>> problem_instance.add_vehicle(vroom.Vehicle(1, start=(2.44, 48.81), profile="auto"))

>>> problem_instance.add_job([
...     vroom.Job(1, location=(2.44, 48.81)),
...     vroom.Job(2, location=(2.46, 48.7)),
...     vroom.Job(3, location=(2.42, 48.6)),
... ])

>>> sol = problem_instance.solve(exploration_level=5, nb_threads=4)
>>> 3800 < sol.summary.duration < 4200
True

Installation

Pyvroom currently makes binaries for on macOS and Linux. There is also a Windows build that can be used, but it is somewhat experimental.

Installation of the pre-compiled releases should be as simple as:

pip install pyvroom

The current minimal requirements are as follows:

  • Python at least version 3.10.

  • Intel MacOS (or Rosetta2) at least version 15.0.

  • Apple Silicon MacOS at least version 15.0.

  • Windows on AMD64.

  • Linux on x86_64 and Aarch64 given glibc at least version 2.34.

Outside this it might be possible to build your own binaries.

Building from source

Building the source distributions requires:

  • Download the Pyvroom repository on you local machine:

    git clone --recurse-submodules https://github.com/VROOM-Project/pyvroom
  • Install the Python dependencies:

    pip install -r pyvroom/build-requirements.txt
  • Install asio headers, and openssl and crypto libraries and headers. For mac, this would be:

    brew install openssl@1.1
    brew install asio

    For RHEL:

    yum module enable mariadb-devel:10.3
    yum install -y openssl-devel asio

    For Musllinux:

    apk add asio-dev
    apk add openssl-dev
  • The installation can then be done with:

    pip install pyvroom/

Alternatively it is also possible to install the package from source using Conan. This is also likely the only option if installing on Windows.

To install using Conan, do the following:

cd pyvroom/
conan install --build=openssl --install-folder conan_build .

Documentation

The code is currently only documented with Pydoc. This means that the best way to learn Pyvroom for now is to either look at the source code or use dir() and help() to navigate the interface.

It is also useful to take a look at the VROOM API documentation. The interface there is mostly the same.

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

pyvroom-1.15.1.tar.gz (2.5 MB view details)

Uploaded Source

Built Distributions

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

pyvroom-1.15.1-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

pyvroom-1.15.1-cp314-cp314-manylinux_2_34_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

pyvroom-1.15.1-cp314-cp314-manylinux_2_34_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

pyvroom-1.15.1-cp314-cp314-macosx_15_0_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

pyvroom-1.15.1-cp314-cp314-macosx_15_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

pyvroom-1.15.1-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

pyvroom-1.15.1-cp313-cp313-manylinux_2_34_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

pyvroom-1.15.1-cp313-cp313-manylinux_2_34_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

pyvroom-1.15.1-cp313-cp313-macosx_15_0_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

pyvroom-1.15.1-cp313-cp313-macosx_15_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

pyvroom-1.15.1-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pyvroom-1.15.1-cp312-cp312-manylinux_2_34_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

pyvroom-1.15.1-cp312-cp312-manylinux_2_34_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

pyvroom-1.15.1-cp312-cp312-macosx_15_0_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

pyvroom-1.15.1-cp312-cp312-macosx_15_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

pyvroom-1.15.1-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pyvroom-1.15.1-cp311-cp311-manylinux_2_34_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

pyvroom-1.15.1-cp311-cp311-manylinux_2_34_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

pyvroom-1.15.1-cp311-cp311-macosx_15_0_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

pyvroom-1.15.1-cp311-cp311-macosx_15_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

pyvroom-1.15.1-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pyvroom-1.15.1-cp310-cp310-manylinux_2_34_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

pyvroom-1.15.1-cp310-cp310-manylinux_2_34_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

pyvroom-1.15.1-cp310-cp310-macosx_15_0_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

pyvroom-1.15.1-cp310-cp310-macosx_15_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

File details

Details for the file pyvroom-1.15.1.tar.gz.

File metadata

  • Download URL: pyvroom-1.15.1.tar.gz
  • Upload date:
  • Size: 2.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvroom-1.15.1.tar.gz
Algorithm Hash digest
SHA256 01a99ad28004853c52c2daa1cdb6b530061ec7998999a4b26848ac4b26e9cd20
MD5 0e5c4f5ec32165d3ba4cec7f208b9d71
BLAKE2b-256 6784ed045cbdaa4360abfe905aadd8e977968bdcd28f8362570cd718061d3877

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyvroom-1.15.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvroom-1.15.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1ac00954da90ec3439aa68e0dc69c1be454a14939809cff82986faf1d693b0e1
MD5 b42311381809b86e1bc2643aca1bf736
BLAKE2b-256 0b597ec450e5775c9fea78ff30d18cab88cbaf18fd5e52bf152acbdbb5d2f6c4

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1d21331a367d135eb9731062dd44bc3df16a9d1cd906b4e2c5705f39614dac11
MD5 0d73606a2b7dc2cb522e68018ee3b574
BLAKE2b-256 d605a3176c525ca878153f9d96ec7db9047a953eccbd93695bc270c8fdd9f539

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp314-cp314-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 d323551477f9d6c7f75849aad79da2ce72c0a5d9cf1b424fab83d3341bc8b5fa
MD5 7e1e12905fa5ed150204e0cccd90590b
BLAKE2b-256 c305a49e801e91ce45280371d7e30a480778a31683f9dcdfd7a51e82caab1390

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 702ceff77f8f5384f3708c8e89907ad2e03fc44f071edbde065d6a250ac7324f
MD5 e2b2de9497caca135a9904c0a5bc3f65
BLAKE2b-256 277dcba47dfb7c4f60ce682ad675b042190ac67b50ef57a2501b716452bf0b11

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7e443a7ab2c2dfad2b35ab5b6ed236b1eb6778b71da7b5da7010606809969cbe
MD5 2c0da744db06706b1470aae8cffb2c62
BLAKE2b-256 55c1d5a53a6a212d7038c49dd0aff38e44fc28d29288b17b8fa1f036dff28882

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyvroom-1.15.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvroom-1.15.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6857d6768ae74347ab4433b16a0d019f0949d42ee77162483393c0457627ddca
MD5 f8002f55fe40d526e5bc3347d74cbd2b
BLAKE2b-256 f94ab8e93e3e4219b772d647342b900795ddca1432ae5ed3e43aaa58436cfa65

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 66cbc60897728efae6b870774924f73893879ace1b160e421cdd686424b0869e
MD5 bcaff176b54f3fe2ee06577a55b3f1b7
BLAKE2b-256 da7d09ffedfdad28f18afe2142170c4affcda0dd2a0f0afdf0a423341b7505ea

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp313-cp313-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 627b47f165c1b3141e95b55076e59db0dc887f596912bc91abf06ba3d1ea13cf
MD5 446d005254fc6d690f3256c1c30adb31
BLAKE2b-256 555bb1dad7a6efd419a31c261b616fe1f7e4133455d6732e7bcf6ecda93a0dd7

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f0f82801885f8ee35754244a093e2c0bcaf1ffdb664ac0f8d9a5d7c8530df9fd
MD5 bbe5b87588fe8a6e9f05bec4c136cf96
BLAKE2b-256 ef00d185eafb7507221dbd4803fdcc352cce1486dfd8bb840827fda9de45fb05

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3442851f5c53300d0712b79ae618d631078a465865c768d2390a381b56c5f155
MD5 b262cd5a7a0af7cf53510a60f40244ca
BLAKE2b-256 ddd8245fad1ab529cc7f728e246799f7501c4c8be519076954a095eb443b7712

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyvroom-1.15.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvroom-1.15.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0fab25816b9d8b00d5302aefc9540b984d0c6a53ee06f47c3f9b52a1564f4e61
MD5 016cf9237b6cf808418566126977d77b
BLAKE2b-256 cbcef3ebf08bb793edbc9220d2d08fc48acd23d75561a72b2bcdad81415018ab

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 de5d3f4076ba2fe453b4a53d0cb8bd0af2e74f43af86c319007f956687e6ac03
MD5 0d6bae4d686728d79dd474b6d124d94a
BLAKE2b-256 bdfb6cabd0d626d2834c0a6728a53f26ae550cbdb32c84c0c869a2c648f38c7e

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp312-cp312-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 1b282f6deebebaff69da530eb92af9cba16ffe74a7c46172d5d87b0daefc5be9
MD5 bb1ef6c53dedd1a7ab05b83c8b59e76e
BLAKE2b-256 3a6934ce58dec4e028a9634654b56747995fbdd743ff3cd4a3119b5b05767ac3

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a6f4a444ea50a4d08cf8ac87bb89a9a21b4bd6672b237181c44b000ee8e787fb
MD5 38a33a956052ad8fdf907b4b4b542a11
BLAKE2b-256 2caafa4228928e532c2170046c2e0c5842350e8420fd00c8a45abd71108f83e8

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 eb09f901545e21a5d1bb19a723849fe1ea0532e62603c6e7dfc0c6a52e4ee3e2
MD5 aa05c50568d4c4284ea5ea805dcc698d
BLAKE2b-256 67459e45ce02dd61b0e7f11c5101b3d9c6aee3eb6e35d09cc1f1edeeff712464

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyvroom-1.15.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvroom-1.15.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 18e2dbccc5be0b04c672bf33932d0cc5890ccdde888a4481dc841c720604f15c
MD5 d630694e53e849c90211bba89a1354e3
BLAKE2b-256 9db05eb4be0061e9c9348ce7e42fe754fde1d8b16b6c8e2638b6d2f08bfc07a6

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 885619578d342210d2955af8307c463cd2ff5bf9ef967969f0d2b0b56ab28153
MD5 0b25d0a9593eff42031364f89ccfe260
BLAKE2b-256 d6191c9620a0ccd4c0029e24f8f8a6f04b65c71fbc284da1ad07ce7ad87d81a2

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp311-cp311-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 37946bea8f2eab395d94740525c14662264e4e3e3d7d9e39fd80897b0d40b118
MD5 c8201433062707fe3b8926e337965075
BLAKE2b-256 e322c81d5215b54f4e03a828cd84864464eff937e6798efcd9f2c7479360bb3b

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 34a548c8c42808b1e4737019788a0e5abb2f812704e88c42fcde9729d47c8e67
MD5 19d21dd33ffcea61654e4f4944126cb3
BLAKE2b-256 58ebf0989ea620bad9ac07a17e60fb29cdf146a197ccfebe273ef5873f1a55da

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 bd157c87f444fd5a486a2396d97ec8fbbc466c79c6741bee4763481e7f3db831
MD5 57ef90994aab35aba828f725ca1c6b9b
BLAKE2b-256 7245c9e12f3bb91ee8533409549cc444a7e93f9d72b8e647dafd41be1dc61b1a

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyvroom-1.15.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvroom-1.15.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b5494b1eaeb4b0d9ebb483eb5992401fe62bff0ebe6f0f60dcac98f091010897
MD5 5f4fdf13f076bcb4ec0cb6bf2ef92517
BLAKE2b-256 5c914f4727858402beb7661abe9a4741aaa2a1cfe780aaf08c421891cf3ec061

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ffe4b8344e75b6aa4c6c0e1d91246145461bc52279ff83ab1237c9544d8bf1c8
MD5 8c09d2a99809bbca133d5da46479a183
BLAKE2b-256 459e08a6fb1c307d02f8338072b0e1af00102d82e4c046fb1b8041b7f0850208

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp310-cp310-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 c6d254edba80ff3dcb762d00e76067a3f70874705d4a17352b7280c51a095070
MD5 242069b13ff83d6d9e294030b7f4f029
BLAKE2b-256 f432b13ace0245db3b752ecedf38c4b7172ee06e0c14e6fe2ec683e0c3042cc9

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 95bc0078bde8ace27eedfb672c5ff9e32006ba76e99ceef0f4207a7c56347422
MD5 7af73878f60d3a616afbce8c411b9894
BLAKE2b-256 80c453471ff294cfec751c12a18497e81d6867caa844a3a4facb189f9ae3a6a7

See more details on using hashes here.

File details

Details for the file pyvroom-1.15.1-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyvroom-1.15.1-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 416e699680b02173dabc2514e09fd34add82ee313087de1e6660b1c21e7005dc
MD5 e7a12e481e578c41ab98439abeb8311f
BLAKE2b-256 fb33c97fcdb3dba6d69be85b9e901ccc6e087d7f93e29875dc4c1ca1b19d2b62

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