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.6.0.tar.gz (296.2 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.6.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyglobalsearch-0.6.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (940.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyglobalsearch-0.6.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (995.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

pyglobalsearch-0.6.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (947.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.6.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (920.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyglobalsearch-0.6.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (935.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.6.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

pyglobalsearch-0.6.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.6.0-cp314-cp314t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyglobalsearch-0.6.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (991.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pyglobalsearch-0.6.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.6.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (939.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.6.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (915.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pyglobalsearch-0.6.0-cp314-cp314-win_amd64.whl (713.1 kB view details)

Uploaded CPython 3.14Windows x86-64

pyglobalsearch-0.6.0-cp314-cp314-win32.whl (654.0 kB view details)

Uploaded CPython 3.14Windows x86

pyglobalsearch-0.6.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.6.0-cp314-cp314-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyglobalsearch-0.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (935.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.6.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (990.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pyglobalsearch-0.6.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.6.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.6.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (941.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (915.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.6.0-cp314-cp314-macosx_11_0_arm64.whl (850.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyglobalsearch-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl (873.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyglobalsearch-0.6.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (993.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pyglobalsearch-0.6.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.6.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (944.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.6.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (914.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pyglobalsearch-0.6.0-cp313-cp313-win_amd64.whl (714.9 kB view details)

Uploaded CPython 3.13Windows x86-64

pyglobalsearch-0.6.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.6.0-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyglobalsearch-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (936.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (991.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pyglobalsearch-0.6.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.6.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.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (942.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (915.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (850.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyglobalsearch-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl (872.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyglobalsearch-0.6.0-cp312-cp312-win_amd64.whl (715.2 kB view details)

Uploaded CPython 3.12Windows x86-64

pyglobalsearch-0.6.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.6.0-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyglobalsearch-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (937.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (991.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyglobalsearch-0.6.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.6.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.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (943.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (916.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (850.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyglobalsearch-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl (872.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyglobalsearch-0.6.0-cp311-cp311-win_amd64.whl (715.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pyglobalsearch-0.6.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.6.0-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyglobalsearch-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (932.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (992.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyglobalsearch-0.6.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.6.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.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (946.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (918.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (851.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyglobalsearch-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl (874.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyglobalsearch-0.6.0-cp310-cp310-win_amd64.whl (717.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pyglobalsearch-0.6.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.6.0-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyglobalsearch-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (938.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (996.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyglobalsearch-0.6.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.6.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.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (948.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (923.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.6.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.6.0-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyglobalsearch-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (940.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyglobalsearch-0.6.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.6.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.6.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.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (951.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (926.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyglobalsearch-0.6.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.6.0-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyglobalsearch-0.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (995.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pyglobalsearch-0.6.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.6.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (949.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pyglobalsearch-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (924.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyglobalsearch-0.6.0.tar.gz
Algorithm Hash digest
SHA256 4436d3df59cca50a9f3d15bfafc84a7608467710c7fb431a171bab429c93c9da
MD5 322ed204b93cf91d8a556c59d167bf15
BLAKE2b-256 c5ae825e17812730fbbee2a8b0f8855110af0ea986599ba4d53615f7a495f767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 995b0ad73d23e00bc3d282ab2005a591f35cb98908318720b4968fbaafbef05b
MD5 e758825a8802c1a422112439afbf3a74
BLAKE2b-256 ca88cc177ded466398af1599111a7836efc20691042a5bf7ebf951764919af8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f11563d3208a466c8d87e5a5e1b0a003acfe22fa71f6c42b42a2f79d1cb6393
MD5 66c8ef86f0323b06945c22df56b4c979
BLAKE2b-256 fd2a3ab8bb3a6186a75199cd40a0e43494ce657cd56d17a19f42715b277d1080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c52907cba312aac1a54935af6482d0c528d50514428cf8cc66eaaa6e7256a8f4
MD5 16e3a999a6b9febaea34e5133470bd67
BLAKE2b-256 db95cb56e59e4275f3c913872d6a45a9912ab5c90861f7b45eb3603da02f4bef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e731de991763a755d71b4b5d062078c356226edc6e402988ff646523dcb8c13
MD5 abb4f180ef4c88e5e1b457d854468b98
BLAKE2b-256 4c8be74846c67f70fb8d1931ab7bf108ccef73ebeb2bc4c31d33171891749da5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abf3373dd5ddb85bc6ed988f05e39c58b8aff8699410148b46b41c1714fb277b
MD5 19615ba54d6a896d975d302120d44daa
BLAKE2b-256 eb8aa39d6d6f4fd3f65a8c42eb7ab37022d0d85ac86b2fbeaa9ee331f6337af4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 45dc3c0cc2166c92d4e1e1a2d72a81c037f57fa42e6bbcfc4a0b87884cbf50c2
MD5 25e7da86501a1006685ca3a4669d1f9d
BLAKE2b-256 1413772dc890d8cc2722f49c54f29fb69e43b39cc7807787857a7fcb1aa98a21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4bfc3e3fb73ef8dcf8b5b7680b8877555028016206f3bebe90b079901a374a4a
MD5 c97c604e6591c855a25aa9ea7369a8ca
BLAKE2b-256 ab5d6e732fcf6b8af7ec8a4f6e0e5ccf7a4a69e4b33ee1d27efeb398b6bfa0ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa118821ee0dd9e74447a515b9a6547994f8bac3bb52692d0a95b811233fbcfa
MD5 ca48eff5562b421ed7f15bcf84471fc4
BLAKE2b-256 47b14f36a1033f2a32872b72f943df0e179ae9b450d8570fc6333a6a75e6f194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a254786451ca6c106075217f6a244f27aec2b4ae59c203e241534598dfbdda98
MD5 d25fabf85bf781a2fe2437142ec43547
BLAKE2b-256 9f419e45681817eb7741f44b2a536ba071b66d26be9fdcd197f5fc5b0705e512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f10606382b3b03c44144dd8803bd15dd579ddb173583d798986d92fe4620009
MD5 13cc2ff75b4074abcdae697df6e3d28a
BLAKE2b-256 0d5a5aa66a3b1fe3c5d2d7f1fb77e8e1f11cd519bfa2c4ee66fd799d99bed359

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.6.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 824a68dda4da02440642ed8ad1fec16a02b4fed17c9db78005a419acbf9de60e
MD5 ef509c0cfc92cd69428a410e67863bb0
BLAKE2b-256 d3bf41e9e38e714a66554b3c9801a2e0a009d08d91af9a375d5605f5c1571495

See more details on using hashes here.

File details

Details for the file pyglobalsearch-0.6.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ba9759bbc37cda1fdb9588256d569969c36111aadf53e4153f59f208b9e3b10
MD5 528b59d9d9646757071343ebaea37933
BLAKE2b-256 1b7cdbb80f12993807d63ef4d7580cafdac83b0e11e3439a7e1a7261ea022d9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 196f0ea50c49336f3582eb3e6b8d8b90dc1fcfcab64311454fc8025a24d1f2be
MD5 5ffcb8140502906973138452f7ea3f2c
BLAKE2b-256 357bddec361ef2403e03f178fb4ea75c695a52f73b31f0a22a8c3b04ffdcd0f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b009a7031408f0b17551a958191d6618bfdafc3bd0a117f1c9f47610fad98e59
MD5 2c1115430e296410b20625b1c6b363d4
BLAKE2b-256 dab43c00ed0c13abe35bc71f26a96d8ba2470fe321b3e00379b90e8a7d2d0709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e837f36f88e22d5eceb8345a855a41c253aedf618f6d82b5ace4026a73a9c40
MD5 afc0b066a415917cb4c738ea9d86218f
BLAKE2b-256 8cba4dabd9f37f52844447f117388de4684b8d1de30c250d793291107bd243f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 acc0351718c1e61ad52c220c943c54a8fe069166e21f59f236090f58e6421e15
MD5 734f4ef58b4bdf4d909fd1e294336f7b
BLAKE2b-256 8e237b3893f3fdea96558390a38d7ab1c81719631a6447139f85400bbdca568d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02c3b3e9eaf73539058efde6c2c28bc503306adfe48a44d2032d245c9828648e
MD5 954ee44603e4092ecc13fea0a172faf8
BLAKE2b-256 c687a4d6c53e5c6677f9d95294d32f46636776b103df689560db22f9e8226e44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b4ad28751a4e413b09f11d9dadbe87ae26d3ee2f4640a5678b89caf085fda88e
MD5 b2f9f92d458a991312c6096959ed29bf
BLAKE2b-256 81b1b302b19a4eea85702c3631aef3608f20e1cfbca95646881a3b5c9b763e47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3177a57fc9efc506216517f4967ffc6a0242fff27540410ea9bb895d81665719
MD5 589cc020183dce2a008bc37c30fc90af
BLAKE2b-256 75b1e51124dfa99cd2b8d7763feec8e7611d1df0fdad9c26dd70ee23b49b59d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5bdaf3bb5d485c7de05a0680e189cdac8e6094d11b02d1978433c28233cfa7f
MD5 732dd6b7df568f75d7e0705222c81fc1
BLAKE2b-256 0384aa1adf8e7cdf81198250eaad9eb99d5ec616243acc8046f34b5b02dfbf36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6696f2cafbb8a8ca1539d27f349878c2368507debb3e40a13034160934dbe366
MD5 88c8441f7314dd1495319bc65e40cbca
BLAKE2b-256 1b0d702b212170ecee4cb21991733b83dce7ee85b9f1484ed16c24ce623c4171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d825b6f98c7454228f18a19036d3ceaf89a33341dc3323b7e3041008216a6c50
MD5 359b3f960881f85bcbd536a982d71aa0
BLAKE2b-256 bd69cd7ca977fbbc4ea1a871c2f7145768c37686bec65904cdea9dcabe54ba2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d9120c429f2689b9744d31ff8c4d6763a838d079ad1deb92803ab7449497f33
MD5 7ebb19e84f0d78138bf985eb435126ac
BLAKE2b-256 23c8c9a5221f84213b0aeaf1eb20c2c8a720971c504075ead815fd76ad5caafb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e557bc12b937725dc64cafb9b10538ec8e0acaf7ca2758adc0e613cb6c5c78fb
MD5 bde3d94020a9d80ca81f48be9a8ea068
BLAKE2b-256 0837826bbfb40ca0e2ea2fe6b1f357cae59b407e0d0fd979c50058d84226c200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 02f37e271b4838a04a337d04f299038483eb38e5a297f8e8efbda66ad7c43bd6
MD5 687ca408522558985480501e2ca1ed81
BLAKE2b-256 7881b41fad7b2f4599f136a789069283371eb135b95a350deff02a52e3354f82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5a797ca554f6f622dad3dadb3a699f4872613ee60479c2a9d2421c88c092c70
MD5 2c4b85e612ae0ea0426be1b08a0da7b5
BLAKE2b-256 1eb27cecacd3c985d08a55addc0f5513865081dd5b0198342c519814be53cc1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d8205fe597cd3fa628228a7380d8b28504913ceb21fd057107b55f3223fc55b
MD5 f9593b1411ccfc3591a494cdd153eb45
BLAKE2b-256 e1a15bea46e66a1a692d5a4f496b320ba662cf9c3b11304e3396a4f67e5014ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 492fc5e58ce59445bacfddb74fdc26a24a947ace72201731b9c9fb82f1558b5e
MD5 7beab3e3f6c6078682f8660f48b53dda
BLAKE2b-256 97515d81acfa6053ad416e92871e09672b97ca282c93f0efe80addbb250562e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10aad9234730368d6e3fa0e8d6bacb382a9d8fd038aaab8d5e35c475ba7c82ea
MD5 56734f6800731d7edb60764f8d2408ad
BLAKE2b-256 0ad250ac2790c585b5bd42b0d501a76638745fcdfabc3585d5e77d53df881786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0edc9faa132d57886ffcd8d10d045d9a1fba5b14faacfdf97670c7310f841b19
MD5 c08bac4da5db1bad88bcb473c27d9d9f
BLAKE2b-256 ad980a5bce33d1d07acddfecea403a26a8037b32e43b2f6c018b8b8a5ba26067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03c19e90d5752ff24295bcd7b21e5875f88c7dc366c707c44e343a5738cf6fdb
MD5 30b4e51798021e796bcd93d747b4a0ca
BLAKE2b-256 e05afa0e684e2732a57798a2f62934bc58efc8daca2932574cb63d81d85663a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0da5e8f97d28e2deb1bc7a0dbf4f9dc48eaf392f1b28336cb34ea22bd4577c16
MD5 d08b376034774d147d61b7726e44a8f9
BLAKE2b-256 2110c00c66dddba1a5c302754f661cca4b8625599d726b53496072e1142b7778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 816b4be78dbeaf1dfd55cdec3acc4d202cc9b121bc80442171303039296d61c7
MD5 04510359e9c7ae6b04a5f79516ae838c
BLAKE2b-256 604e12b8e3c0a63ab5c0950129c2b4264fa3edca48f2f984738128b8da1f13bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bfdc24020fba54a7da7763a0d7145ace8924a14ad87c8725bb43ac24b225cb1
MD5 99a860c6637cc0b6047b2c9e6d8e9055
BLAKE2b-256 46071bf3cdff99e8eea0488241fbf7f289fd8cb7addeb6fd0fb7bb7faea48b84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3ef641d87e8e50e72f4430734f2575240c8a024d95063b6fd54942a5197642f
MD5 f76e8ed62fd88dcbe302f39462dbed38
BLAKE2b-256 e73793d29f4c5f0007a81f0d55e242d9c855c14737cbefcee0c8c371cd0f81fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9516f8c288e0a66e207a4869fa2a3a1529427ea6bbc7d1ab657a66ed0ac7c25
MD5 6c66804de57c8c8dff38929494befe0d
BLAKE2b-256 f85b2888b5560a35e25b6e0396c89ca193b78da2e970ab641c582553b107b77f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 18d34b914806070a526f36a70738c82b1876bfd511345f64af6210ac8b2c040f
MD5 d516b69fb79a2ad9623604e57813d66f
BLAKE2b-256 90ebb42a20ab336c7a2af75b959f344c914f207e49831145e3b73cb12c06ae21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fab6d73cf48aa73a1b28afd5fca351a8656c08290721b0d2d2bf4df756211bff
MD5 d212178ca60a527d903f05f93af7a64c
BLAKE2b-256 67c9cbd57baf843617315d467efddad99f797458e5552de502ed4ee018336730

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ccf3dd5e8ce0cd9d0e6d26f8727acf80a238850493b0aaf079a21ed314139f7e
MD5 75cad878aecfa06d8a07ef56a6b861db
BLAKE2b-256 de3e4187d7dd95d47f793f3f07d8e63f360b54fd72bfcafcba9bda8407057f18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2227815a1c191a1d7d5e96639eeebd0973e479a243031e38ab8f2c6aa5efd1ed
MD5 352a147e9d4fe64046c07fee69198c6e
BLAKE2b-256 7bdf3d2813ec3883b26667bc5d521b3665c706794f87b5555749212fc59ca997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eebcc26d6a5a6589a3831137342405410d1776574a41facb50d36d9498a126ec
MD5 dbb75b539c610d1de5700adb8ade3571
BLAKE2b-256 2afdf23cd8034f1c99d5e3cebbe3c5967119d39268bba039709babb36caa07b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6de77ad59437f46d37c6a0b6b48d30a8e5e2ab838dc8595dcfa629cb8d587ab3
MD5 287735bed1155a6cdcca1c5872723c98
BLAKE2b-256 3158879299d37c9adbb73e60d24ef7d0896336f4c27ab9f83a20a95a3d2f3b2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2c548020dde8149e9a03923493912caa646717a7f4154d99d6ed10af00953d4f
MD5 99730d87ec4c9add8b80add9bee5b3a5
BLAKE2b-256 403b5fc9d3f2a4ee44d06be6a4d29928b919369fcf6b57f85894c38705633a56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a49cac9d6c039f98e6eec4480f170d7f075e2c7eb4dfd1d70501020457f00c4
MD5 023665f1bbf45b6e9d209927e8544c85
BLAKE2b-256 7027e058ff7e1d1cd7856020389c9d4fe284cb321f4995e30e1861c153899ce7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0693dd9b1a4c2fd1ecc4dd083836ad4d00ba5a320bda553e881f3267f3b4c33f
MD5 ec58cc93d6d7fef6bb41f8388eedcd96
BLAKE2b-256 6da4372d1f68aefac6fe923ad5293ec496f05de50a172767049963d38684d855

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a70f63fb77f405cbb18d79c0c3a3103b36ea469270ff26eecc79b67a7527383
MD5 0ec48091242c0c368a7d3782728312d6
BLAKE2b-256 9c7dfffc7ae4163b84825768f5b04cdaac361d7b752b587060315d146f5cd10f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc0a719cb1122bef7e78b1963b40e5fb36554d045db72179c17e5f44e6ba75ab
MD5 6cb0284f2c1c866c1290394d4a211d72
BLAKE2b-256 8227221f987a997076c185ef9541ae373adb7c15d8f183e1280597cd50e0bede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2546f33213aadd715ee3146a11ce4bf43897690db082b35387727a7f9fa36a2
MD5 7cfcf36198d8ba2b7cc8e7ca067588ca
BLAKE2b-256 e7a969daceaf8b43a70a86018ae1804da33283c85d8109a73fec8168217cadcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6980a4838b7545ef63ec20b7f7ad1593c6818053f23d8f3fa88e5c4cf764fcf5
MD5 65a02ae8f80ae45597f82ba768a41e96
BLAKE2b-256 7052a5c6b3bfca6bf47b63665962590acdc29204d8ca2a5c57afeaf858d928a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c506d0c1de87c3a56a859637bf75d01630c2e850d32276cfbab29fef3e8c0242
MD5 73711271ae6678cf32346372b95149b3
BLAKE2b-256 bbcfd819d603c9bafc94d17846d6922cf12c2dbbc5cdeaa76e7419aa53edcdf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 faa476d0e026415da57632819dc72da661a4772dfbe6d69536d62344a37cf0ad
MD5 2b0a6f3a7e3720f19886b8f376217f50
BLAKE2b-256 71aacc2b54fa3ab63b79a3e303f3c6b8016d4afd653fb5c5ab2e58ae7ba7dcb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 413555bfe8fcce2a6e9e40361f43234148c4cd953873b6d38250f9cf0ac58e6d
MD5 cc780e482104196400296f5f76d6cf13
BLAKE2b-256 ceb8bd63a1f9a5e9adce2f3b573c4edc2f3c971e60c6a7e79b130d06e21ab77e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6307e4e3189838dfd03533e0fc69de54cfc768863f640e2f234f4cb117549ed5
MD5 95898337266bcdfd03ed19d22187cb1f
BLAKE2b-256 b229cbb6bd17b0fc7c2ae689c3f45daa7ae968b2463636eb4e86bef1a818ce29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2cca39d9ee43c016790de8f7fc356f32147378ee9f29064d8cd7eb7552c01de9
MD5 47b14f2df41890c57394e010b30e9c72
BLAKE2b-256 ace87c68fbd66dec2f2ce3322707922f41405eac0d2ebb3312669cd139d9a3cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 58b149016dab9c0e416310c23ab8646f5e20738ed177617ce73310d1679ccb47
MD5 dccb0765997b00824a7d45a61ace856e
BLAKE2b-256 2a7c9165ffa8872602aa20c72ab797bc24bc185719e0257e17c3f29ddbce7a63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c4273eb45899886cad14e011492351916159db1aadbe6a46c2315536be96653e
MD5 8f4c443eead00c82c3221fe9c35f7063
BLAKE2b-256 35dc1299cf2861ca48169858e6f3b4b45ac4d54d09d089ae97bb5f363f07900c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 136e15cc9178a94aaa3ba2540db6d04cfaeefa71b90e5f55d9077060ffb58495
MD5 938619e4575de73f15477abae149493f
BLAKE2b-256 a4c112694df3974a4468e757b60b71e9a6d8f907da604260f9966ebb45c30e48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71e9c5aa2c0536294c5b48d7c5ff0c46aa250db8424a3d443e56e521f7d7811d
MD5 c9e6e82ae835841266188fdbf01eb565
BLAKE2b-256 30863597ac972ab3e86c01949013bf51e95b1257f3884684998a3e97b406adbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1c501403308c889e6a6a0c1a316b10014e44194a97f22ba3358333ecefead785
MD5 d240d719cd84706d8cf3ecb5be1dc477
BLAKE2b-256 f8f79eb7532873ffec40e40c2b71b35beedbe0b7c621f3d18f493fda6740c801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8df63b928b3ec518e05864abeb4873c7064cd04301adcf8d7ae1c98383c5e96f
MD5 0585d0021adf7b3630a06d674ec79944
BLAKE2b-256 49eacb0accff7de3b021bfbac384f2858c1dabfee358902818a228d654a9ea8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 272d0e5bb32fd8cc93dcfa7fb0136813c0fcd222a0ed2c1d28775f43d220ff85
MD5 28833c080ba55a7e46281a4fc122c9af
BLAKE2b-256 bc86276fd3856e7957efa22dbf77cd5153d00ae9652cc1e18e3f719d0e435adf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9fc2078d92f02a2cde045838b657a8bd4990d9b9038e63e8e8ec6f40cee7e442
MD5 41af41e19f61827ddac1fed4dd1b9204
BLAKE2b-256 54e73b31088822928744361faaa2b2efc5671625995fad61045d75280882d9fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 57ea4f5daff5286d352b79d78b31b8fbb0ef19b775bdcdc459f6847e5e4dc5fa
MD5 c18fafcea1797cd623a382c17492796e
BLAKE2b-256 8625e0017671e87541434085a063f7e3dbd49dd6cb18ef6cd2e5a73484cfc0c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5885e3512d6fdd4591f46980c239a5fab5e85b60026a3ab9cdc891da5851f325
MD5 f0ba8e4f8956462c4962df9378130d61
BLAKE2b-256 7e35cbb81fc3e61b0232f773e85779d1d1d88a4fa1535849db83f4e2f9fe62aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8d5452ec3a5adc8ec17c776b25f7275ab8bc47adedbb5a46f43dd2e509ac894a
MD5 5571ea75b3910365ba9d4c33097d6c5e
BLAKE2b-256 0b1efbe464a034808831ed575b0a4ac70a4c986c809b4554b919deb6ce0ad7d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 244e1efca754dd518f48b5b32f550249f592988c84210f715c68f454b5913304
MD5 1ee931920cf20e7db2a02f354c4f2ba2
BLAKE2b-256 fa9530900be3844ddeb790facb480690d8c9d1003855742b374d8d584a7cf6fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4c9a132f64cefd28a397516b701d98ad857dfed386bb4dd457cce90ff9cd071
MD5 b059d3b914b6fa34e20f64f98e0e7f1d
BLAKE2b-256 7463777ab94773958afc64cde323571e59dd0133d2926eaee810db11510f251d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a5dfe1968a2a754e14d6e269d0b54cdd36bcaff9756acc83a9bba8738edce7ea
MD5 ded1cfde227888034aa2b1fdd58e24c7
BLAKE2b-256 6c0e80cc2ffb1bcf020463e33bad5d2e4af67a96e8ec26ef273829e1f8a56e2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c7ebe97a5b77aa25c54679d1b429e2ea59a1d1283a7caf70cedabbfb655844bc
MD5 b36fa7dd2a89ca644a9eaf49a33fad5a
BLAKE2b-256 31d7b2bc937bfaf8404777d6f65bcb97ba356c9bc920dc956933e4dc490d5c3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dacead8efa341e8d0340861fb71025ee7c706cf84c2af5a03abb9f652002f21c
MD5 f649e5163b2eccde40c1be2331734929
BLAKE2b-256 580fd25435bff13eb083a6bbf4056b27c8ad267b869681fd58c171143ba37e2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 acaf7ebe2892ec7e35c1f4984ad4f5b47174b82e9c126313155bf1d783eeb4ed
MD5 c0dace8ed283ef0e7dc5f776e8a98ecd
BLAKE2b-256 a53d98643fb9814917069f73ff383aac2dbd3f0c3ceb4af9de6642e2f5f398ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0915b59bb22071751000c22f5d6e9d8594a420f6daf05c1274ca4d2119849771
MD5 3fce232b35c545b110520012ba64b8cd
BLAKE2b-256 79324181cde11b3ce20f55f674257a6edcf82feee32baa147a9f9e1c7d965889

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b2ff79f8e3ca0b3de13f1ab179a6d6321bd743e3b5b286c088e9a26b4c5374c
MD5 1d853325dffbdda62fb7647633269efa
BLAKE2b-256 b1468405196f0b3f9279b27d2e1abd40d7ca12b66fdffddbc8d00ada8ab51f56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 595bea88add9911191f39d7b8f1c773ff069bd9a792b34150f77a547d7e793b2
MD5 62928cef6d66a4b1f4a3e9aad2f8f885
BLAKE2b-256 3b4c12f105c80b337bb10747868a5a8bcfd6598604e0fb5ee30541ff4fb98d52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 533b07cf894aac89cf05e9f834f7f58e889a8e31a24856280c8ae91f30d5338e
MD5 8387292c9c5121597c1ae56de001e5b2
BLAKE2b-256 de6aa79d2bc24bc4a1e7b6b802408a4aab2cfe347e2ae575a9e2d5333ae399e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9601f0337e0f0db7d63f4ddd9cfe5c43a8b1c644a7010c1b1da908cd23e23f0
MD5 e0f5dbefe722fd625601be8fb5ce3667
BLAKE2b-256 4876e0acf93f9c9c016ab5d6f41da6cd24e7a36ea21296e207b6149e9874e1f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7131d630425df4b0119600040ef0130e17b16ff81a107e31161258edd7282950
MD5 485f80d518e8eb6dbf04344952759d89
BLAKE2b-256 18b13f4d55189704df5a450088e9a881d0476bc74e01d09776a663030be02cf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1a79f580d990e93c1485755d40a0db87cb98c2d33d9d2a25acb5488c666b8c2
MD5 2edaf78d6c6a650667648e2d07bfb216
BLAKE2b-256 938a918838a52a0fbd05ce2f33a5e7c0e410848f733ca484c5949ecb3a8bca4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf783fb8ad76c2c57701ff1a46b3b2398a29582d54264b533f81ce3cb34db51a
MD5 804a3426236f79ea69a9f55a94cb62b5
BLAKE2b-256 7e60fa38252a9a482bd3947b96a5b5805583a5343f10f256ad5a9ad486bfdcd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de76f7b02b14c256c925bb5f29d421939b90a87db32c1f8d80fbb6b9ddc315fb
MD5 4d3c7af96e52a8fa0e1d24c0282a08b1
BLAKE2b-256 04c6407788f4e033adbe6fca4cade21eead0027d01a4727290602f774af0e528

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 793fd85febd5dcce1b97c052e829683f3c372679566c577e50dd8cb0ea0d5264
MD5 6b8fc42d5366309a9101cb7ff5af4495
BLAKE2b-256 ed544be6e0d3db6ebad86c19a13ab094c10f8cb09550a844cef6b9de0c2ef20b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 645720be15886ca011f58bd0691f254c577319cdf8326e7868ef479022e3d8d4
MD5 4e684d3bd93c61dd69f774a2a491b3d2
BLAKE2b-256 bdeae09e9c8f353a516c3f1738020a56f24a2f7dc8c545d2111080f8d63f58fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be153c8c7a7c55c6ae1fdbe38384a362e93e66e232677523a2788c8eeec30d92
MD5 94c7b4697811990a03c2284560e3f8c0
BLAKE2b-256 71bf19d4cefb418d709cadde433ead641b94b2c96878b1849ffa3294722c224a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2bcaa76e82ecc1032a6521e6410f7d9096ab8f2f0ca4d8fdb16665ca90461aa7
MD5 b423849c8c2bc3b21c44101cc8f1d187
BLAKE2b-256 cf0a39f7c0513f16623192ce90dc234121e1e9262cd7c66c2033dc4766f20042

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 35b518c2ac92033ce6cd255846d65c4d9ced72d7297897473047d8d7d7de59fd
MD5 da63f00ec33c22670a9f918eebdcff05
BLAKE2b-256 22b8f9630042e1c642cecbd51be09f1490bc2c895e5050f32af81908a87d599a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68ffbf30ff05f28e8a1aa378ed20e631161b868521016adf974291a4546f0286
MD5 1a98a92caaac46de499d3c454161ffd9
BLAKE2b-256 3643e6a659380bd763f24de0dbafc92f0bdd6fdf631c50d9fc145fc15b5a84e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50080e6ba731188025ad618234df19d61e8621ba5552691dda888a34d326f8cc
MD5 1ff86c696ced039e5894f39149916ac6
BLAKE2b-256 dbf79919d9ec36f887629042b77acf5cfa6ba54523057b98e932dbba2f06d027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac3f5174a935f18b00803d48bf296a15fa86913ef70962b1f3d1f1e62f03987a
MD5 923e701e0583cb46d1affed831659b9b
BLAKE2b-256 1d40085eb4dd41af8da868585f482aef7eda38d317d8b569e9b1b0e654f542eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c129aa98c8439adb92a9a8703b761fe7bd528e0677e021cd0a63591cf689a448
MD5 2e47e2eca927eeac0aa0ed5dfbec87d9
BLAKE2b-256 af83f6f0093c5edd812021a3c05b65ade09273b57adfde7c1a2f50eebcd4d095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce434378b1606722be07fa705d6ad59190a0396de5a440bbf45f377a2889a600
MD5 c75e25a6979bb8219e2c37815702a40c
BLAKE2b-256 c96d98f0245067e7f6c4a870235d0077dc23b8aca77b339009edb8df7c521071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f76589ce0479e9e50ad7032d2b2ad9f48c52f5efb5f1f7e04b999b459a2695b9
MD5 94880422d1c022f06b288da2b6975f8b
BLAKE2b-256 2a383dd54433024114bec0b3f9c466108787d1a05500a208ecf62fa9d7b60bc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee62e7849ba94d67ff37103340686aadc9de01cfb6f1679f4f8d97f1c60efead
MD5 8ecd5bd3b544f0a967a50d2725452dd6
BLAKE2b-256 3c0d2b238e2a7047afdafa4fa3f3e61c52e7cdb1f3e109ff115e3d881982af78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6039fd36d2adb2407da21e12f0899f05badea6b5f63aeda85beb202d6c1ada4b
MD5 41f7c53ed3d379f65082ebb64f4f1ffc
BLAKE2b-256 f0f6f5c26d45130eb23262c231c3d9fed40d141c03e0301541dd7baf8741251f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e3cee76830daf9de449a86b8d277ba3d92ad57621566fd4090fa5846af70469
MD5 3d48ea25da4c8f4dbaa09db68c2ffad0
BLAKE2b-256 423d07c121ff1aa6910af99411786eb9ba9452da31f74737aa4f2af9245c258c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 83eaeac2db9cc3269d3bb29646cb4cedcfed186b68fee8d130e4a1fdbbd59f9e
MD5 ec8921371e9498afd878047386dae28d
BLAKE2b-256 a5e96ec011777c588da9acb19b3857d7549f93ecb22275367737880c8c76f549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9477053078b3e009784135b0682f562eedee9cc0b08cd698b2179578037a177f
MD5 e7bac86f233b869588fc87e22b619bc2
BLAKE2b-256 86e5fc9fce85d68b120c3953774bd5ae15eb6db5c05274a06d5b97bbfa7312b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa628491ea750397d51c7bd62b5e7855e3a92e1204ce9d24df7686ed278d2727
MD5 ccfc982c6cbd811d0328365d180cc5fc
BLAKE2b-256 61d86ba6fd570528847dafa3c4c321bff3b81019ae5d5004399ea7ce696f8133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 657ceb3caa752bf15bb7a23200c60b5af0d06f30b7c01652e63271808564408e
MD5 235aeb0594bb64bcc24eaa0f175c2436
BLAKE2b-256 4cd0a18cc003a667f588f41499e1475c028be0875c6b6f31980c057ddb1d68fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ecaaff2b249b003e0bac17528951fe3c0333b160f35093b5608e7124490376a
MD5 5dffe6003bac01485506c1802d884d6c
BLAKE2b-256 4ed261c5228a82f5dded67adb07e88b39e2258f68d1fc621d7c72d33285948b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86f8572306e6a2fd3d8aca89e2e860a911859e4be365da5bff545db3814c1eb6
MD5 d0dd0cd0a3bf34713af261ae9d5a16f8
BLAKE2b-256 1ed6eaea927c3580be7b891bd6c54f570e2b6d337e1d3d91230c5fd180bed12f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9331cab095ce39e7d41b669d041688d71e4892ed175ff9bdc87ec971324c9f46
MD5 64e7ea7275cbc851d3e8691136907fc0
BLAKE2b-256 c406af9a82f5baa603cc205eb65bfb3e837da4dee5ca7cb8ad35af4917b2d8bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0a79d0b48d6e9437b07b56c323e066fe1e3512340f97eccff1dcea987ae5dc5
MD5 37a42f2a28959efd6aa70c09d2199fe5
BLAKE2b-256 aa5351aedab62a35b082d6781bb914be40e34e11bd452938609f041ac2a32141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b42ce06b98d0e6fa1d256cad1e290b4d0d936a18c1f185fff1f0ae94366da69
MD5 35322860d56ca58370c03ddccbeab66c
BLAKE2b-256 41516ef09f70d8d751833a40957f2a3a8d846e9d454daf3517673fa019f1cc0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d2ec35d79b48650b96965ed294582d05cb9ba619698598a4eda5aa940022987d
MD5 2347e7c20c0d9e639e21ab9502c11c9a
BLAKE2b-256 35f128ec3776cb7014b92f0d7a7bae2f2060f1b8ea9f5b2f1bb1720f1d59efa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 882e123fe25479a0e633eb92024718861c39ba137c77b6d7abe69dab21877a5b
MD5 2e829389dafda913cd23d67cfe9b29dd
BLAKE2b-256 ed87f53fcab2c0a08bafd784389cd10872035bb8e83841981d0d2aea7a1a31ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1dbb7e69bf4b2e865399fcb7a5aca2381a42fd0697ed8ca112191837cdc55df
MD5 59ccf79623da9be17657b0a92cfba182
BLAKE2b-256 8d1544289fe3f673610f26a1e10e93ced423c60a88789858b275c6c34bbd5387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d12317c69f6650dd9145e3bb4811058c7874fb11496292719a4831a55436c0f9
MD5 00a3518694d5d6f1f8b4d9db9f91235e
BLAKE2b-256 1210fa69d88ae1033326d4938a98082d2c32c11b6c893f090c95097df0aff5ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ca5bfac331430c35ba5ef9d4e7f77c3b467187fb21015e0c7d8d729e5b001ea
MD5 41e28adcaa70b8fd86a3256a1f621b62
BLAKE2b-256 d3010aad0c88b5dd1aa0fec4ff76c744902ed526e98ee91e4e405428cdfb93ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c77f3fe3372d5febd89503c853bd7441179503af3d74d41e8b77fe00bd15ec45
MD5 5c7344230f319b76d72dff6a2b0b825f
BLAKE2b-256 44cec788a7175461db304c84de65b654dc0b5e773e013559d81ff5f2737cd85f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyglobalsearch-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd64308f67156033e869b7a4cb5bee15ec8500f0ea6f2d5a84cd84387ea45daa
MD5 ac359cb65439f4ff23c582dc08f89ca8
BLAKE2b-256 083f9084923c061be08ab2dbd2bed58dfbbafbd3963904b68e95c990addf59d8

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