Skip to main content

This package provides a Python interface to Rust's globalsearch crate. globalsearch is a multistart framework for global optimization with scatter search and local NLP solvers written in Rust.

Project description

pyGlobalSearch

Python bindings for the globalsearch Rust crate

Website | Python API Docs | Examples

pyglobalsearch: Python interface for the Rust crate globalsearch. The Rust crate implements a modified version of the OQNLP (OptQuest/NLP) algorithm with the core ideas from "Scatter Search and Local NLP Solvers: A Multistart Framework for Global Optimization" by Ugray et al. (2007). It combines scatter search metaheuristics with local minimization for global optimization of nonlinear problems.

Similar to MATLAB's GlobalSearch [2]. The bindings are built using pyo3 and Maturin.

Installation

Install the Python package from PyPI:

pip install pyglobalsearch

Usage

  1. Import the pyglobalsearch module:

    import pyglobalsearch as gs
    
  2. Define the parameters of the optimization problem:

    params = gs.PyOQNLPParams(
     iterations=100,
     population_size=500,
     wait_cycle=10,
     threshold_factor=0.75,
     distance_factor=0.1,
    )
    
  3. Define your problem:

    from numpy.typing import NDArray
    
    def objective(x: NDArray[np.float64]) -> float:
         return x[0] ** 2 + x[1] ** 2
    
    def gradient(x: NDArray[np.float64]) -> NDArray[np.float64]:
         return np.array([2 * x[0], 2 * x[1]])
    
    def variable_bounds() -> NDArray[np.float64]:
         return np.array([[-3, 3], [-2, 2]])
    
    problem = gs.PyProblem(objective, variable_bounds, gradient)
    
  4. Run the optimization:

    result = gs.optimize(problem, params, local_solver="COBYLA", seed=0)
    print(result)
    

Developing

Prerequisites

Setup

  1. Clone the repository and navigate to the Python directory:

    git clone https://github.com/GermanHeim/globalsearch-rs.git
    cd globalsearch-rs/python
    
  2. Create a virtual environment and activate it:

    uv venv
    source .venv/bin/activate
    
  3. Modify the code and use Maturin to build the Python package:

    maturin develop
    

Limitations

The Python bindings are still in development and may not be fully functional. The API is subject to change. If you encounter any issues, please open an issue in the issue tracker or submit a pull request.

Additionally, the Python bindings have limitations:

  • No support for checkpointing
  • Maximum number of constraints is 1000

License

Distributed under the MIT License. See LICENSE.txt for more information.

References

[1] Zsolt Ugray, Leon Lasdon, John Plummer, Fred Glover, James Kelly, Rafael Martí, (2007) Scatter Search and Local NLP Solvers: A Multistart Framework for Global Optimization. INFORMS Journal on Computing 19(3):328-340. http://dx.doi.org/10.1287/ijoc.1060.0175

[2] GlobalSearch. The MathWorks, Inc. Available at: https://www.mathworks.com/help/gads/globalsearch.html (Accessed: 27 January 2025)

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

pyglobalsearch-0.4.0.tar.gz (278.7 kB view details)

Uploaded Source

Built Distributions

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

pyglobalsearch-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyglobalsearch-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyglobalsearch-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyglobalsearch-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (913.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (977.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (994.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (920.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (880.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyglobalsearch-0.4.0-cp314-cp314-win_amd64.whl (680.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pyglobalsearch-0.4.0-cp314-cp314-win32.whl (627.4 kB view details)

Uploaded CPython 3.14Windows x86

pyglobalsearch-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (910.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.4.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (987.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

pyglobalsearch-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (808.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyglobalsearch-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl (854.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pyglobalsearch-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyglobalsearch-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyglobalsearch-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyglobalsearch-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyglobalsearch-0.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (974.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pyglobalsearch-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pyglobalsearch-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (916.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (873.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pyglobalsearch-0.4.0-cp313-cp313-win_amd64.whl (683.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pyglobalsearch-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyglobalsearch-0.4.0-cp313-cp313-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyglobalsearch-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyglobalsearch-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (912.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (976.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (992.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (921.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (877.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (813.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyglobalsearch-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (861.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyglobalsearch-0.4.0-cp312-cp312-win_amd64.whl (683.9 kB view details)

Uploaded CPython 3.12Windows x86-64

pyglobalsearch-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyglobalsearch-0.4.0-cp312-cp312-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyglobalsearch-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyglobalsearch-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (913.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (976.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (992.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (923.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (878.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (813.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyglobalsearch-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (861.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyglobalsearch-0.4.0-cp311-cp311-win_amd64.whl (681.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pyglobalsearch-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyglobalsearch-0.4.0-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyglobalsearch-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyglobalsearch-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (912.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (977.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (991.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (918.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (878.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (813.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyglobalsearch-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (859.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyglobalsearch-0.4.0-cp310-cp310-win_amd64.whl (679.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pyglobalsearch-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyglobalsearch-0.4.0-cp310-cp310-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyglobalsearch-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyglobalsearch-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (911.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (977.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (992.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (918.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (878.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.4.0-cp39-cp39-win_amd64.whl (681.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pyglobalsearch-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyglobalsearch-0.4.0-cp39-cp39-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyglobalsearch-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pyglobalsearch-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (912.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (978.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (993.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (921.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (880.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyglobalsearch-0.4.0-cp38-cp38-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyglobalsearch-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pyglobalsearch-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (913.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (979.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (992.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (918.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (884.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file pyglobalsearch-0.4.0.tar.gz.

File metadata

  • Download URL: pyglobalsearch-0.4.0.tar.gz
  • Upload date:
  • Size: 278.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for pyglobalsearch-0.4.0.tar.gz
Algorithm Hash digest
SHA256 f83a82019dc85d1b5f90bfc36dc1b2c17afb15bad958e3893330c85f69e2ef24
MD5 7c21e4ce8f05e0d77b4a56eccfce4c62
BLAKE2b-256 8c52dc7ee66bdb4a8c18277f15db5e7bc367742fea2a38c5ea848911cfa14020

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40f0c1d92306233e608ba136cb998236fb81687290562795374b7d6b37ff885c
MD5 291c334c55c5a02a3e44be1efdc43af5
BLAKE2b-256 8c596d3f42e6f5de3008799188da100822aaa0e54a0913938d02e2624ee5b8d4

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d2583ae09126ce3fce23e40e63681c4e646cdcd3a5393499a63bcfb451ff349
MD5 fa76a1a1a64a53a447a678de1420154d
BLAKE2b-256 1814fddc7707be69716593ea7d3853a1ad4a752acc803e96ed7c9cf99ed008cd

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9de53d7885399c3ba467bff3c3900c49547bed069ce49f687694cdcbddbadd4c
MD5 f9babe955a8590ca6aafca69e3160325
BLAKE2b-256 acaecf5a784392574b60a52a2b4de8cb443e45f2b3271b97c6aa87cf7c62465e

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f741a9cfc4701ea4b392542a6f3201b0f1015be8d573bfbac432fc5ac0f299f
MD5 f15de08bf5ecf65cf4d63dbab2ed659e
BLAKE2b-256 dffb3fe94498ebaef2ac36adffeb4d7b96e8b05321829ac1d055387624cf3602

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d5b94d9a93ec47470ed7dbcb5a3ce24189397890d47ce7e7e33f883833a960a
MD5 afa6229fd19bc11366eadad29d52d5d9
BLAKE2b-256 7e8f2e3c95be21e68e55fff74fd51a0d4438525decb6a17535aaa86195b917d5

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fd23f775701abb26076739b505177bb0b2df2d1a356080be766230083186f6c5
MD5 f14c0536f559975c29c84e6a0379dc87
BLAKE2b-256 39f8c40440f9dcc7c5200c1a07725c15a4a7e6c4f58754a00b372bb453926566

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11e8f5c44340270e56a64e29c065f4697faa8017389556090ddc96cd1ce8458d
MD5 1c2cbe69a1b265694680144b59ce288e
BLAKE2b-256 a28222c802ab670184c62d62ee440ec8e1cdf451155a55e49c43da87040ae6cd

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 969144b9ee85b58cfe0f9a24b9df284bd20076de2d319c89dd4c59a9a43a1ec4
MD5 0a4e226ee8086a19385c09770b49f86a
BLAKE2b-256 7d67e04a470f8dbd40f1bf7154fc648221d020d7c0508dec08b5026bc1d0b651

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 64af99b5f994d2e4f58c9ae26d43cc5334a285ee9d2c41623ccb260f4f9578fc
MD5 0986395550a426e8b9545b4834bf4378
BLAKE2b-256 43354454a8b8e670128039e4426d47419e294e6c2d0120f6637d1cdb7079ba15

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b9d04510814ae99a83b1dffed80f79015f8e8213dcfe55507d50d3f2a4aba9a
MD5 9a837e9d2a4a291fd95172901a49596e
BLAKE2b-256 1636f667d910ad3920713022c523bed9a524a1eb01fdf1f9901c546f982bc164

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0e008f5469cedba8a9f05187c85daddcd099ea17e257ddf8808c424a4a301327
MD5 4973f486299fc8ba9a82425a5f7c0548
BLAKE2b-256 0e05d31146da59930c15529129694bd080bbfa8e4cffac1188efd910fa829162

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6bd4dd037fe19b5a7786ebce562f31c4d3d158f233975d784217403f9effc8fe
MD5 5567a3edea7456e2e3b30ebf815105b5
BLAKE2b-256 71b20a55015027fd44012823513df7df8cb2a784f311c15ce1e43dc0a257e70b

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06bb91b4f015bf3922b7b4b24be0f791186c9a5f45c3017e5a17016fe141ec1a
MD5 54b2d0c9685a45c34fcf346e9366ba37
BLAKE2b-256 6198bbca162f5a54e1afde589168bdb913634dc122f2f90c06b2c9b83469960a

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c5a97ce81ab3dd0993244f8d16ec6e4047f03958c3aabb83e1559a30c18b19f
MD5 75dc44edd885f290fa34407f7094fd48
BLAKE2b-256 a08f383ca7c15835881b283ec48c3a4767bfe528ce4c87eb05a021f5ccc0ec65

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fb3e4dd31ba6b9c0aabc172d60f4ccf63679177ed86fe97d80ca6efd2db292c
MD5 ad6ce0b438a23d72e7747864847c9261
BLAKE2b-256 0dfc2483961d076592f669cfd801f0a00a356b3ae5b9462e90ba3a8ef83e5383

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 abde1eb9d7c16e62a255f4b6dc68032a8693161af5c5177ce3acce9c750d541f
MD5 6a027a4d95ec304d7e683f5907f6c377
BLAKE2b-256 7013b54983ad985c33942c774a58ac6e5b47bed50762d44ef9cc95b521b8f64b

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6357b7d0d103c43f2f72d137ee3766525f9261eb6bac3cf47bb306494cdc1c7
MD5 8750e4e345462ec29247016bdc9e11c7
BLAKE2b-256 fa61553b8695acb59d9a30cd6bb69b228ed488fc31014a6a211db60af3d78b6a

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7eaff48284ce39e683de166038203a9429ef68a397ce7fca46a85040f59a0d6a
MD5 a1f16fbc02cba52f2546e885df1773e5
BLAKE2b-256 f72b213125ff9a838948582cf9e22eb6e01b75ac8b9a50a7a2d323ce5ef05625

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bb9c54747cec727d3200b2f0c42bf93dd91b6386e8e0a233afb9de9fe8bf1257
MD5 414ed7e0cd8f05363e322c9a7c4adb23
BLAKE2b-256 2c00d062c3e4a4428a508b70222d154c445983b15aa2b1f592b7e70f7b69b080

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5dbbe1d89538d9e04f31316f875d0967bfd7f28da0864c6a6c42f7437791b7d
MD5 1fcf99f95aeb2836402912ab14726f53
BLAKE2b-256 a3f82de15213b8280f98b11c69b3f72b29bc6e8ee82e45d1d7c2587c746796ef

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 685e8b180cbba55d6c1c4c37c08075aed62192533e5af4895d145c8264a8082c
MD5 3241fede3eae2865ec9606538cba7d34
BLAKE2b-256 0f7098aa7211a5a110cff2a343d616cbf581a26ee820c5ea6d542a5193fd8af5

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42a900de5d183e0152deea253ccb37d41bb1a9ff51c3a5a56255edd346476772
MD5 8a46660778bdfa0e2527a7964af5771c
BLAKE2b-256 8f055707d452e1c818c9c61a3d50f8180a8301cca0f3ff0c1bae9b86906f94e4

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 53da43f25590901478ff91d74a7c6113fe7c180b7a5780e78b096e96dc5392ee
MD5 14f011c157e764cc1f9bce08fca242b2
BLAKE2b-256 9ecdc0eb4600aebc8bdde9f20c3c6bcdc7e5ccee5f2d0be145debe05ac36ea34

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c1255a716526d214e2120bd44eea44a178710fa717ce326e6dffea2b13785ed
MD5 b870815520738ea6b57eb2125fcf4226
BLAKE2b-256 b1eedbb0106e84cdc18073e55e12cd360e57f97e6e616b6116e34502145b04fd

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e495d2c290f2fdf2a2c5ca1075fcb7db3a542d6fb0be4972d712cdcb7f11b7dc
MD5 0fce72108103b7da00a5c8012ceabbce
BLAKE2b-256 8df6ba7572a3990544092aa866a701f36c789c45c8d689d4afcd3f35fab06976

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 285ffe3cc73b1cc0cbde65298b8b45ff1a8290d610b57ac793901801e15e3ac6
MD5 70ab8e439651e4e9bedef2d372c8f710
BLAKE2b-256 72befb15844aa2737ccec34aa7e5c569e993a599f4e8cb32f060da2f30d001f3

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ff143b718cdaf63713d873eeae8f170ea2075d164b659e760ad105a06631b3d
MD5 0235b1dd7f0e2f04861fb2828d11d3f2
BLAKE2b-256 ce8320ede8dbcb839cd04e5ea9b47e9911f6f1e246a0886f6478636a243804f7

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd9ca542a72a9ea3d40daa5a380ec23f3e43bb20a35040beb13870d7ce6c41a5
MD5 66acd61b690de44eab9d129c65850346
BLAKE2b-256 927efce06350c6569d526eb5b062cf494c1a2d9cf7cf399a30e3661bb1d2725f

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8158663496214e592de3c50bf7b46aab85031568a841b65d1939e1e47245f67
MD5 fcf115151c19441ce2a39f98fbf71d9f
BLAKE2b-256 59fdee9b9356360e7151dd3e15b615ece26280f56e185f8755abf9504feac335

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e79a94daae3d88ae050a34e80f43c4481eef61f2acedaba04364d5c99dbf603
MD5 ce8e69a2cb25c62ff738356d72f38bdf
BLAKE2b-256 a0a0f0979a0f17787ed48ebe98e1b21852590310a653604a0ae2526656107a06

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 35e873ed4677c855933bfbde1fe8cc2123992127ddfbac93275055c003381f2d
MD5 791ea2a767f714afe8855f0d401046f6
BLAKE2b-256 bd00ee22f90e648a541052e6811205a869f9a618536c368254468bf00247dcfc

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 65b841231c51281bb700dcfc4dfe6e883dabbde71cc9ab3cb5e868b340ad4b91
MD5 47c9ec3cf4923c2e7215dfdf4a01b7de
BLAKE2b-256 77e7d4ebbd6bddd962c2542810711a33b76292c2a337ae165f042ad22cf3467e

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1427ed5a9ca453b9d08858478f2560d7195f4a01f7daf983a8e72557206d8b49
MD5 25c27f36a14b24bf280d868510a9b2f3
BLAKE2b-256 8411228a1bd6cffc5db49f4ea05ad0343f857b495ac50b06b5610d4635113a16

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d4701e896333a493794c01e539c21229cd49c2276d406880c2cab7af190c0146
MD5 3f1c5270be85b19ea5d0b7ca2fc017c4
BLAKE2b-256 6a912a5c5b4bf04d961ac530eb01396ed0b99ca3a1df5b692614b952ed71cdf4

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ef754a3515d2349ba2549d4339fe4e795ba7d1dc87088340294445a017f5d72
MD5 a64e82d1fa213957a250c1f0388f25ee
BLAKE2b-256 8deaa2df1e470c62510a293b5c264b4a8acecc826dc9dc5f1120bbc2d6fb13b7

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 505c4e6f5fcebfc4913718b8f8f12768535770cf213be322fb1b15b8d9d4e5b9
MD5 9c00485ac2c917d8b75b21832036d6f0
BLAKE2b-256 af6248ce0e1eaf94d1f56a8bbdc851e40b69a12270fe495381eb828c2661f0e9

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b07ccac7136ae092d7ca30a9ce269c67d813a5cc1ff197353295e910119df93
MD5 7a162dfed25dd8783dfff382f34ae3ad
BLAKE2b-256 8ac79f2d1f40c4c377496f6634a699bc06009def3541a7d3432307d014c680e4

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 53d633e40a3b2bbcc6f490921b00c3ab65e0ab21e1642ed95d37d02fb4ac180b
MD5 849a48ce4f8cc5087b6a62d3c8c542c8
BLAKE2b-256 20005e77bfc284fd1d4f3b77d8e8e36e3dfe2bde2b2244e32680fc2613b08a37

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31a92ed01ed24f933bd8d909ba4e602dca832728d0328f841797d2a82d025f06
MD5 e2beddb2811ab14b34ec67cb2da66efb
BLAKE2b-256 d1fb559a059c7e1c06344d4b8894946600dca532f1862f3d1368285089e3cec3

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ffffdd2832476582b9a30032fb1727c0c53dba960a45c612f9661632706f2cd9
MD5 30fedd1d2640f0464b455bdda4b64f74
BLAKE2b-256 bf77c779f0f93703f7a09544be0008ed2a9e0ca75381b9dbcc988bae1944cfaf

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 708ddb38ef719ce4d3ad04ec91e893ea9c178ab42eba34eff3574d77d09353c6
MD5 bcdb0603ba54c8261ef514d53b53269e
BLAKE2b-256 a8283028a03fd804eb77710e0976a7f7581a53bb8b7a126521c94ebcf330ebed

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f853e83abfba66a647d3cc578245650cbf50eabca4dd67183701652d13e340e
MD5 4e46303ec5c1ec48d8d65aa2dfa8b746
BLAKE2b-256 5865a75496024597c6892cf40b7d7f97a09fdfe591726630ab789902df97ee16

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40c8f91ca938ae583ab6c29d1d796fd951cec4f899b030cf3846472ab465855f
MD5 a3bf4fca53d85c408d03d299e551b7fe
BLAKE2b-256 a6ed56e518ea992811dd8b7859c9f7b183d599afa2e421d5b2d2a305ca7e9f49

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ff9a6e8377795cc5f006263e02bbe5c2aa9ebe5fd236129bab5238e531926de
MD5 df649c630800aa18ae24171d538846fa
BLAKE2b-256 12bf9e915f847dfe640dfa9ab3ffd198fb3602e1bd6b9ee420fb06a1680f4176

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8d462bf59a2bc4c1ddc495bcbd8e798ae5148bfcd622074f3fbca4bec31978c
MD5 0cf5e9bbab91e7ee8ffc060187d10eae
BLAKE2b-256 8dcbd58ea32378477f083df8fab68844541c4417fabfdd79926b587ce430d84f

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 092d070ec9c88e6df25f2637af35cdf2574baa3c0781080a82406276b2f9fb83
MD5 ffc9f68c9c3efd58c1b5b2284c634222
BLAKE2b-256 3ae0a819b987b7e840ecbd285c61a6e0fbb271f70c49fb3dc0cd4f45d2fac471

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3476850dc5425a37f66a2b600bc2728b8985a09d6463bbfbe366ad3a27617b06
MD5 e74bdef7050d4adb0a3b1fda26a15a6c
BLAKE2b-256 1f14248c1739457a049fea18fde9932cab5eb3d0db8b3097964a8af48d776e0c

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ce4d1d5e83ff84ea23b20e2462d7463cad5ccc5300b74a4c5e2fa4d10921910
MD5 437a854e54e408598cfa1c1725705b56
BLAKE2b-256 de8a034e8ada807d3015606c3d0709d552b18a6e10e7787ee15715828d19a60c

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 921100fbc5286c37526901674eaa0049ce5bf07a988bce3148c11c325ebbcb70
MD5 f8a69de9bf1afcc28176890d306d591d
BLAKE2b-256 3d2c88c4ce2f1c32022e7d32386fd3150752053a3fd4b48deb42af7864af26cd

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de6fcb48e5ce0b0e8d6b027a1304042e0d5b3ac88d2c3e3f46342a3e50db2308
MD5 c84b47010cc4666ba6b86bfd291cb2f9
BLAKE2b-256 33b3cb27f42bbd9e5046f2371a133eb80940ca8a1c20a61365c86ba8e5f771fd

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a2c53ff0f533bbab3b14b2ce9c9bfaec2e91e8744378e4b946baf61ea0b795b3
MD5 f18eca454ddf378a1754742dec1dbad7
BLAKE2b-256 5e2cbbc51c78e5aefea77d409cc77729e5c7c8b5b0e52a4b70c06685b5a720f1

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a03ab1fd7c84cb526d525d70c26421059b49f6fc46c058e417aa52720d7e10d
MD5 0ea70d72f63d4da31acfa1584ce8e4ca
BLAKE2b-256 b197209b135152920c9a22b2eea4b75d50ad4bc652d623d998f57d002ef6b04f

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42471b563f8b13cd449a8f190f3914d9325b529ee44caa417f1bd8616d065d63
MD5 109dfa7bc80bb0142b9b72ca6afdd77f
BLAKE2b-256 d49619f70fbcdb027a90a8e8db1dd59dda0108b206321b6f43df0a526c7f4b5b

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e725edddd2e7dbc58c95098286fa3a11a8579410f35592f15dd98b697b5e642
MD5 f7fa0f24721e13f1f6b91d58435e452b
BLAKE2b-256 622280dde5b1b49183e5d2a706ebfa8f00eb217a030d9990bc80d8203cfff18d

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b119fa96d168266243c932dd4ce5b92c0fa5389d79f7d63d7b4b2ba59558553a
MD5 2884c306607d7fd4f8e3cc4d5b41a430
BLAKE2b-256 8899813ef154215f107d2a34ee632b66f027e0c6283c70fdce8f30b3aaaa39a0

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a820e57aa64bb4d3d14245daa0929ef425186c0dee3211133573737f4eb4af5
MD5 e184d68243ec6e61c4f3eb41503c4dcf
BLAKE2b-256 d5e33dba3150b812f6faafaf178ac6115ba59a4cb037ea19b2c95fde1b8e4e13

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cca02827322b84cd72c9a0a2796dd682c375a886438903e87796782a73085429
MD5 94e5c9272f0770c732368ad1e3c05a7e
BLAKE2b-256 298fb296340b9747c8015c61aec23c86b7cfb9d4d43c1c766db366739a3fd54c

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c12fd3a9b6ae385402a08cd2c680915492486fb6ad68f52f09b2e884dbb1ab68
MD5 81f73c189f2f66ac35b7f04815aad2be
BLAKE2b-256 1d0e466141ffca2c63445bd2596cc4436851e2b0803e2d87085c24f36dd68496

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0858585cf0de2a2763219fc04b90033694292cb33c489a56d2b0cca8545e1f37
MD5 2aff8743b85464e6e5dd14d5c5144d72
BLAKE2b-256 7f5153486b4f47571f84beb29fc27d21e1f219162585b87d69b23e618fe323dc

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ceb1d37b830e68b262e85bab1c9695a5d93822b0c7faf284e2d8160300454947
MD5 b53315c62f82830896877bb05b404435
BLAKE2b-256 7b6b8c5a4e2888c06d1e77bb8b9712bb2d9ee78e843ab9a67c6982426303df10

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce23642ec306e31582c2b8e36c7770d6f3c7a7d1dca4859940261ad095ec7b72
MD5 558539262236f0ef06e84b811989b5d5
BLAKE2b-256 d5053e7ddda038058cd64702de67da9d1a63a4d121d5d33682c053f0a8e66627

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6209617e0ac24ab01f26d7392247db215178c57736037fb171cf8180aac0912c
MD5 5f7083c2685726ac3b66e4308db1646b
BLAKE2b-256 97450cfdea1c5ce61b047a7e2273cecb9eb74d91ee5ced477920ff63e7ac4ac2

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7bcbfc6876d87ec7c9d3e9580a52de7d46eb7cc89b2d57331d6f53b72080c97e
MD5 39402099b81e4655c144e8c415ee5c2e
BLAKE2b-256 45870950d340ddf328ebd5c69a53ddbb57052ba5a1fc0b42885955b46be2cb00

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f360dbf03036a8eb62d23144122cd660dcf1b8ae7382d8c4c46f9d3e946b547b
MD5 e8fc1213de558b23e477804f6c8abf79
BLAKE2b-256 8ec30f48d82441196ed4834d623eb4dac4d75d89e8adc2485f0c78031751aed6

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d215d5cb4b7e0af02f94f9e08bed1ca51042d8ed9826c2ce0901ad57c188d91
MD5 b7087b85a5d16a7236669d72519212f9
BLAKE2b-256 52a80cee0543466a9d92474b1755807d98b9e684ace4060b6a49ac3a7dbf6539

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd3e7440fdb352b7a9277beae42b5e39e906832b5d0ca7c08f66431a3217c918
MD5 ea1dc8ea007958054dc0900185fcaef4
BLAKE2b-256 1335dede996fb0b3784e33e633c95bd9680b14714ceba32462758443dcb815ac

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f9dc63354b820d496b7d28c8fd5788f9963ccd33b6104cc56053c9927553dd70
MD5 6c24633c4fc211eea8c1ad0605b8a2ec
BLAKE2b-256 2fea2c26391247126539e9e92f621d5e48d70cdcf21f3bb40eb35a70ffa29ca1

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c9f0e07a8be0589652950e179fc924f574931b74423e89a611f08925b3e0483
MD5 d244060ba046647cdabacefce85f550e
BLAKE2b-256 12748f46ed4d0eb52292bcab3e42212ac07a1420d4b27eafc50674f4b57007fc

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f10492b681aba9c123ee649c390df0c99048c1f51d95a59c1e8b621d40b3d284
MD5 02b06cede3610ac8a001c7b4244102ac
BLAKE2b-256 dd69c0e00e0099d37628cc7c85e864babde72e7a5ae657a59946be142dad729e

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7122d4693f29b7f5885f04cfa415a10facfb3a7c1e8a39c667529491c6df52f4
MD5 ecac43be8248241414e25f73be98b466
BLAKE2b-256 06c6510139bad6a092f25e59cfeccc11221876c37b3ba9163f00c5a72bb5532b

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3a21fa00c18c4de2dd01fa4c37b433131ebf6bcfc55fc2455ecd8d9bde4a471b
MD5 7d19d295a51bb7370ae1b024a0d96ab1
BLAKE2b-256 65b03f9f77c4802ce00e8444a6d1653651cc3e673efd2b9e0da7473b17bd7323

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5be4ea3bda9a7c16f011b1a9c2ced32dbe8ccf035ddf764bbcf8b04bf159847
MD5 dab53151fce4f616bf53846f1bf69943
BLAKE2b-256 5ce0c86977fe080104e0cc4162efc85de278f9a7ce64f0046db26b74d6c4a9cb

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eaaf038a5dddb81dc2fb0293f3ac88d3a012bdbf049cec05ba6f9707a362bb73
MD5 eb16694c1bf057ed459136fecb6f2361
BLAKE2b-256 68827b65863f0e7fd7fd74e3e0b0faf15fc27943097c7f6bdb1910a7f5800c50

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5db950c843d5102bc39116e9b46546556a0ece017a1513c79f8189b17cf684ef
MD5 6f5f733b7daa141b158e953b42950069
BLAKE2b-256 3663070b51031e41ff2a11d31b28f81c558ad603a99cbbdacac7ff9857061276

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0494908c5e0b45c2053577126ed216779762e2b34e1c898ea66c8de950be22b9
MD5 53e1111c7e5d176f5d8ebb6db8864329
BLAKE2b-256 aa0fd62f68bc2bca3edfab0a6d375c44a04c2bcf137809f63ddb71fc09d9814e

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c63b18f2e9da5ac31bdf2a99993ac913f367fc9632d047e2161c476e5b293e3d
MD5 e238529973a7f64514a4969a4f011c6f
BLAKE2b-256 391897ed62a66af1e6636b862724cf3e98e580046d620144e98b2813026d4541

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8406fc50947164783ab26bbfc2fc32669a4ae32ac9a5d89fef6d324796f01fff
MD5 1816de6b55f729e25f2afd7c9d72d51f
BLAKE2b-256 a2360f1fd7e774f74ff2fa732891c9de7715a08e2b820937050c08b8f44d76bb

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8da426d10afa9057f1602862baff6b4a7cf676e033e68e1a0f9b9bcc92cf6adc
MD5 fcc5f8a6c4375da361c5e40539adeac1
BLAKE2b-256 5f274f9feffd146ccd3dde6fc653ff0d0403076b04c80d9d29ec552d6cd37a92

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b424da8065ba9c276e7acdfa04a563d724ec3eb9b481876fe8759573ebeb52f9
MD5 e12e115b736a29b1de13f3a8f088bdcc
BLAKE2b-256 5189f259bc4eb6452794a20962c2c0470c092148a89aa2ec1cf2e1d82172e3cf

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 951261360a33104d47eb763ce3eeac3c51cb7fec608ccd2e46eab59d75ad29c1
MD5 d223b361bd90756f387d2e6b78b75b4c
BLAKE2b-256 0fbe9fb6c6f1a48c44cf0228a1047f2a977a1354793dfd09e4badba7e99786f8

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 908a66aa4144cd4d9e29ba411162d066e59d3ac8be83936ef3d27526a9b71d93
MD5 2a37358d3c4a12bbad73a2a7aa532a62
BLAKE2b-256 6c1465a5daa41c0f7eb9dc2c110a83b5eeff43ff710f115ba995a8944ea9fe06

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f58121af38c770277e53e6571de195700039730d59c94ebfdc3d066c5aeb8e1
MD5 8ddb68ec5862d9a6eeaa5c5af2c86948
BLAKE2b-256 a5f6ec97d07359b69a60579e3e9d6e556b180433b25abf2cf18690a33f0f2768

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31004592ca075951620ab3a3ed31cb452281de779ae10deca48da82dc3576324
MD5 21b43512e855cc4a5b9735e21cbfa498
BLAKE2b-256 85bd0f28be5ec1a8b3c26f064d77b732fc610fd1d0e684660f1bbf993fb1f73b

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18a472d3cb7c3b543445dab585f588dd216135bda8aa871cdb428fd3da0a4849
MD5 f1982ebff396df064da0d4968c387cb9
BLAKE2b-256 88397470ffddf512f04c2e265a90bd35cb04e05d75ee10464bff42cff443f06a

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18efbe4d449db01decbd97b0dfd77921eba0a450f82ef25ca9f4363fb832bff2
MD5 06b67239562ec5d78b4f2a18b867afab
BLAKE2b-256 84058ce1543f297ec07d1eaeaa42199ce1ff527fb44cdb8cd2b009911c1932ad

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7893c5452627bce98b98298de08b865098a2c995a1bef91073c492fca0ca7469
MD5 dda6d1d69391c0f23af95b2ee1f7f190
BLAKE2b-256 02df84e01bea03cff6128b5883f714c61c1b8db93a086fe797a2a9a486b6cf13

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da0f9b5948cff888437ae771ec80b5347795b3d34579a7639ffe6be06fb67992
MD5 fd2172d5a71bf0a22b4ec9118ab8cdc3
BLAKE2b-256 11cde54b5e4adaaf89ad77ecb499432b442b70e1b17d14ad48dcd7f5c9dc2ab5

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d80744ec7c49a0cb66e4e1f2898d13eace562d0cd3d5009a52aa345bc3f1522e
MD5 6e6acc0acb22d6886d528d419dd36348
BLAKE2b-256 14edee99aa762bf952a0257637202f6859e14e3383a0303a4b9d53171645d8c2

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c564191183be7be3c0f1dded482e0bdcff9d133dbbbc89a46fde0aec7114eb11
MD5 616257c3553c05a30bf1ba9de067d30f
BLAKE2b-256 90d32df2ad8462a96ac446a75c7132408748d8337cef52accf401708277cc905

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6975966fe8c9d5222ef56fb0fec2bb99c1fdb16c29b14aef66a3aaad1610e614
MD5 cf9290520cc061f90f6a53707fcf4917
BLAKE2b-256 25707307f5d57ec38c17735d495c16d1040c1a4f37279d0c1dfc8ff353d5699e

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a931ada04e25e67cb20d8b4948bcf8b3e4d534191d87ceebf83cdd9c62a1aed
MD5 c87723da4ee81774e22c1d99bdfbf95b
BLAKE2b-256 f50874ab3a0a00548c305724dfb152c5981c52fae05321a46246225d394fb3e5

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b5447e4a54609d9863a5cca3fd9023fc6b1c2d9b6f1afa20d73ba1638403ead4
MD5 2e6e1f4baf3f1a9080d6b2514a3809e5
BLAKE2b-256 11453b6239429e800dc5194919c692d64749235dff98310c3d2318c4580235b2

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b9e9ccf48974d0d8d8e0a6feb8d9149253947c53601ed79b5754334d756d75a
MD5 0c915034eda919c62375706f9452b4e8
BLAKE2b-256 9e719a7751499bceb2f8969d87be20dafe578bb8a7b33a3519191e885873988c

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4747d0e40ca11b4d9b21bafd9733167906a67c5c507661046c5c55a3337db5cf
MD5 515a6527d7fc5c47f5b43a17c727ab81
BLAKE2b-256 a9f68bde46e49414029b1a81c890efb3e95c8b4b192e0be185ae2f4ab61b5182

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90cb10abdba751293233eea7f499952ab9dde412c1f9ebdf3f06ad1974ad24fb
MD5 6ad8f5ffb049de6f8cf6107134d5729a
BLAKE2b-256 bb265231041f4c10a395b6366671206a788f174452da7cac70eb7057ef570f85

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