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.2.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.2-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

pyvroom-1.15.2-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.2-cp314-cp314-manylinux_2_34_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

pyvroom-1.15.2-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.2-cp313-cp313-manylinux_2_34_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

pyvroom-1.15.2-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.2-cp312-cp312-manylinux_2_34_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

pyvroom-1.15.2-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.2-cp311-cp311-manylinux_2_34_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

pyvroom-1.15.2-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.2-cp310-cp310-manylinux_2_34_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.10macOS 15.0+ x86-64

pyvroom-1.15.2-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.2.tar.gz.

File metadata

  • Download URL: pyvroom-1.15.2.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.2.tar.gz
Algorithm Hash digest
SHA256 4d1350b1447b1c20f6b9fb825a962c4586c683a2ce3a4c096255133fcf226345
MD5 6fdfad574195a1096819778aa65a5371
BLAKE2b-256 ebb6481874cc4ce8a08817519ae1e7c4330a32bf9ca5de9d2307f09fee1606e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyvroom-1.15.2-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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 04cc4520e1a441051d6ff9422629064659f60e8855025d05fff3250f790630ea
MD5 7c8d9f199ccf322f6308406dd7f6e6c9
BLAKE2b-256 b136a11a81317f70ac8b56d0c757172814e3956d9adceefb31d4934ab0b25c81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 9ad0951eb962e694117aec11ce7f38a2c436403f8c7290c9c823a6ff615177ed
MD5 307ff510bae8f2956c2dd4f138f5be50
BLAKE2b-256 ceeac36ecaf4d357b05a497db9a2adfcb726f8e4ae647126c1616bc45a387e94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 5789c8835d2d3cba1a6e3fcfa9ae7bdc423c911050afeb1a5ab6bcac43ac5a27
MD5 8a09a78177ca29f4539647a29aac88aa
BLAKE2b-256 ddad5f9eb01e943e2b44ab4aae75bff83ad7cc18f80e06809bfe76568ed9b21c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8b6a3b7e5f9775e1f6ad17b68a2d99a05cb19c4767608ebb1d97d0805e3f526e
MD5 3237313a5fd184270092c7b45677f01b
BLAKE2b-256 f215da8e4ac99ac0e74bd08b194ca62c9e909a8be03db87f1b932147aa11df35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e8366fe1f9a6205225aba1c17a8ebdf6e1bdee37e84791ac9d960b2f1280eef9
MD5 73934d16760f29a43d1a82862ebe33d8
BLAKE2b-256 d8208f9086037278164aa313ef64f32c72a84e88fac721eeaa33e978e2f38a28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyvroom-1.15.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6cf2d62df9e9e3cc3c0f22e92441bb428f81a09aa17a0d49c97b2a86347a3248
MD5 eeaffc40708d7500575d6fbb482edcfd
BLAKE2b-256 b1463ea0ea5cf8f9ea6ac38ff9445c5bde4e2210366f4cc73356dcacb75a52cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f5b1271459914a8cad1b111c73e17f11890361aa0f5325880855a8b8ebc1e992
MD5 1eb8c6876614ecf37f22c4ffd84b87cc
BLAKE2b-256 d65b0b3a549fa35a91fcdb0338b3900dc822dedd52cc8ae75c1247088dd6b447

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 d6f89b81cd14d3717f658de5c8af7cddd930e38535a06cdef4b3a22c01e3a09b
MD5 976298691465d69e6f266c3689b5ea19
BLAKE2b-256 29f5d034f43a2610b182e79bdf035a6baffef8eb43dd5b5186712afec9003c17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f872e1f3fa549c65b541a84b397dbd2a2eb539d04f8bdcf843528c332d1346a4
MD5 a68fb21d8f1d24e16487cd0a99f97065
BLAKE2b-256 9cdae8a4c981c45baffbcf88355a5daa51c0c6ab161f51e5cb5201d9424f25cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7d7828a9c7f251bdfaf463962ff6da0fbd7ce8b7ec63cfaef78f79a1d27e9066
MD5 4f0a95f2a70c06e28f2afef2ee228cc1
BLAKE2b-256 2c3b423d41789e078298e403c79a6b5490402280cd620123cc49067187566474

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyvroom-1.15.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aa5458e36461643970281e5768cebcfc882486a732476842861507088c09eccc
MD5 3d2912b88ae89be5697668918cfac4de
BLAKE2b-256 b733c66a66ba1ced9b674e994a4374e9c297c87c8a3ca143a6337b45bd8b7dcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 4f983628fcf99f4fa5aa879166798c84dd8ccbc4b70fe5e39d5c5914fa256eb1
MD5 ad8a9e390548f6cd56c5d2f5255c41e3
BLAKE2b-256 6512da454ff1ba540c90cc4e465de70f7ef22d444a3c253e759cca6d69940e14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 87e548e0e89812f0b522d9a95663652db96392babed9b3da58c1ebd586947519
MD5 30ab8a860f9d5c45b82d95d2ed3619b3
BLAKE2b-256 3da61494ed425f61e3ec273a9a37820b5c4a8f4055059d71f2caeac3fa77aac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 39b780dd0106ec01291b239997f93efb9644b0b5818d5033a0d9067a1b8c72c5
MD5 ba8ca66253d9877209a2d2442c1ca9b2
BLAKE2b-256 42988ed42c446c334ee28d480f08aede4513f00d9efda2d617ca99931f8cba8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 fde42a42531f13493dcc7a26ae67f2dec764ff3b80074d0d5a1a1e01865811b8
MD5 5a4f285434034e626920e899e0458212
BLAKE2b-256 8ad2e6a386ce54b689b1dec9e7cffeb157d0c7aa295535fbaf05de3037671f6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyvroom-1.15.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ff9a8a1779b874b7aaec763cd80a1fd47eea821acf5b9b0a422e74ce3fa32261
MD5 82e98a6d9998103bfd19fa691b5ae3a1
BLAKE2b-256 efb795c6de7e418ae3af8f1ed87653b2344093c032bdf4d11ba1db158b694531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 7da6ee7629f88bcad1524e60da212b56c6c604960d67e3c94062121e5cfbdbb6
MD5 3224af9388304864eee9db076ed4ca44
BLAKE2b-256 6d5d21d6ac49e5f438c8247c667b270c889ed81d08317dc9b42a9b8a2da2e84b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 5608b52d5d2f10d5832f568f5d1a48a7b23babb4a19d86d5f0d1cdda6c43df2b
MD5 0d8fc21ff53fc70718a42e3ffb923cab
BLAKE2b-256 01acd0ef4408081b975c277ecdddbedaf47dcd3f3f53ec9e776179f79151a08f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 439522ff4e9dfc62eead3960aa4d33154fb912bc2060198684b5cd2de4b68dd2
MD5 45003c4b80ae8abdaad12c98e581c32f
BLAKE2b-256 df8ff412ecd03608dfaeb866c3e6709f26e2c633d64526efb5ea5118085e65f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a6a5e224975e819dee91d27a94d54a291330ade8851aa92810de876a7629370a
MD5 2a7f6ecc120868f671d9c523c3f60bba
BLAKE2b-256 cfcb333f8f38364176516c643affda6e4d1e48a3149097fd0f395cddf2f32eef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyvroom-1.15.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4c160ca0ba7d9c7cdbb5cc10aa4850ef9059cc2866f30e8a3f99a47e722505e2
MD5 4fb57fafc234548db1786bb3c9f81df9
BLAKE2b-256 7a3dccba273588a7c358fb2d97a1324a6c6bd1615a64f4781ba00bb1513d15b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 4233178909047ddae68c1c2a0eee74190503b0551ef13fe4c76fdf1d2e88f59e
MD5 c302bc35433a9b4dea1b92769a6e5700
BLAKE2b-256 4d6f6dc13171f731ea633b6ecb75776e7f3fc2ec3683a92826e51772d7d0b714

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 1387a441d5ec6300dac5c32dc93ecb02d8f753dc514388c1c5c13e771fd1fdac
MD5 d7673b4b317599655b638e87230be259
BLAKE2b-256 64cef919d5dbd5ba6ac2792fdb988fc74dbf1baf571fb5433eee32d247efc6e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 14987fddae7ef3c19331ca9b5a5344a46b3504c4db003192b4310c1ef8b4a9e8
MD5 87102251283c40053e4ddff35f3fe7a9
BLAKE2b-256 ddc69def6cff0c63aaf6d5e18676676ff2721742802c4e4c7b3b327434a10155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvroom-1.15.2-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 380ebcfb9b62f50c1c45966f51224dbe31647f9e9f538a3b7a6fa807267d8e09
MD5 bd5bedab85d6f2c3dba3cb52eded5d12
BLAKE2b-256 4e7323f1cf5ea2848d5dab7bca9ec09df0f6cc140c8e59d4c38471e5c99b6544

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