Skip to main content

No project description provided

Project description

Batch HTTP Request

Overview

The Batch HTTP Request is a Python package designed to handle multiple HTTP requests efficiently. It allows users to send a batch of requests and receive the corresponding responses in a structured format. The library also provides error handling capabilities, returning errors alongside successful responses if desired.

Features

  • Send multiple HTTP requests in a single batch.
  • Supports various HTTP methods (GET, POST, etc.).
  • Handles headers and request bodies.
  • Optionally returns errors encountered during request processing.

Installation

To install the library, you can use pip:

pip install batch-http-request

Usage

Classes

Request

The Request class is used to define individual HTTP requests.

  • Attributes:

    • url (str): The URL for the request.
    • method (str): The HTTP method (e.g., "GET", "POST").
    • headers (List[Tuple[str, str]]): Optional list of headers.
    • body (Optional[bytes]): Optional request body.
  • Constructor:

    Request(url: str, method: str, headers: Optional[List[Tuple[str, str]]] = [], body: Optional[bytes] = None)
    

Response

The Response class represents the HTTP response.

  • Attributes:

    • status_code (int): The HTTP status code.
    • headers (List[Tuple[str, str]]): List of response headers.
    • body (bytes): Response body.
  • Constructor:

    Response(status_code: int, headers: List[Tuple[str, str]], body: bytes)
    

Function

batch_request

The batch_request function processes a list of Request objects and returns their corresponding Response objects or errors.

  • Parameters:

    • requests (List[Request]): A list of Request objects to be processed.
    • return_panic (bool): If set to True, the function returns errors encountered during the request processing as RuntimeError objects. Defaults to False.
  • Returns:

    • List[Union[Response, RuntimeError]]: A list containing Response objects for successful requests and RuntimeError objects for failed requests if return_panic is True.
  • Example:

    from batch_http_request import Request, batch_request
    
    requests = [
        Request(url="https://api.example.com/data", method="GET"),
        Request(url="https://api.example.com/submit", method="POST", body=b'{"key": "value"}')
    ]
    
    responses = batch_request(requests, return_panic=True)
    
    for response in responses:
        if isinstance(response, Response):
            print(f"Status: {response.status_code}, Body: {response.body}")
        else:
            print(f"Error: {response}")
    

Contributing

Contributions are welcome! Please fork the repository and submit a pull request with your changes.

License

This project is licensed under the MIT License. See the LICENSE file for more details.

Contact

For any questions or issues, please open an issue on the GitHub repository or contact the maintainers directly.

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

batch_http_request-0.1.3.tar.gz (20.4 kB view details)

Uploaded Source

Built Distributions

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

batch_http_request-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

batch_http_request-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

batch_http_request-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

batch_http_request-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

batch_http_request-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

batch_http_request-0.1.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

batch_http_request-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

batch_http_request-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

batch_http_request-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

batch_http_request-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

batch_http_request-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

batch_http_request-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

batch_http_request-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

batch_http_request-0.1.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

batch_http_request-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

batch_http_request-0.1.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

batch_http_request-0.1.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

batch_http_request-0.1.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

batch_http_request-0.1.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

batch_http_request-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

batch_http_request-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

batch_http_request-0.1.3-cp312-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

batch_http_request-0.1.3-cp312-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86

batch_http_request-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

batch_http_request-0.1.3-cp312-cp312-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

batch_http_request-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

batch_http_request-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

batch_http_request-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

batch_http_request-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

batch_http_request-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

batch_http_request-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

batch_http_request-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

batch_http_request-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

batch_http_request-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

batch_http_request-0.1.3-cp311-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

batch_http_request-0.1.3-cp311-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86

batch_http_request-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

batch_http_request-0.1.3-cp311-cp311-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

batch_http_request-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

batch_http_request-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

batch_http_request-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

batch_http_request-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

batch_http_request-0.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

batch_http_request-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

batch_http_request-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

batch_http_request-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

batch_http_request-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

batch_http_request-0.1.3-cp310-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

batch_http_request-0.1.3-cp310-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86

batch_http_request-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

batch_http_request-0.1.3-cp310-cp310-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

batch_http_request-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

batch_http_request-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

batch_http_request-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

batch_http_request-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

batch_http_request-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

batch_http_request-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

batch_http_request-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

batch_http_request-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

batch_http_request-0.1.3-cp39-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

batch_http_request-0.1.3-cp39-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86

batch_http_request-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

batch_http_request-0.1.3-cp39-cp39-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

batch_http_request-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

batch_http_request-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

batch_http_request-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

batch_http_request-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

batch_http_request-0.1.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

batch_http_request-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

batch_http_request-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

batch_http_request-0.1.3-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

batch_http_request-0.1.3-cp38-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86-64

batch_http_request-0.1.3-cp38-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86

batch_http_request-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

batch_http_request-0.1.3-cp38-cp38-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

batch_http_request-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

batch_http_request-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

batch_http_request-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

batch_http_request-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

batch_http_request-0.1.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

batch_http_request-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

batch_http_request-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file batch_http_request-0.1.3.tar.gz.

File metadata

  • Download URL: batch_http_request-0.1.3.tar.gz
  • Upload date:
  • Size: 20.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for batch_http_request-0.1.3.tar.gz
Algorithm Hash digest
SHA256 09d650725d9229b03e6f275952cb043f3d8b64081cebe597f34944c60ce9269e
MD5 eff96d95f0d10b36b0b4a587b5b40427
BLAKE2b-256 2fcec655a62c28dde02f9f4e8d575f7dc65bb3fe8a3c78bf80e33bd3adda38c2

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9a9ec01a0ce16849848d81b9a61ec0a8f35f820dadb70b7fab2e689140fc57f
MD5 adb340bb0381a4e227fdbc16d0334e0e
BLAKE2b-256 797656d87fdab3eef1f3340e62477a7e553e2f2e0adac9a9aa582e84de2357aa

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13c106058eb2cae58a4915f095e49b49c7454b884c83b2e36880ee4fd3d869ba
MD5 0fcf29f33cc621b76fc1c1eab8fa1cf3
BLAKE2b-256 0a5871b36a36a8f209b109ea34aecc8c9d219eb70f9f28c04e6d989e2c76a5ac

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c105944996d9af92e868905e0313bc125c59b4689af24ece4d7d4534c653b3ca
MD5 b7a3eed145ff18e8ea6550c58aefda47
BLAKE2b-256 c09e2a852b2fa114faf365eb58d230168eb51ff26c4d1eb9c098759902dcf2f9

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac39198167048d04c975c11ebbc0addd9062b91a6d0cd8961e34f4f744687ceb
MD5 11b6d73a1272af0344ca93c479779e89
BLAKE2b-256 e333804c78c26dde0636d07524d798ed2c69eabeb1625d7994ee982c69cbb9e6

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 687b5c89635764685b3681afd26e8136d83b438ed975bb59d3ce9caa1a2eb5fb
MD5 062acf620241a4b86cd6619360bba9dd
BLAKE2b-256 d8b1877038ba0bef0f1ffb4e5b56ac22e67a83f293b9cc01f76e4c970a9eb792

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e1caec1446546a2cc7f8a3dccb4f2a107b6f533c2c901debf5085b6e9658d854
MD5 2b3ebabbe16296aa38f5e77af864cd07
BLAKE2b-256 34dfdd646468b56f3a38c841641ddd27bffdc81e89ef4063ad73e585acf30b44

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6812a36d5ba500ae7e2e75faa507549ded1eac04628ad65fc0992775851d8866
MD5 ee855b3f049a5776c3009887da52ebaa
BLAKE2b-256 6f8e7bf3c58d0007329ed3d4ba2aa31517e24bd41ef1fe5288f5d05b4339cac9

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7fe80a600c2f96080c1c9a1d96f60e348650bc5469478233fb4fb3f06b57ede7
MD5 4ab197b80339313c6d35d6b6d70c2107
BLAKE2b-256 c7fc622860390a0c22d73dd88fbfe37a5bfe153469c0c795a08334f82d47f368

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45992ff16b2ba5a14181dec492a0306af25e4bf51f3a76414a5bc51b0caa8638
MD5 5ceea8d2b2e040947c0fd5356ddf1288
BLAKE2b-256 5dd6a73a207dd374c6dbdeebdaea9160c06340c1c7cd8c5dc83b4f013f049759

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3730f26c9f0f99dc3e04cf3b451c639db754cf5bab032147e294f03fd165225e
MD5 347843f1bc43e450e9926d7f1149e5cf
BLAKE2b-256 c0c9ebfb8a50b93234abeb1a0f84b7db0285f37f3076e1b9a33c96e471bf0bad

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a94ce1aae130b644bd9f733b9f80afc82d83430918f30dd359113ce70cfccba
MD5 a4998a9548addacde4592f9a1e3d51ce
BLAKE2b-256 3c8d558db594a6ddbdcf58fd1055ac59877887d5dc5c3f4910e34274e1691949

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 623ccb05fe42e189c570fa33f40090c6b4e50b3932c5cc6b5f018098df4d1a6e
MD5 fdf41d6b8f3d1a17d9923399de884644
BLAKE2b-256 d672ef7a2e3e8cf80c12b30b85e562eb1cfa3b8aaa1d9809151adb74d4da0836

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1498d30a5ad661b52a566877bb00e839ccb052e16c1075bb476e6c62754e99a3
MD5 144d15662a9bf2ece2808a19accb0b04
BLAKE2b-256 94524adeae3c3ff65d3cf19678fedb0843cc2230fd2ad1805ec60a0ba9b64a02

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b527d83511ac67fbe2da4f19d6fb96ee456ee1456ad292f1ebb1ec40fb1e88c1
MD5 e7865a61b13d8a4fe65422b4a3cf74cc
BLAKE2b-256 fa01d651942b4a02d2513b4b9bbe5f7795b42d7f278d08e6dd6f4609710d69f4

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae25590db07a029dda555fb786569797ac3c9af90a33e73f6f5eae3e8bf01107
MD5 ea5f482964a427185bf8e4c3ad184030
BLAKE2b-256 e88bbbdee5ae4a6b680beeab7ce3afb217af6a1370d88a2ae958c3a804bda61f

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fd480a58423d3b87e043077fde555e981454908cb46cf61b9ce14e8b61ac3e2b
MD5 bb474f49f26626ac27bd4efd1eaf1a35
BLAKE2b-256 09c1895c3a3b2207f5f9befcc23512e61efd2f36855c925dde4ab35e411cbf3c

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 107c4e3f223cebde5d89079404870ab71f70ad5f3b01ec54f468a2484d4ded4f
MD5 7de954a28519048a2dada3a22e1cc67c
BLAKE2b-256 b09e48ba76c40c664b0e82cdd6ce9f9c023bf30164157688720e7a5366f16067

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51c053547c7e1d0a0ef6b6fe1d3aef3a3709a40f75adbab064698f84b005b774
MD5 386d64c88222b803429411cb3dbfeb19
BLAKE2b-256 920b27ac56f4ed0acbf6ef016fe7ca95f9ec15abdb036bdd56fd707151faac2d

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79a428fc07367c617c2c12cb29a14774307d5a0d5a4113588377be5fbb78018d
MD5 56060805cd1e6c9759304b52841c43e3
BLAKE2b-256 5fc057d73582e90cb42b913c6b2ba720174d7b1c9c888f80cd2e23c3e9cf05f8

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 452f1e563f0535c3052fe797902fd20aae07d4caea661fb2d88cb0c48a7a572e
MD5 85961117951d86709c82f5fb9209b4c2
BLAKE2b-256 291113d9f97ebaf99115f5c36f1d8216df2e3b754924ab2bbf139137dc221061

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 169e38ee584e1a0a0e015263e03ef9412caaac8a5b311e3487df7f7238ac3a96
MD5 7ecb4de87e1a8c67899f5f610e9b52aa
BLAKE2b-256 23ba6895856ec0240835f34e16a4b7e76272247a40b1d1372e85c7d702c18753

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63a2f88c13828f0b7d34bb8fc2ad3ff13ea3de6365aa3aa90c5d3c011796aec3
MD5 7e25d2004d83de09804e1552f16e9b49
BLAKE2b-256 823d086f05a58c1323d6f56ad603090931fa22d615a57628eb248cd91f5e076d

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c01db4e67faf624e315e038410df4128f7c9ee5ace2768b440e63cdb282dd1de
MD5 83de8804585a6bae930860a3b4bbda03
BLAKE2b-256 3862c77015dc6b581ec582f477a096ce8415145bd7f964eba85855be56a7636c

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7bc63cabaca83161a09cbb316874bae3fb943eddfb5d3c550c5d254083daafba
MD5 87527f0317de865098a755a95c2d0b99
BLAKE2b-256 c9794123ef968e43205e6d3dfef0f0e82d3e7b1cccd2162884cc4daa4d1a48a4

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6297b06aea95de0f8317c8ed0ed7bef213e9231aec79a9aee95bb5a6d16e1cb5
MD5 66609e96ebc37290552fb463c0d52544
BLAKE2b-256 0c3e89aade3e765e15544d21522a57bcb7eaeacbbd2cb7ce08c243100451a7d7

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 fe988f2e66709325d963b24037239db1f776632024530d362f77d4cf0bb175ed
MD5 b8fb59395545d50da23e9d8e4ea63e89
BLAKE2b-256 22a2a3a0e1d54443bd90f20c807e38f2152afb9055633ae51e1c3b563539f84a

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp312-none-win32.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 70678cbc260b736443b406b5b543b9ee584dc39cb80da2002426d14e2c950aa4
MD5 43e7c86a096860bb76c9ace5819c2373
BLAKE2b-256 b0bc0880084d523347b818efdd46c87f6565bbf66500ec06f38a0f3830655dcc

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fab240bda03326ee353cf734290dcf64d588bb21a5fe71e2b79f7e0f25899fd1
MD5 cbb1c7c064427482e53c1541edb6d267
BLAKE2b-256 cd1f459d2e556970accd0208b4eeffea6a267e3520747840681149520d57a4fa

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89a9646803164938604ff4ea49a0ccab6f6d72f1e7811ba5f64fe0083b3d5153
MD5 a511a3cc7755a424e69031a92eff0123
BLAKE2b-256 6240eeb7332d7ea7eca95ce87f2e82e96b6abe80c79d6f12a7466de1792d36a8

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 20472aa8fdf8b46e3ec56a175f3c74676274f74c000a97df583193f0df1531c5
MD5 38cf834ac3d2e166854a5b6a39511889
BLAKE2b-256 c693c6043689873602983371ddf9cced69af9372da2800470436249e01f6b3de

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5927692f4eddfd54eb335cc47ae02978a4b89304151d3aa156d7a191ae2ac39e
MD5 33ddbe3566c2650194133d4ec42d51fc
BLAKE2b-256 cbc16d7f777996072979000a65e76371bb266dab215057e39a8cdba0891eea28

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ab7edb4b023f020916849a2efb222837b332e0b777f3d98882075da955c5df6
MD5 1345423e6c8d04ef0cf2588b88322e34
BLAKE2b-256 96d2bf489d3459fdc7f7001960ac5f83af2e61cf9024f1b35a5a27ba93953c91

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e58223a0185297830ae2fad4ccc7868e326e8486c16eea882d047fd9e4ff309
MD5 9c2fdb43906190d2a235ad7821b60e58
BLAKE2b-256 65f857621834824a2045ba661861a6c5db7dd10229542569b0d8471709c16bda

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4bedee1aad7b5ae829129102906a4d885d4dd443dedd93409bee9148dc598239
MD5 13772598ec809da7410aa9cb1c65dbe4
BLAKE2b-256 56dd480bdad90d88e53fb6916f7defb26d5a025ec648ba47941b4b4cf637f0ea

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f2af6b87473c961bd707920b121d887b686a6d848f673b06e46342a2cf2341d
MD5 287ec505d79520d49e704fc7af533caa
BLAKE2b-256 7eec8b8234e8f89c83d21134b136a01ba9625f999ca55f279399407b69fdb83e

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1929c08c078ed0c2c48b021e903e4cf96ef7d6891fc86ccc565429c2a6cf782b
MD5 7264bed3bc50c5bd1777e6b9678b9e60
BLAKE2b-256 8063cad8ef882044dac68d235a23ff5fd0931f548b38e36fe0287828b40b1a8f

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c31ca73e24389ffd5068500bbcf9c8414d529005053a2595c856c05c78d4a94
MD5 08c15a4c000d932924a400cc73aee143
BLAKE2b-256 797bfea30aa54815760e806849ef2a22c864ac2ac4cdedf92cb10e49498dffd4

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ad97ddbefcc20494e9ca4463ff4cd52a1d31cfd74d011e08fd34075f4aba7ce
MD5 b0ebb113cb7dcf12d0f2e57678f91969
BLAKE2b-256 5cb497985178317ea15a4fdf9ad89c0470bd294560693ab1941c2de02eb89010

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 e9e24c44595282d71eb827f95d48ce865fa29e9fa30c17d2fac4e58d9107fbbb
MD5 4c47e5fa31b3b327f151371feaeaa527
BLAKE2b-256 84d47537ee0ba7e88693807450b215f990d5d912c221bbe2f7fed8aabc7c3edf

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp311-none-win32.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 5f3664f8b6657c640fe1dab3dce7575d76327f4070beec13f19195297d565b0d
MD5 de26b2509c03dd95792c5447e0390dcd
BLAKE2b-256 7c8362e76ef8d90002bcbfdd2d3791539eb6e733212d0eefe0daf579db9121c9

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 655bbc8660e703de607739db47e2af2e89010ea8b3949c4cee221941dac47649
MD5 0f7060c3f2c64a422648d17f51b77c37
BLAKE2b-256 cbc8aeb6f77ca9f2f5e0095bf81d419f1ffd67e9a2daefdf550823946f2d5345

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 573b0a2314fc696ad7e178ad1d88c6d64808684d1b0b26df8f498a251dc7d40e
MD5 e3d77152436ab92049444f15b2b52529
BLAKE2b-256 97cf68167d6a8a35f592500e8a0a9f9eeb8ab056c072349210b16303936493dd

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5b7f056aac3aa16f3e240030c876dab1b0512bbe6d581ddff1ada8b7b46339c3
MD5 23f2d38dfe7a81f9b5ecae5ec25b0885
BLAKE2b-256 0c9587cdcc14a4ca6d3ac0e55f2609fce94a0b5142de97b68b3a06d2be4f73c3

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf64e7a07c6e9891ccd2e8c85d41bfef784c572aaed65530efc50884219feb2a
MD5 2da236fb7535d88379e080e7986d27ee
BLAKE2b-256 1cc6b8b2462ccce0508479d25e05959d70c0ee3ae1ecb76eedf8c7d7dc685724

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6203b6ab5cbc5b500abe2e0b754a241025e0458feb33ae76433ed79fe924e680
MD5 78bb95ac738ba4e63507d2f977072c85
BLAKE2b-256 64ff8626afdcbb5b781b1d40cd91d1405cfac3431fed98622e3b9c8e59fc6c6e

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b6095d36abbf9d730e77965b60dfedcc2b2a1ae32aee685255e659c98e33c1f
MD5 ec9eb428beae6eef8cdc578313da942a
BLAKE2b-256 8139becb8a47e9dec20242b2f3c4898ce6d2165b10067de920621e10ed276901

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d3ab8e1640f748ece084da51b82cf29b7ca8da8d0985f39ea3b700cfdce93f85
MD5 b3dc6d3bfffe0470e8418f26e243f040
BLAKE2b-256 2dacbb46e42d30a29fcd791689f9bb0bf11c65e349e97c992a9777f5fc3f436d

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6774080f0f25b0c1ee4c895f71feb9beac08f21b0a952105fb13631d6f341f62
MD5 0749128687f8054e3bbf8beeb2fad2c7
BLAKE2b-256 5d4dbe18ff8999524d5238c8b794a51c631cab302ea74683f41b598a9217852b

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e065ab3ca3d20b10156190fb9dc89168c0734894bc70307de3b1d988fe08b24c
MD5 4afa5e1108bc561852f6e2920af98359
BLAKE2b-256 5d059643092a4f7458fd290538e392f26200d47c38820c2bd23ec0180433ef69

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 286d2029a063a005c04289922054f0463ae80884ca122b2828e5be548014f8eb
MD5 5b7bca27e39012dbd5ff38d37183fb4c
BLAKE2b-256 38689eb09b888f2e302d8785aec5a7006b647bcc3b55104ca880a5f3262cd825

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d067fa961be7cf49978b508ff2b1792a534714d95eedaebe21bdc0b6b9755a25
MD5 ece193d63f516acb1243d8920a8ae94d
BLAKE2b-256 fc3e5d2d7b8d003e5f3b0f62dbe85b87097c0172964458b8ee0d39bd3e9b11c3

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 6fe5adbfae1a71830d10f5166b12b024b200c89efc2fc5eb1a59ef95fd17b072
MD5 843e4d47c1a7f711dac6cf38218f42b5
BLAKE2b-256 31923b3ef411587d597e44e2f0f49c02a40fadabefa10dfeb0ee5f91ccad69f9

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp310-none-win32.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 d9f30b2e95aeca313503091f6cdc9c5fbf66dd20b0ef5d3cd4ce0c05bdc3139f
MD5 807d78019f2ed1a329c7fbf4c9bcf4e9
BLAKE2b-256 846b48c8235f38a3a91506e50ce270ef447b6b880560cdeb99163998db085b93

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b3650953309803282498e52bea806ff64f9b70dda455d207cbcb85db7be8933
MD5 4fb2f102aee73c92d3cbf07311520478
BLAKE2b-256 bdd0ac1f4782c896c6a8ce81e543cd0f7b1b09c38f015d7f02774fbe44af6439

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77867aa5df93547d65328e1c4fd9066dc9ce41c4f5497541cd16a45147d70d33
MD5 8183231e46e7a94addd9515b54d1a7ed
BLAKE2b-256 7f6ab793fa8a3a0657210f09e0b17d759f33558792d224d112f336d957df670f

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72a1f7deae966776ef484eb1defeca4c72527c38d78da60db9a44b197f280c6e
MD5 7cf28d2c78bd9d149add650a8212aac1
BLAKE2b-256 d461a96dce4f7741a17ea1965f566b8e3ec07d8f6162701dfd6bfb166c4a1d09

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52e8e2506067012980f4a899b9d6adf2026b307553cacb4d33c26788ec631093
MD5 b6f642153539fe0c0b9983f102eb3814
BLAKE2b-256 623abf972a8903d3e27856504e8426a4199e01f40b8f6d6debe557e71af916c8

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2374f9c3e86c98481e08a9b56fadd9dc660a25702ea1fe516fa3e964ad73e4c
MD5 6b91d23a291e8fd47de88c7915d6c204
BLAKE2b-256 bacf7520689548ae559a3188fcd7aa7741a89709a6ba61bdafff4af53b0a126b

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a1567ca4341a0271684fe97fc938a2d5c725bc41f156f317efe7736918033caf
MD5 ed2b7f9cadb0c5b5c36604872f06a28f
BLAKE2b-256 9bdec2e8cefd318cb224b48edbfddb21ba20598191e017fb4ddfb31b30b8ada4

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b0ff88a021f61a8a0101539e8592f7da9f231712fb179498331bf9a29247288b
MD5 51454059ad5d07c05ca06ea1a7320252
BLAKE2b-256 49fcd4cd987ed3bca8c29f649a90821c8ab994202137d752b135a2877ec65183

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e8823e0c3e9f532edc9cac53fbbea6ab0fa3bc502a0e6ed99aec9ce87c376887
MD5 10620a7a55ae1d18445154fc58731229
BLAKE2b-256 076b9521d850529eeb03aa6f8a386167203d61b3abfb8af16cc4b6ec528c7a47

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e7a0df9502a43075bb47d3250b03d0ec812fcec6fba05465a9dbfbd2037241c
MD5 1d2d010383f41a648dfb37417e436884
BLAKE2b-256 520930ddb5284b19e395004bc1908228a4b3e7f84686312b1371b2c8ba60f277

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2d5df93a4bdc3a8af648148fc23d3bbc1ce83a489dec4d7500559d89510106e
MD5 0eec47919c8177330fd954acd362404a
BLAKE2b-256 cb48c2ee26bc969ef35fb0fcf208225a9a8447a8bb911ffff52385967f310c36

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 8323b741b4a8bc48ea0a7f5cebeae5dae7e963318e4a1053b0081f5a4c896ae4
MD5 43ddff8b4da1d9b37848942e0f70fa45
BLAKE2b-256 aaf93f5b23998e2e6a2103f9741e4c6a1d500ecd18bad5e7d343bf0ef8c5382c

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp39-none-win32.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 0b6b703bc1d04b441eef54a19da26a11906c31905b738ca00423e510470eb1fe
MD5 7399189bfe016cc1908b1b87affdce61
BLAKE2b-256 b991f51ddf28d4a41767b5e5a08f8db59ed66c598eba1087e82f1c8775d55c2e

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa799438b6babd5a1f99931d66b3de822b04b9eed79a3508c1cc9bdb629b8a7e
MD5 7888ce3bd2ede96c9cf0df20b9b73a14
BLAKE2b-256 7110a25d845117217125335b8783dfc686021fd7732d3e5ed9a08bafd84be83e

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 103e7e13ad7d3dae3ecc15fdd2220fc3510093b857d178017aef332f6066f096
MD5 76795c9baf5a23b54a8ea9ed08183761
BLAKE2b-256 1ca7888e2e712ec53b1b2c709cc6a86bd531d392402502986726f39e6f36ad9f

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05df7ce3d8a3bc02358804413e4d3e702a213fb64fdb67c6afa5b3eb24026c90
MD5 e4cdae2bedfb6b9c532e07206d15ef3e
BLAKE2b-256 a592fc49385f02c82ee32750ad62c66e7942edfe3df075b479d67a404f74ebe1

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b8030b875ee452415f812155c9c78556bc057fafb070937ee81f6c1f138d7e8
MD5 bfa806729564634b35cb0b6dcba0d98d
BLAKE2b-256 ddbc1dfa11f46658b7cb151f8b39d186c11e0771ca4822be210b4c7a117b97c6

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f47e01fe0f8b405bd666be26476bb94bef26ccfbf9c4406589ebfd96ec596aec
MD5 ef7bbd9bd566b47d1bdd476a0036cf8a
BLAKE2b-256 cd49cbb96d70a839ce0d637f12a27c9ea94d9cf4fbefa587a184c334392737b9

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 718d6f60386a3478e7bfa82e4baf9bf34a66a1a6f5686140ae6ad430b58339c2
MD5 e7ddea1a03f76d621d25c521760f9247
BLAKE2b-256 557c9c2469230ea883ecd121a4eb8689ec69c1752749da225a7771823e0963af

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5711ae5740a9b6f5e3480da5c16acd08bca440750e57b0e859eeef49f075487
MD5 cb2ba483f4e1e51be827e8e9fe092391
BLAKE2b-256 e1bdf3f6f7edb8e410f668bcc34b9d7e5f00d3104e8d8c0f2abe5c1a7f7b320d

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 404d167125314206aaf91bb5671161cdd040862ac71a6927e5a7c36988ad4d82
MD5 a2ea17997e0b3e74e6d5a4c1f73c39a3
BLAKE2b-256 4827e25db91eb4505fe644a56405fda4bf9275adbdce3e7176cf7d41366959b2

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be3450b5e14d023375edeb2d44301dd7a588cc92e587ee1b67c7db9d6fc04bf5
MD5 c8b55be5d09d0d4da1d81c41a238a2a6
BLAKE2b-256 97de9a41dd64e0ad4519177f430d7ffa2380a86c44f2eb38f4096f5932382b5d

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc73e48d0a5b546e82f5447ec281ea11391a815603a73ea3753efd3298b2ccc6
MD5 78f27a5190ac76becd931396887531c5
BLAKE2b-256 a6b017ed21f32e8a8beeaea2860554485a6020d39e0310cecbe4d3a245c493e0

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 6a8d1a0519323adce6a9b2f25396e566fd47757e29bc5f6014421b039bfe83c0
MD5 ffc1b669f0940e2980fb03cefbdf0f08
BLAKE2b-256 1642af9b76ffbd7bd6e8b5538584d02dc47eeb40c774eca17bf125baf36b4749

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp38-none-win32.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 2389d7e9e6f074ef073f60d229d8978c32102294982810d10794ab0615e895d5
MD5 520466e892a195870b37fc4385d2d5d4
BLAKE2b-256 7bade935b96800d1313ae804d7617c808e76a7a73ba04ff56f74bf6c468d5342

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 838010b696e2449c28d8be52e016be4ecfdc4afff2f21aaab3ea02a1372c49e7
MD5 1d6448660a0366070e89569febbb42bb
BLAKE2b-256 ea0e51e7f6a317d72b420bda052548fb9f597a27b02f834acb113664c27683ac

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b74cd7085b1a89b9e0257e5c4d5bfd9b8142de2a95870f13ca5e87ba5388e393
MD5 e5175d59a52b69929f39a51db8dd7d4e
BLAKE2b-256 593256be117b1d76a4f924484d6b5a96666819796dca5e2c407931bc9fb908ad

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 06628e8b645992ac28626ace0435dd0663f080129b65934d97463c39dcfdb702
MD5 f7a8711f2a12e1b3babeae5c248a14ee
BLAKE2b-256 4a54ee946845730df0bcd9de1033924d9413ef9688e773980d97d1d3fba1747b

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9af1f5b66f0be3db5c204fa88e788966938d13cf1a05732250dec431bcf91cb3
MD5 0d7b36b66858b792665ed60db5b25a48
BLAKE2b-256 5bb1de45f73a1bad6f389bfb79fb93919a0307a9e4c71db5f29177cfd74ded0f

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9c69b44fe78106ea6bd8f06d4145cc81f3261e92362e8366710f232ce5f39c1
MD5 97379ab3b0b38d6a0d1beeba60a04377
BLAKE2b-256 87290fe742b259ed9968ced2c307649a5c8017b46db52c495163c8203c1f1a44

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48dfa573c4bf4af6053e6674b3bb4be7d92675e74354a5b1bba94c994f7c6e38
MD5 dc634c0503ce0ca3f9ece3c696bb054e
BLAKE2b-256 491fe8cd81925ff9dd3947c4837d66a5f0b86f530e0e853e312a3cfc35e0c6f2

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5777cf57c3b72744f701bd9fd9cf75b76061bb4ef790f19f68faa276fea08251
MD5 18f54126c6c8039a99b258763260df6d
BLAKE2b-256 f66d97124f2af6d53350eb9792ea03ae1556c51823fde0d65ce9ee97bc850194

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1af6551e632b67210b200ee4a4e7d7235d0158466076a53932ff87fb0c1461e2
MD5 0bfcdb614bcbdc82573238c5187a6e9f
BLAKE2b-256 f85927bf4fe722a3bf9bf3a7d36bb867f3c82fc81898c54efe889aef9254fd3e

See more details on using hashes here.

File details

Details for the file batch_http_request-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for batch_http_request-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81a04f44df72202ac291dcc12cd6a6c90a982a9d2e442cbd9f3c851be3e200e0
MD5 352ce7f573771891f6e0f168a9567fab
BLAKE2b-256 af2abfde8a2f5b3c1acfb6af08279395c567618df6efbd0519514ac477722279

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