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.

Citing PyGlobalSearch

DOI

If PyGlobalSearch has been significant in your research, and you would like to acknowledge the project in your academic publication, we suggest citing the following paper:

@article{Heim2025,
  author    = {Heim, Germán Martín},
  doi       = {10.21105/joss.09234},
  journal   = {Journal of Open Source Software},
  number    = {115},
  pages     = {9234},
  publisher = {The Open Journal},
  title     = {GlobalSearch-rs: A multistart framework for global optimization written in Rust},
  url       = {https://doi.org/10.21105/joss.09234},
  volume    = {10},
  year      = {2025}
}

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.5.0.tar.gz (281.4 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.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyglobalsearch-0.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyglobalsearch-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (942.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyglobalsearch-0.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (998.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyglobalsearch-0.5.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pyglobalsearch-0.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (953.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (922.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyglobalsearch-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyglobalsearch-0.5.0-cp314-cp314t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyglobalsearch-0.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyglobalsearch-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyglobalsearch-0.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (995.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pyglobalsearch-0.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pyglobalsearch-0.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (949.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (916.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pyglobalsearch-0.5.0-cp314-cp314-win_amd64.whl (709.6 kB view details)

Uploaded CPython 3.14Windows x86-64

pyglobalsearch-0.5.0-cp314-cp314-win32.whl (649.8 kB view details)

Uploaded CPython 3.14Windows x86

pyglobalsearch-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyglobalsearch-0.5.0-cp314-cp314-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pyglobalsearch-0.5.0-cp314-cp314-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pyglobalsearch-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (937.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (996.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (946.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (917.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.5.0-cp314-cp314-macosx_11_0_arm64.whl (852.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyglobalsearch-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl (881.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pyglobalsearch-0.5.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.5.0-cp313-cp313t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyglobalsearch-0.5.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (995.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pyglobalsearch-0.5.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.5.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (941.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (916.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pyglobalsearch-0.5.0-cp313-cp313-win_amd64.whl (712.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pyglobalsearch-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyglobalsearch-0.5.0-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyglobalsearch-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (941.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pyglobalsearch-0.5.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.5.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pyglobalsearch-0.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (955.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (855.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyglobalsearch-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl (882.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyglobalsearch-0.5.0-cp312-cp312-win_amd64.whl (712.9 kB view details)

Uploaded CPython 3.12Windows x86-64

pyglobalsearch-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyglobalsearch-0.5.0-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyglobalsearch-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (941.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyglobalsearch-0.5.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.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pyglobalsearch-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (955.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (918.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (855.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyglobalsearch-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl (882.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyglobalsearch-0.5.0-cp311-cp311-win_amd64.whl (711.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pyglobalsearch-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyglobalsearch-0.5.0-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyglobalsearch-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (940.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (998.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyglobalsearch-0.5.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.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pyglobalsearch-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (952.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (922.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (856.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyglobalsearch-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl (883.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyglobalsearch-0.5.0-cp310-cp310-win_amd64.whl (711.2 kB view details)

Uploaded CPython 3.10Windows x86-64

pyglobalsearch-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyglobalsearch-0.5.0-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyglobalsearch-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (940.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (998.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyglobalsearch-0.5.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.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pyglobalsearch-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (954.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (921.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.5.0-cp39-cp39-win_amd64.whl (712.9 kB view details)

Uploaded CPython 3.9Windows x86-64

pyglobalsearch-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyglobalsearch-0.5.0-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyglobalsearch-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (941.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pyglobalsearch-0.5.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.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pyglobalsearch-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (955.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (922.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.5.0-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyglobalsearch-0.5.0-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyglobalsearch-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (940.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (999.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pyglobalsearch-0.5.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.5.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

pyglobalsearch-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (954.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (921.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyglobalsearch-0.5.0.tar.gz
Algorithm Hash digest
SHA256 f847fb816232b3626b9e05a4132cc760dacc9780e1812761ceef65971068c392
MD5 44e4581e789b44f64a5f2ad7440cd5ed
BLAKE2b-256 42b78890e54a0588d3a088aa7f81de64e3f87fc06f4dc3e35b08d11be4b34f1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56fdfab3cce3499e92f13e1cfcc7e850f7e18bed57285ea47a35369bfd997eb1
MD5 3b2fbdb59d1581cde2cdc5c6c6bed354
BLAKE2b-256 9a3b65b2d77cf8a3957c69569ad536af7e55a31756397e2e701a0907337c47be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 476422ff15316c2d43cb736dfb47980327731e2e6ee8dcbb490b8fdfc815c5d3
MD5 7d92b97feca1215851b93b473c62bf98
BLAKE2b-256 10b55acdee6526ce847490f8cd5c4b6c3e647b4dd88bb676697f471c4e628cab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 247ee1470329557efcfc205d3d1e29f77b22ef64a0796ba4f129269122966607
MD5 f4afd12923da8009d639eb6a91ecee75
BLAKE2b-256 cad70d2e196ec29671442e21759993b1e11e3ee48be6e6dbfd1df4f6ec0856bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 913bb39c29f7dc1ae2a86f99bc07f7563ab2793b8985e6c9f4f5e47777460ec9
MD5 0cdba249d55145fa7cdfb0bf7cefe1d5
BLAKE2b-256 d96cc19019d4aa6008b1afb1000f9b61f7cd5ab15ea4571e2218e8bb20ee0bd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33993356a997645fa27c1872e79399aaf4d2f3e88ee5d7de2ca17d90eebc746f
MD5 aedce69aebdf3638f3c53a51ece8d50e
BLAKE2b-256 c96752e8753e8622465c252d5c8e55c4418cccea60caf5e3c99d18cf0e7e6f1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ee5b547cf8393b9855d3099998fb344b270c9481e79e25f22b82985889f8ddb
MD5 87b37ad436085517d80fe8b4e8f086df
BLAKE2b-256 1389f4f2ac952b58ae83cf79280e540102f1f13a4bdf1a01c5c625c5dad81dc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69e56f757f28db86131b078e386d85f85c340965b6e28fdc643705a4d68b4c39
MD5 193d0013ce1783115d8fcd44c506bccb
BLAKE2b-256 af138cc04825df477022af5616703834fb752215e89550c65b9e31732dc8e102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bdbccd37ea27e8543e39e3ae063f9ec0ab1ffcbf41917cf6f36d5973bf29f641
MD5 eafa17a70f67ae66d2540c32edbe8f24
BLAKE2b-256 d8a2942160631d20a86026b816a86b44e0070c30a35618216d68188d6dc124ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e7a2d8fdb6189bfa035e27ddd850bd0c703e495fb111c1a0f775f9a4da63c0c7
MD5 0dece0416fea0637603150b37c3e1eff
BLAKE2b-256 ffd11cfae97946cf6d16263093fc5e53b7fb8e7333126e902fde6d61bae97379

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 876c4e5019e83cbc7cb4ecfcd15785a5afc39bc168a800c83c002426f263da95
MD5 d1c89d76a4b60209b4257f42ce8cf689
BLAKE2b-256 7b73ecc341b8ef5c188051f8f8d85812a5a5daaee4c4761d8c72cd1b3f2735d7

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1fa26faf42d5779b2a3514eef7a3543d2ab727a73023deef78e03a4afbb8da8
MD5 3eb1009dd9d02a6d4d87c5aa695393e3
BLAKE2b-256 23d3af71f4146c797a03935dd25c121a92e6201cff601184fa90ded8c8f1bc7c

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ddce1caf7e4ea1205ce89321f6ad878cee777ec562637c59c5a40e902cdf0de
MD5 01b6f2d686441eed688aab730f6e0dfb
BLAKE2b-256 fe27817a49595d62a7151da2a96014c45ffb29adeb1850aac75dbb727b6cf476

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 091a5e2c9f8ba38433308daf9089be808e0996b9ff1447cfbbb41c170b668107
MD5 e06742c63a94b2e0dd9b8ae8cd01931c
BLAKE2b-256 6273562fb4c4298cd8d6997dd263434d0a27766054d5200fee62617a6018af7a

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ae7fc2bcc2ca4b91bb1596753f0ac5110e07081fbaacce85ebd931cccbe5f08
MD5 659905649641c08dcfa4dcc9a0bf6622
BLAKE2b-256 bf0c150f896e973d70615d316b3b512902954a17129c29a3e0b16cae528d0c83

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 969b5c8e579a6535a555db464f58bb7b190dc22efb44c2fcb28eafb8c2046835
MD5 5753ba7938d9cd0cda32126d110716a5
BLAKE2b-256 23d97cf633217f0cc0231a9dd8762cf714aa2c824e4bf974f960aa5b559e3627

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2553880bc4a08bb2319d1ea103e90d93bd7218448b81aa2556b8012fb0982ddc
MD5 06a3d456989051cfea00f8e1886a91d6
BLAKE2b-256 cb25d8c8d4a52b71fd5f90498881ccc3b023bdd5fcb5b00946df2533071dc570

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 861384db5b43a490216452927842fd86401a67c0635432ad60ea47c8c7206a86
MD5 b86a56278572d718cba0cb4dede91a26
BLAKE2b-256 6567348546a9765a14f510856abdbb527bc210de5e12a04ca5b2c3b585d07bb9

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16d1dbb05772571d9c60d3559c67f45e3cbe500101fa5f87852be9d1a2e1c660
MD5 f9318b6e829f950fe71bac6d0d78c4b8
BLAKE2b-256 88a9984404d6043a713e4df8869ca4b9be9454679918506e9778b774b17c9626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 79569048d1291da1a6f6481d0d8ae57261323ec76200f4722b5bd6f9a1a1eb51
MD5 b8c61d3e091370e22b5c16027de3b5e6
BLAKE2b-256 3a0f3a1111ba9b7873bc8a445f3c6755e1ed0253298ac043919f416c915588b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 67211f102adf8d12669e8531f826545275d4665a6846fa7b0d1c99f09d7409f7
MD5 9648ccf724e380ad69c9d26708efa45f
BLAKE2b-256 b586e6b3f88d756be46d1abf0f00f0ca6ebb05d621bdea1de4c48b16e7eac0a7

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98896480f8cdcb0bf79e9ac366b9e828fb999d5812483b6955efeaae92f48610
MD5 9332eef078bcac2306a5c83dc69a7961
BLAKE2b-256 7e0a8c689c58072b1cfc144c28ec14151ca6a3b2866ed93239dd9f0fdd295323

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05cb6855c1f6582acd38581b5cce2d44b35bee7c7ab354e3041211963521c6b6
MD5 447d4405b98c034f2319efe977ea9b0f
BLAKE2b-256 ba9490d0abcbea24d34bce1c47fb032186d9531697840b1b3d4c1e1728bf9c94

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f46a97c38b0251ade572c1709492b34d100e89d0273949776fc1bfa7487a7a9
MD5 f1c0f91befc82ca773f2d1cee72c0de9
BLAKE2b-256 fec3339fd54143de94e329fff197226a0e5d3d6b4dce2cf0723d56d145a861dd

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f82ef4aa4cfa7876fa023a5f7dea0d470e014fe502cd7f8cf3a1b7fce0ad3e71
MD5 597a8320b5952946c63e5112cd87356e
BLAKE2b-256 8454678d3d399f48605da1221761d6ed0367bd2edaa4d6dc238d6455219c0a78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d58d5ff705fcacf9af11599e2de2d95ad456a9c9b707ec0acd432e87b9fd3ea
MD5 c4ceab351534f6a181a6ea56cdd72ab5
BLAKE2b-256 7c37c0546f6ea09205b818a6ef599a3613e475b52c240d6c56f299f6a6743802

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cee2c3b215f939ea03c376364333b6fdf8a1593aa953e268cad5878fccc429ce
MD5 fce8c0751e4981812b8ca59d2049bba1
BLAKE2b-256 488585dfa9a08c06121b92d42de0c033e9fb683bc5cee8655528cdc8209a9722

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff3f523d2576fa4c7b7a1d04c7d5b5ee02ff122ddffb5e2563942af04e688b66
MD5 313431a1e2a0245e32ffcaf375cd7da8
BLAKE2b-256 ae6529aa044c7ede5d30005ef89652c0e34ca904780d7da26ad33191d4170e0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f94c9139744e2a021951415cd2578715c910666be5fae434492bf1904a39f4cd
MD5 f3bfb867d15ec2ff26d84f71c6cf4bf8
BLAKE2b-256 73ef229c2ea59e0e5834c70a049e5e5ffd5745d7ec792dead123a02d75bb32ec

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eaddd72d4943ef8d2ef431948fb2d72851431247c37e5dfb0692ddc00d3d184c
MD5 8aca0e3c11d8f80d092fa9e472206306
BLAKE2b-256 dde552085634924754582bdacefa009d7bf9d85a6b5d8a5cd19f02856c46e577

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 900d2a9da75d9851d1e9bbb8d49dde4ff0a86923d20efc10d23974513daa5197
MD5 3cd3b644b6570b061c2340aa65fe7f5b
BLAKE2b-256 4051b7b6e61a2005ff828e172626e1d2df945e08255e93fbde6dbd0b2a17e3b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e1ef9c0fabbc01f1c58159e6bfe26b9f17311b01503c1d64f28489f980a42e1
MD5 ef9f9b57fa636ac68ae309128baf1f52
BLAKE2b-256 dabf2881b11f792f68db9357475e31ba19e733c2d07e3e6ac361d7918c1eed90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 014c770cc877cefb3263f5306cb12deb4dcf5d7c444ecb3c477c2e3111b7aebf
MD5 7f2703e95ba41590a6c43c4fc58b45fa
BLAKE2b-256 c4a32b1e75f94fc34193f9823e82bec8434dc7756722bd8d8c494978e2dfdc9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 235639439c9220b956ce891ca46bc02e7f63bb894b64166efe4422ae2a3466a1
MD5 b33f0f8fd13170de8afb5802e08faca6
BLAKE2b-256 332859efac9b6d7a8e6db5070eaf708775758a9ad8f5322731e1254c93f3d363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c85c042a011c4e28a428d2d92bdd37d2b106ff579cdb7a3acb5e84146963629
MD5 2c5c7051c86063b17d3e6eb45525dcd0
BLAKE2b-256 8c813b9c698ba8386995b9cbeef3a38a3c47ca7e8e87e7bf04ef33afef77652a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fffa8238f857b68a1bb24edb64d0f54c3c15693ed9f7e96d1cb363fe77cb945d
MD5 4f760875f9b6406b161de249fab17419
BLAKE2b-256 19d43b37df3ef7e067a3995d1bcaf9724517a2a7498bd4214f9e6da2497bdf7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87b682bf007052708f38fc962707d8e8dd8504f91743b16c33eed35ae0a2d62f
MD5 fbcdf15cda7c23fd0fc61cd429b41479
BLAKE2b-256 bdf6b914ea1ecd88e0d6d2d4143f93f137b1ed4376f456e7306fb5d78edefc38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c054ebdba55afbde6159a4bd6a80a195014c553571dddb75f9f06d269649353e
MD5 744a3da82c390ad8034482157d423bdf
BLAKE2b-256 1b154611e3d1dd34fdfdebb0c03a65aaa6f13a903e6168f0b02d311bee7f42f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 894ab2e96705e36f0a6ef3d596ccaf1314590df23dfd835f60a0b72595c672c2
MD5 3874068a3eb7971f41f454b984eb7338
BLAKE2b-256 20fe58ea9a4056497eece689aaa043d9211eba0bd1b707be1701734eb9e35002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9073ead1cc7b697846e40a2af8951578d87f78c86a71b3b655652b988568f302
MD5 921a118e605049f7e890573b849c6f4d
BLAKE2b-256 4bff8f5d87f41881a0fb667adf07f819ce56b17700797ab8fcf34018d05e8de1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d72aed04088e17221ccc868ccc792d50b46022fa625d5b57af201e917df7bb23
MD5 a617d1b6611e30b0e71b8e3085730960
BLAKE2b-256 6f047f27831592aa7c86d11c22188737110f5d9e05c0f72c1a2e1a8e664f6f73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6e2c484483dd32b31b3be68eced3b1e037807469980df8c6f681c686267f06a6
MD5 ae7b274b1a867d5fb6821dcc2c0d0e09
BLAKE2b-256 8d5b051ce569f1e0c663a956541c251dfa8bde21286e2dd24e61603a0790b2da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0293dcfa18710be64e230e31bf73a0d4520e33a90f272bda13872a2a9da2d0f
MD5 a1626835aca473951f0dff4596f74bd3
BLAKE2b-256 eec5954a9f9c1634522f0da45de6c02f9a6c4ee5949cb7f0eefbcb70e3bdc36b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1185de317425d62130901753a34d5bc8d3941a432d51ecd051c980c708359dc6
MD5 c855db9f9904fd38e889f37900db2a7f
BLAKE2b-256 6c5687cd616856d9978413e50d6605575506189bd2548417532f0693caa69679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f9d11aa9423c28a024bc472088cc9e8d29cb659392766cc1f34576e426fe7abc
MD5 7111217d4bd7a0862b5fcc0cc70dc2f3
BLAKE2b-256 2eafb288b0a043c79c9a665793e02cd7f6d7a81b763fee6512270965be5e1740

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33d261e432a40f37d7ca34dd98686cb706b15424dafdb4af069c6a37872d0dad
MD5 064d1e02e3722f61f9eb678adb1996be
BLAKE2b-256 1a5dff74477188c51d12a6dbc63a3466934a06d3ca32ee1df8251418f185b734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d008f621c7708a98861c605c4002dd9022e4910eae284a6918ebf514f1723eb
MD5 ed939bf047f0ff6a9fa03ce77ae2de67
BLAKE2b-256 4a15f16e458717672b3843f4183553b1a3f48098d60b6ca504cab33c0bb4fabd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3691f7b382677efebd925829ad8236b4b4eca18c16a3aad1a9661a446bb1573f
MD5 c75f7e073a9c47e71b0b3753f17b66e8
BLAKE2b-256 87e80c5e9a0467220cb0aeef83a3087c46fd4037a484d9de6f8082fc1afee463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c1d1df3bcf1a8504df06a16a58237c7f8f845c2bf400b7c40ac2c04a4e85536
MD5 f15bc08b388cb374b9ac3d700f65f32d
BLAKE2b-256 f42a743b605a3414066d20bbf3e2cd5afc20617bb48dc25726c2c4a256a211ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e595a275af266d3af29d62899b253fa160d217e4a51dd95ce73145b56ffbea6f
MD5 05778f25277821e5bb3a38f22026c2f6
BLAKE2b-256 9c2be22c4d4f5012e75e3b8498b9f0d47b2eb0ab6ecb5af726427b2bb1e799b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5079afcdc71da0b41a7a842a9e347a02e05b97e7733489f907914dd4b92b238a
MD5 76df7f36da495853a4fb0b6ea3bbbc0d
BLAKE2b-256 328c09ab78e6995164088d230befe08696b3bce87c0c758ceb85eca285513daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26b1fa11798aa5edc31d25f27c1832d566e281af89a25e10df338a88711fa3cc
MD5 f08df2bf544bcb330da114c88ea1d2de
BLAKE2b-256 e49dbacde28cdc42e9aa3e7a50c38c9dbbb77c9626e38dc0c90165ed6e7ea097

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c00e3acdc99c58557ecd7f7f0c720871cc3dfe8246c40c0a34da2170364408e1
MD5 7a917667cfa6b3ae7d7ac405ead94053
BLAKE2b-256 6c889cfbd0171f684541f111155e5a359992dbfeb2524fb53620444a4731c982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 42350009dfec40d0a5641ee9459c30e9d17b7ae790de24d1f940fca716e9d0a9
MD5 e251ac635354ea2d414b1dbda30129b8
BLAKE2b-256 3621096fff81d3cb603bf9c6cefe1886cf277942c34904ad45e92045964a004f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ef08a36d26e486564b654c7ec3baaac4a71ec2168cafd3e4d9b49b38e0f55d23
MD5 3bed1bb17a82a2ae9b80e2328b7ae489
BLAKE2b-256 1cd2f4090f8323ba4a263be82abc1e7b9827919571f10fe8ce1d8ba4d22358f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63dc381f5f56c90091311677b6339cc0f8d3bf4de746bbc331c12521cf0ed83c
MD5 16cd932db34362c49d529c54b00540ec
BLAKE2b-256 45c47adb4f46d9e26da86fc4f1ca3e3fe9cb03ce91fc8de0044deb4fe7f43895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d7efad749e5a9bfe7b2dfd1cfff66ba11965f23c38b50bf0ec00cc159e51653
MD5 ed0449ece82ce274f3e7cf5a834c79a1
BLAKE2b-256 640b67fc6ca56e1e8950d66d09ccc438db87a2e37c3bf6491c69303acde06f05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 83bc1e2779cd4d32583dc62ad606805d5a068067541e4cf828f88cd94ffa225a
MD5 57b24d11ec9f2d2f51f32609a16ddc17
BLAKE2b-256 8621732ed86343502a370c4954445dc70a4e25613213e935df41a8edd4e93f2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae711c31a3cb480d76b63a261bdadfb68275f5dbee21cf20f5881c7357b8a00f
MD5 89727e7abc867bf063799c5d453a2287
BLAKE2b-256 b9da0f2f818ba9c878c76b7ca52fbadde6a2780d4bb53b860898a0140a871cda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab6e1d24f6f53c384c0c4be74dca274e6fbc9d8e71dfeac1b26b317cec7a6943
MD5 d3a874373583b3b7d93214640dce07cb
BLAKE2b-256 2cdf2d0ce37b085d7cb4e75d1f32e0c2dadf5ee0408a8d6d068d5b2908bc3cfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba14a06852dcff64bd3f54e0751880e332fa59f3eca44ad8ec96f4cb888f2c38
MD5 c3772c6003cd27f81d172480d2ed8947
BLAKE2b-256 d9cc65f508d2f2f31149b11cad22f23f08f843a8194a1e47018e87ffd6c86378

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0a35e65a508d07ea612ecf9c8be70a0a02f84bbb9f5c0cfcf4b2cecf2ff08d6
MD5 ce38efeb8600da18379854b75a97fd3b
BLAKE2b-256 c6029e87356c85be03086aad572d14d7db9c02f6fc9407e9e1dcffe9bd90de9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6517e01072a44774f7fcdd6819943252bd911de052c94c05b61ede23732e136b
MD5 e836e5343c63e131cf04e6d0aa20d3cd
BLAKE2b-256 fcd2d7dc766ed69f272be08cacf4598efac07826c68782d9ae42ebe316f2f776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 37c3336e6bd2600408e39b37010ed6eb1bb67a5f14d294afc256a31b1abe06d4
MD5 af035d3c7cbebbcb4ab2e2518d412e81
BLAKE2b-256 dd770e6df7542b5ff04a2462da717303758f8e844b33542eb0b355822c31b053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 135ab8d2a5762f7b42ae27df95e93ecfcedd7557767a6ba3283435c794b7e8ec
MD5 8713e298e2a04ff53758c865bdb07818
BLAKE2b-256 3eda2ceeb86eb037c089cd938b1e40fa68051095d409df00a24487fe9917dc41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06a3443ba686d08a9e843e0ea024332a6153ac1ff967c116f1e4f0587a333d95
MD5 f067a0ad0880bd7713c6bd110c2fca1f
BLAKE2b-256 d89f50b697063a2352e1e31f6dd7bd678fc4d51df2e72569f3867feeac0f1d94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cb76921142c76c08cae656c113b8f3b526741fe64ef0b2dbde6857edd2c43786
MD5 f606d2b5e1c8e2895b07b009589d9c12
BLAKE2b-256 3c517bedbe67de3809240c04891913289e9e615e91b1db75324e7695f817e959

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6ff79f3071837e4a905ce33066418cd749145bfdbb80e30f7a62765465b3ba01
MD5 28ce6b27d97dbddd0119fbbb37f144ff
BLAKE2b-256 15e1ed8d26f679005c1f4512dd962c3040dc299a00e0928660baac23789ee559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95aa30fdd39a9d8b97b727a85209bb3927a8620f0d5834b221726ce5df79d4bb
MD5 6a289a31402dd744a98ef9ba14929d26
BLAKE2b-256 a904b94b629377f055839aab606dbc96a625d2173a7effc7fec9b1346abcc4ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e3c996199e49074e132cbb02019ce6d46ecb88d0081def8a37a218f2ea8692dc
MD5 df2e945a26a9e9bfc1fe2a5186251a41
BLAKE2b-256 5b6d7483e3dc40c79548ec012cfb50a3955f4410f5206a6c2b7b84664859ae35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9ef7edb62ffd318af2e85e580565c0cd8bff41c8913a7033f1b9f32af82249a5
MD5 1a21c2a000244c5a7bca85524d6884a3
BLAKE2b-256 a62add7a43c270bb7ce337a15be874762a0f41a233fb7da215805d3976ad43c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b572b47ba8546e3ead800c0b28c09536a952a594b66ad8e0a8a58cc8b4db3a6
MD5 b69efb0a8f83b359814495cd7f8d6336
BLAKE2b-256 6111818f2dd473864f01fc84ba8cc7fb248793f027fadefa2c7d0374a06b3faf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7802ef489fdd9279d02302e1d0c2a59c037425fc95611617859817581d647713
MD5 9abbe44021ed448fc5f19869e60c4545
BLAKE2b-256 49ee4fb9823d36a7a1267e1c3684a27469466ff6232e2e068d46f47e3ec73f52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 670044fafa68eb8e2ef50e9b35a8d6fb4ea37a22dc0d42082531e924782a382f
MD5 4c1e5570119594220a8ad4fd4536d3f3
BLAKE2b-256 4e1b8395f5581a4733b49cde699cbc731e6a3217b728688e48d2a946c4cff04d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7189eb618202a98cb030d324b2afb33c6b21784b553986508afac934c3b23047
MD5 4169afd93b6d06e5ccdf9c863ec37e81
BLAKE2b-256 91732c68ead940a24a573386848a3ab2352dbf239d0c172e69a112b1d8da99c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a34b1fd19cf2c6ba02e5878fbd40a660d27acfa710e3dbb60f122c097b6f3c21
MD5 b300c5eb21278d03b98712f1182a2c8c
BLAKE2b-256 12b876ccef849fd28c4c29611df4de314486b6d4062719aa22163d68ed1f6f53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d7025c6dd61af48c3afe41ca74e0f3bc1451702d6db9373cc4f5facd2a7aee41
MD5 f943a15975bce6e94e5dd0bf6f2522b2
BLAKE2b-256 fced71fcfa5b2cd16c10dfff6961cd88beda4f839a4456e606e172ed785c568e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3008d67e53b8c1db70a2af1f3a9373868e990b036eb2674258b9217b1b4e1171
MD5 b3b056f29e1695d35dc5613ba1992267
BLAKE2b-256 31a6a7c5fda6402a296953d2ad080c5789afdcacb96f8a93329a274a5af68e9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 433abeeeb0db8d57d0b58b1bce3301b18a137614930ad43dd506fa058594dd6e
MD5 3c2615e1b786d99b70a95f9ab288f5d7
BLAKE2b-256 7ae620e5d8db1701fcb2a2a8ef5f8004e84cd40e4c9c5afb7bb82b1fb98d1131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa074de270e5660b8c7ddcde0c6b86faead66840e0de99c760870ab373f2f4c1
MD5 c30a91bcb92b118459eb79c9f804914b
BLAKE2b-256 dad12710dc1651fd630e2abcefd7279e12cea78e5c69514df10cd56590d76a22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e746e5d65ec309fa7522e41710a08b4f3b8e2c6c1b6dc807b49b58425376d2e3
MD5 7ee8e2769b22b3acb6bc94a1f92d2d07
BLAKE2b-256 858181837dd4d90102e1a58870d9048d61eec0963f01eb6302ee6d69d747e48e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 757ff55f84802b4ff42aeb94dbe81d3b03136b89bdc1d25ad768b24bab5c6e0e
MD5 0fabee2a36816bc0baa38668cfb6f34c
BLAKE2b-256 7a1ee7d3c5292d485c737b6e12d9cbffbe29024ea3aed94c7684d5369e1980ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55c206e0197cfd70aa3544f90e4d8862069813f848236b1ed294c2b9555ff241
MD5 2bae115cc07f83509197ed11e7109693
BLAKE2b-256 a08d3ca279072bcb4dee92a0507fa5a23006cd01b715177ae6d17bb75a4da0f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c3293d6a00274fb5d1d2ae8ea579b5d98cf72d95863856249d3f47a9b3f75f7
MD5 cb1d26a49bbee1bda4bd39db8963823a
BLAKE2b-256 40bba662ed74f8208cac889c0367f9f2cd9fdb3fa96184fb708f875fdd1d5a8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2cff7a52d9085f0d236bc8809c5d8cb78a4a3a06768dc84383009eb9194e176
MD5 b42bcb2b72b8118b4316f0db7f829fbf
BLAKE2b-256 8aa882f482133810a7f515da4eca41b65c31770234db87e4cd3f7819b571f73c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4cd281143a7abaa80e8f92ee6209a9fdf17a61f2e346e2d1e8bc2f060391a77
MD5 3077f471b2b8e0ab5f407017965db0e7
BLAKE2b-256 137cf1817f1b12cdec97fc77f1c4af95fe2eeb76aff55bc320e93217340aed2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aafd9613a7c8ade7e7b0d4925ef527a874cc5c7fa5e9a842fbc0a840911ef1c0
MD5 7c6a39180cf1d1b1c8c5fc0848c05909
BLAKE2b-256 d0b5940e93c40e8639ac2d4c27c5c3a2cbe78c08ef6e446e6fd5a2db96581e14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 881e23a184f0d6069ab23350687a47a1e8371fdf44c5d4a6cc4d481e937d2e53
MD5 43e9daa401a0692e4b433431492deb76
BLAKE2b-256 4e9fcd8344e4ff5d5c381645fd6386712f9dab1586853d73da9522944259cb92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 972e17be63fc3b0ac69127a87f38c10b0bdac47709176a664c11246787ee35ac
MD5 31e099304edcabf1c948e1c2836b1ec2
BLAKE2b-256 e358f57f6031f37caa48af55888c5d65c2ebaafcc9fe567b62424214af5eed08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3b3a472fdd68bac148d58e327336852413bb52eca62e2450f09de5245ce412d7
MD5 93b5570b64c465babc18599906460292
BLAKE2b-256 3a58547fd4d7ca317dbd15522d433f7898f2b383ad3344775b17113d886e3b0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d9ccaede2c2382a8ca2c3c0ef0e2a2609628ba3aa3d9fd4adc03e4311ef3ba7
MD5 f019ad71b09a5a71ed3b941bc829875a
BLAKE2b-256 250268997977a77805b7f7a66902d81e17d20c0b1e96ddce6b0b2a252cf9b821

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d6bdc2bc3a3bb15df79a46ac5c5c928e44721f7163249593b2477466e43e109d
MD5 a38373219a798706ac92013409c0bfbc
BLAKE2b-256 252d64fa0b683b0bc1fd076c85b76e0a133ebd59a4f0da6dbd43c617a8729257

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47be1af71e430b30b88935d99bd2ea35135f04644252fa708663ab781d09a823
MD5 094685299e7841ffd231805d27d0a86a
BLAKE2b-256 f2ae389edb04a707cbb6e4920a2cf55496713c3a69efa89776e95afc28c0a52b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da0bec07939b88efeb7bdb21caeb08a1f263c86d115827ee66be9a15a4b6d485
MD5 f5d4a06ba53388b7c157e8df2a99ff09
BLAKE2b-256 dbc6e333232c3ff8112e32f3d1fc50581183e994edf45af11316b3bbb013e680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5f35243e59e481e3e1fa93d18afd336968c93ebdbb381edf30f808928cb22273
MD5 8c2040c9a8e4406673cca3c61a196f7f
BLAKE2b-256 90a2923861afe2b2337b0c20135207b8ef255f6c987e4529b303ab02358ed6e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 523b0953d56931e75c92a44a6f75f9f7e77214850464c6337569fd5091672886
MD5 e541d9bf2a1fbb07a52d1b59f6534061
BLAKE2b-256 c41ed0edea3d6dba1c696a75e5e2871d7f7ce3ff8c1a6af683320b38a008aa48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9ffc02dd7f59e2a670d8a8ce4b31f28270f10cc9d308843bc4cd7dcbe80b2b1
MD5 da8e20410dd4e6543a4106e84c3cc9a8
BLAKE2b-256 e249f1011753189762b24a63a62b37690e6baa5664bb2a26088572c5147516f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a187cdd07cd31f2fdc05af7aeb97cad19092902b09828317684a0b6a7641b0e2
MD5 e456815b91f4fa113c34e4d3ac6086e4
BLAKE2b-256 bc4fef1857fec5ff334a78da9b4a4d206aec50158d4f43fcd0cf7b030d29dde2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c00a4ceb12a14afbbe93a43b53885a73ee50eaa1e713f40fb69d871c50a6158
MD5 db8358a9ffd4109444bb9a771a530c7e
BLAKE2b-256 ec74c377ebe15ad18845b84b2fa0fb0c601b0462bb297b15c2422d0f3b29457e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 53dbcd328db7197956446d059c5836338de691b2f0e8316e2def777f424ba2a7
MD5 2a07179ea61f536f25252f3abca2329b
BLAKE2b-256 4258b6203d624ab2d3a9c91bd484d215594b82490cb945f3bcc9a6ce43329b19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0cfa39192ca4e2e764990473d123edbc876f272cd7d58dba66d66bcd89537549
MD5 b776894ae5cf7eb19db05afdd383e930
BLAKE2b-256 1967fb1b2324f155fa1724a0381b07e1c662d569acb341b4023be9c7d2fd7940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9cc9538835d7fc128b5b002875abbfcf0119c167e5b14e2913677b03c5f6b74c
MD5 3cce9948359b316282a34a8d35373b8a
BLAKE2b-256 4b7ff493410b16a24a9beacc25a226058606dc5d06584e40d7eb4e1bc86cc58c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b3115f9673f1339d4d29523f1239978e86b48aac075d0f2c2286602be7f7dd2
MD5 412c78163716e94a4a7cdd9ce915b5fe
BLAKE2b-256 5ceb2358c8bce951bc4b3cc7526bcb11fc4ee6638e781786e555433a9318d92b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc392e98caa9662464c9fcf99dc2b08783277198a88a495a99922ea04b87496f
MD5 24a4ac3e34e48447f4d5cf6dd53486b5
BLAKE2b-256 cf7e592b4b297d00030779463c98cb2e409b139b34ce5f9a43b8a63e082d6a88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4a36ee8da8468ad01e2d0a58de480bc79c07b49593ea5ecb8db7472ec364c6bf
MD5 debe9b51d2084f0f6811f690a46e1882
BLAKE2b-256 704e0cfe433881344cc5fa52af0ea029c7b202be68835ee4b475f93a3c7aad87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08427cc22eb67482c746d8f6ab27633d1996960af6aca2529af72d9637825e81
MD5 fcd7f5fe9c63999d904d57daac4f0241
BLAKE2b-256 c2f91e6bbcd735d309d26af1cd4ea12b3afd1e6872ac13a76bc05ab31f835e80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cea33057df1150673e2d2cb42b8ea3d43c1e6de2377157732439da674559259
MD5 75f424ff1b2d9c017e5ca3a4140830d9
BLAKE2b-256 43a113d03ace1d3d00138492ef88947abe921f90fd183170bf53f71256c5c50a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 705d7da98e32a4cc0e07870d50d0b4f66e26e29cc64108d86bbc9976e27af58e
MD5 cd5aeb1f8c68caf8cf0944b39548e50b
BLAKE2b-256 a544e64d475d2754a5792ffc8bb6a79e520bbc9fef27b1a5af9f2b427b146316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 88b2f5f4fb1315477a31bd2dcf23c857e03ce8a5116f4823f3f0d2f14ecc3563
MD5 a1be461ba5c5862a25ddda5203bee760
BLAKE2b-256 a59ce193fc0793b175fb42f8e1d3d51c0c897fad84383b8817b90f5e72bac017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73005bba838d49a4859e42f343162419080c0ba64629a12a563bcb85b0f2cc7a
MD5 afaadf8f77bebc9183a17d720aba9b40
BLAKE2b-256 9967452bbacecaadb0d522b934a9a6964111d2171e90155f7900f468e649a9cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ecbe59185e6896d602777e3351bdb8893abd3abf109fa316ce82314312b7b9af
MD5 c663f3ff4b3162573b4aafdad9e5bc3d
BLAKE2b-256 fe59e0fdbc0e47cc4b32ce74579be42f12c592a1915981dd52c654228b868cca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b923b55c654e9419d84044fc1a5326e0522a9c504b0dcaa7eb117d2de4d603a
MD5 a13b26789b3c3752df88e2c50cb545da
BLAKE2b-256 45f6b8e45c46325e982177dea609464a90167dead80b546118ed293d8062b5ad

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