Skip to main content

No project description provided

Project description

android-bp

A python module to parse Android.bp files (wrapper for android_bp rust module)

Non-Goals

This module is only intended to parse Android.bp files, not to generate or rewrite them.

Usage

    from android_bp import Blueprint

    # bp is a rust object, but behave mostly like a read only python object
    bp = Blueprint.from_file("Android.bp")

    # for debug, you can print any of internal objects
    # they will be printed as rust would in debug fmt
    print(bp)

    # internal variables are accessible as a python dict
    print(bp.variables)

    # modules are accessible as a python list
    for m in bp.modules:
        if m.__type__ == "rust_binary":
            # module properties can be accessed directly as python attributes
            print(m.name)

    # or iter them by type
    for m in bp.modules_by_type("rust_host_test"):
        # or via __dict__
        print(m.__dict__["name"])

        # for convenience, unknown properties return None (not an AttributeError)
        print(m.unknown_attribute) # prints None

        # map properties are accessible as python dicts
        print(m.test_options['unit_test'])

    print()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

android_bp-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

android_bp-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

android_bp-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

android_bp-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

android_bp-0.2.0-cp312-none-win_amd64.whl (164.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

android_bp-0.2.0-cp312-none-win32.whl (160.2 kB view details)

Uploaded CPython 3.12 Windows x86

android_bp-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

android_bp-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

android_bp-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

android_bp-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

android_bp-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

android_bp-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

android_bp-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (297.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

android_bp-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (297.0 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

android_bp-0.2.0-cp311-none-win_amd64.whl (164.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

android_bp-0.2.0-cp311-none-win32.whl (160.0 kB view details)

Uploaded CPython 3.11 Windows x86

android_bp-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

android_bp-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

android_bp-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

android_bp-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

android_bp-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

android_bp-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

android_bp-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (297.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

android_bp-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (297.1 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

android_bp-0.2.0-cp310-none-win_amd64.whl (164.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

android_bp-0.2.0-cp310-none-win32.whl (159.9 kB view details)

Uploaded CPython 3.10 Windows x86

android_bp-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

android_bp-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

android_bp-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

android_bp-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

android_bp-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

android_bp-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

android_bp-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (296.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

android_bp-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (297.0 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

android_bp-0.2.0-cp39-none-win_amd64.whl (164.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

android_bp-0.2.0-cp39-none-win32.whl (160.9 kB view details)

Uploaded CPython 3.9 Windows x86

android_bp-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

android_bp-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

android_bp-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

android_bp-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

android_bp-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

android_bp-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

android_bp-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (276.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

android_bp-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl (279.0 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

android_bp-0.2.0-cp38-none-win_amd64.whl (165.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

android_bp-0.2.0-cp38-none-win32.whl (160.5 kB view details)

Uploaded CPython 3.8 Windows x86

android_bp-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

android_bp-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

android_bp-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

android_bp-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

android_bp-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

android_bp-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

Details for the file android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10324d59ce2dd8d924350afe1afc1b4233bf5214e708ad14cef62bfe3660269a
MD5 5c2c3ffafe1274855b668dfe48c490d9
BLAKE2b-256 8c8589615dead436f334f636f846126bd531701788e2beda2a2e5a6a6609b384

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60f6f6b3a9393d6a7e621d3faba9084e8798402dc4439a6a64f45c45618a8981
MD5 10eac50327eb9f39dae48ef62a5a63da
BLAKE2b-256 f5e60cd0fb74e901b5c2337bd3e33b590b81c56635974c5fec7556df6eb748c1

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 531c11843375c7091d32fc17386ae7f35d9539879a2aecf14023a44c2dceb03a
MD5 39a8a3f6ef4cdeff0f776349b2435c79
BLAKE2b-256 86df8ca52dfbfcdafd7871ea962b716aa5c9388c99ad7013cac2de604dbdbbf5

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b3f50942df0480124188c962351ce9404abf5447ff6a9f9bd535c8b23d849cdb
MD5 f590615ac96429e39ce8f1f38f6b18c3
BLAKE2b-256 e32ca8ca6b635b3b78d736f16ad62b16381625a76c576fcc34004ade17482d66

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eecfad0434cdbea199c7a49acf4e86de0d7e68d5c156d84263d157b54feef168
MD5 b7bfcea32bcaae61f9805f794f17816d
BLAKE2b-256 83b9d414f33e7747f87644ec2775a5a189e05af30e1e83c681368094b76f4df9

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e47754d702a590dd9c7c21e078b44f912e69a4600706c45834103929dc5c75c0
MD5 4f48722f69ecf700f9b770508a94109d
BLAKE2b-256 7af97fa33b0ff0e51eb06484058b50b1fed80f595455ada1a8a7b067d61f9f14

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ab55d39789cc952a9aa8cc3b309d96d4fd3bc924ff65a89fedf6bf4adf98003
MD5 36e435870737ad36fdec8dbb5435b9f1
BLAKE2b-256 b9c57f4b2416b0cf8494ea4ef80561d4889324ca49522751cdc0b2f7e403b61e

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ee6cbbbcf678ea1d74b9369db332a5f68475d3633d74910d5f3b25e0c13bffad
MD5 936cb2fd01705b51f8ea82a8624cd70f
BLAKE2b-256 e0e0f67e6ed3b269c4de773f480a9bad5223e0182423fe4212d2d03393b79c82

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8e8bab5887b7fdb79ebb2a229fe8f025f0927e1cf25b33ef997fb5c8a9f59a0
MD5 5fdb1ae03c3dd3784918c169030430a3
BLAKE2b-256 953a6b8f997c5e145102ef0e3b9066b8c4e73f06c60d55733d1f7d2e09d14318

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7b1877b42f90ed904a042e465319b9a7fb5adb72267ce755888121efb7f0c454
MD5 a3a5ecbd551ebc000b9093321f949e86
BLAKE2b-256 443638078fd6124e3216bef7eb1ee4f69e2ceb777639568f3a8ca2cd4d67f889

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e8adec5a7f1ece010bc300be1faa536c671a8400b10eeba445b39cd964d1574
MD5 a63092b0a98d9070f512555903111407
BLAKE2b-256 308eb682dc79b87a3c2a694780c25363ffa9f0076d4def07fa52f32f1f050d8c

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2cf41daa0b4fa1f94068172b29f9bb38493ac3b46bfabb33b897469d5168dc6b
MD5 f77bf7f496191e2f0b736aa00e552227
BLAKE2b-256 8100fceccfc5fd6e7153db315e8fc0e1e4303b717f18aa52e56bbb6027b02a89

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa1505b241de05db078397088652493d24d8628865445a5a0385cfbbfc5f235a
MD5 5c1fa20399125aeab7d82dbf652d6bca
BLAKE2b-256 03b689effc1060437330de188c5492c4f986afd6be41cba8da0997bfa8368e17

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6a7cfc7e678e36110a79bc1f6f84541e9772d32ce494768238d769b6546ae0d
MD5 90f9851d419bf630722fc905101fec94
BLAKE2b-256 633ab3000513ab98bb82cc4459421c30aef75b2f620b38ada68a964e9cb62828

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07bfcf9ab69316fb1f79c0205fafc5c1d758e25bb6b08b81a99ad0b59835d59a
MD5 a2f504ce51bf3636098bbbc320a347e1
BLAKE2b-256 d59d392aa5976596af70111b59b219a1f63f94c50c8f3fb7d68122531262410e

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c308e6817012ca03a2785397aea672cf088f31e6145d2ed599b59e1cb6d48c73
MD5 9a22269ceda2ee5d7ca6dc0bcd3ab08a
BLAKE2b-256 aac96c5533cb68283e2fc2a167e77d2a78e11c5dec9c911b927f3b8f474dd9a6

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a5b0a2ca07028eb6c307d3877a4bba447f0e7573103232dff264fc92cb561c0
MD5 b57030bc9a3b609f74564c08c11be7d2
BLAKE2b-256 6d9748ae629524ef9206892355deb52a4545acb1c1991ad9784fdec6fc91dd39

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c2046eb44dff782fc3c1fdaeb9b65e786c078528c60b367f6ac94d8d8a0541c9
MD5 3fbafa757f782924b27582f9e8d8d689
BLAKE2b-256 75ca29bb4cb1fce7155312262070446b6ce14e442e4a8fb8f3993ab8c0819f4c

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 724e658a47652aa39e89063bae3b2eed10efdd30963fb5ed9816581d2518005c
MD5 2c82cb5ac9eb9c231d487f010814b0d8
BLAKE2b-256 b9b4dcdb9b98474497eb0717ab3e1b83bc28f586b7b20064b1cb62d3f8d413d6

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cefcf9c769814ad9424ba3adacdd77998a63f0428583bd405d2a5636c8093601
MD5 4201a5032e2a4b24485b4430d2bb5e0e
BLAKE2b-256 af0acda7c8a04b9e4aa2a4253ec8476e4f13fe931184264f75bb1f08039849f0

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ebfbed9d94ea1d3b97bb1c0a1c0305bc26b52c32b59f78a07de7b9f76982c99
MD5 d96e5e09f6ba76fa4e8ee318cf404e89
BLAKE2b-256 e0881f4501670502b89077863ccc70f6965e5912e10d58c5c0170cc6a966eedd

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31b6e127672e66ab8cdcc4c91317b1d092505c11bdda71891a6226bd74dba2c7
MD5 06a0adadaa76fcc2873d0924cb084976
BLAKE2b-256 ec979c93fab18fe29c6f19e8587529c0b145c1eb42dd993bad4c9cf7996c56fc

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 6cdedd983ed946aaf8535db937c6b7ea1f9b933d48bdeee40e23326d3f9450ea
MD5 0a84c368d23828a6786c012888c24379
BLAKE2b-256 3c93c895b2b21c331b94bb866a54aa0500b12796a65b478c911b971fdba5b22f

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp312-none-win32.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 80664d5e908be4b43b209f4605bf591eb05a3c37bc4a9b6fce5d511807254802
MD5 ff9e4b17963e7e6f7e7d8ccde08f2e81
BLAKE2b-256 eebb3bcbb9e784614f12f9492261d1c16381f58211d714ce27365b15a30ef056

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 487af5a0405052a75b474bd004170f74a005723c403f872c53bfd0b6921bb004
MD5 c865f613d08418e7f4c6e6f1ea129e6b
BLAKE2b-256 d4d595733bfa3efed0a17577f69d6ca9a155961c1404e5e70b5940c3b696d50e

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f54d3e7f8a84661f36bfc5d077097a8af14a970a6e969bbec08b5b6a3505d5e8
MD5 42f550a4935d0dcaa82a07702508ea62
BLAKE2b-256 a10249100fa227ac063a0cc06c1c464e68e428c63e1984bb460d5b5fe7a39ea4

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2c85e9c61aad3d2eb6db53adbf466d7abce741911abbda8fad507c63c86c634
MD5 4701ed301b09ddd71cda69db5a55d198
BLAKE2b-256 0e4cf5d01879ee2d733a09ab4eb0726012b8839d94c459befe413048010423eb

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6ad7fd516ab3e4be731215349271bda8051066e260df8e3c7fc0d90b0dff382e
MD5 f479e4e2a23d0830d9a62e569fbeedf3
BLAKE2b-256 055cb8f73f93fa8cc90d511d56bf72b5e5165777cc3a6d19dcfca76905a53e5a

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f9a0dcb3e1b85c3bc627235c78192e8b8720adb337e6d57537aa05be621be4f
MD5 f6bdc1aab47d1c04e0010ec3a5851802
BLAKE2b-256 aaa693be6e941dd8474eb2f3a761eeefc9f27dfb39e074bf18c1549308ba83b1

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e6e9ee9d32c641a1787caab7b72160a9f4e5b21a255849bbfee4cc17bc41c41
MD5 684aacc40707f3ce5225f35e8d1423ea
BLAKE2b-256 97fce562a0e3b322eb3cfcbb7044b26645f75ac0a6a2c1f3d911b49e9917b071

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84f4099527bf65b138dda7b0536e5b6f4b25b9b789bd71521ca06a014c9082ee
MD5 9d0fc549cd777345904b6f6b5d22ff44
BLAKE2b-256 bb7ce4eeab59d247c9958374385c29f2810feb4b8201421280ecce3a4bc6784d

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b53ca511a4fd9fa8414895b2beec07deee735eca9ba469a1447fe0a242dbae1d
MD5 fca16ae0e7b78606f9eb0efdb033063b
BLAKE2b-256 5370dee89e918b8be5585ed3d33a1872ab7df53cca78f6e5b7a8e9dbc4a7d57f

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 6ef8618fcded8b41c63ade5a8fcb1c823be1870773c448e5ebab9b5165b6196b
MD5 1b1799cf8d80c6da40cc057a2aa8f189
BLAKE2b-256 899a06a664cc7be195867968c3641328c11450ca1d89f3cf969d12d69fb90942

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp311-none-win32.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 9ba0fed17b6ff39be08408e1c462589b9f26f9e5b375c623ef25abfd44106ebe
MD5 4c9d92a5325d8fc52c129188411f9b3e
BLAKE2b-256 f437abe2b4771dd67e0f1b4b26411cd938b22219fea66f8b5126f60918b29412

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d73d8bf683cca1679bbfaf75c4cdf840e88d90631726152322d2e8c7872bcb53
MD5 26941c0c0a1577fc6700e76a1134d213
BLAKE2b-256 3f25197174e6eb7a29306bd59d97e176e5d9a069628d3dd62437419cc8547b05

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a05f221af22e350b9c12c5106348e1eb7716bd67338f617fe2b45fdd80014638
MD5 3d495eefa6b48847ccbdd156dc850ab5
BLAKE2b-256 84785886aa251dccc8ab2b4a3bcbe88d9d487f4977e42b0fbd2e68582b018f7f

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2bc9df7ab4535efee12b20b7eb042a5651238b8bbe41f813e3bd393d5dbe7389
MD5 ce886b0ba2cffbe0d4e5ce3608ce0605
BLAKE2b-256 d0019fdb4d44f629e1221466a243e1a1bd38d45b1850ae13dc86da211e54748d

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba806fe72fcda420f8980bf758cf74d743e2f1b6e4cc7a637053c604d6068de6
MD5 79d71e466f0a34ffdea5660415fa3b19
BLAKE2b-256 949763f32af4b60c7b0543cf3380e8101bc592f6efb1447a3555d5595e9e4427

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a48805ebfb25123dfbd970b52b485a303f1e2da69ee50b72fdb986c1df169c54
MD5 7bf3bcf32a916cb54ac13cd6a8603601
BLAKE2b-256 2cf2f1fe8440f7ce4b4203d2b8077e928b885b55a9dbd41f767388159047662b

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 366d23986d77f1499491f94c485d777daae476e1757c656c900b3f2df2743dac
MD5 72e12ead8daabdf9166118491b6043dd
BLAKE2b-256 efb40f38aa9305468b80f14ca8b4c3356f5155b636669fc93d856d99e07d1892

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5609e66f123d7cc6e6864c37c42e436b80e51db4a58631c2c428292ae960852
MD5 7474fe2eab0a5a7dfe0490eeb303d796
BLAKE2b-256 a5052e631d3a692ebe4193c05ffa2435c6d7e3f97bac0ba8491bcd90dc35bb69

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef574ae4a60f53b6004a5ad08a5967ed8a45abb6f7455a670fd70fba8deeee7c
MD5 ee1c1a17e1b6ade344e7c339b412ea4c
BLAKE2b-256 99b435bf9a747ef50d0b1c2d913f695682935984e4cfb0d37fa2b7a40c26d28d

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 0362e8dd96c34e35467607f72761b86e2d4322d8ba1e6a7ab04ab6e05a9508a6
MD5 81634eec71cb20374a51299a3468de40
BLAKE2b-256 0b70b1b2011e0028394a6cdf5d3a02194d36a5a93a2794fea12b786f758f0459

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp310-none-win32.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 942c83948f62ecd05ea47cf1f470f054ef408bb37b29d69681f58f74853c04bf
MD5 11d1e53c79179ee1eb27997364a71761
BLAKE2b-256 e5fe720e828cb0c547e3668ec7408c8695af1a152c83cb8320a5927f4e13e041

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4d1451d930fb5df241e1b072cab07060638bc23bfbeffc6347f9aae5c98d518
MD5 824f58a51b978b11622957affc7520f1
BLAKE2b-256 9f94abc266111842053ca02d1d5c377cf99827e5006005d945941e2f093c93e3

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bbb5e582ad882c0eb0033b0d99b94b79e84b8177be83296f43d1d7f754ef8afa
MD5 098d189ac9ea6db5239c18dd5e54ff07
BLAKE2b-256 b3dc59a376e9e4a3336a4941bf268ec9bfd82194573e8b41316a4f7ab17864e2

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c881b1502b22e0ba1c1ea3ccf01a367fc95eaa1d9d9bde55941dbc82dc485fb
MD5 7cb15a03e66a841fc247e2cf5c829d93
BLAKE2b-256 a204b4c82a300314b0b7be485f1d1dc20b74b57a811fba260577e352b3e2ecd2

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0fcac59a1b429c39742d16f33ab4565728387baa159f466407c05c6aa9f9e9e9
MD5 bb0b5bff16bfa458c6bc65c6db9f3e28
BLAKE2b-256 b563fdf3ad796fad1401e8528381a250811fccf7efd7187847fe60ba290fe16f

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4922410c2d43f798b4ff7779e0cbe43cbff60141c31cd89d607755b3cd998eb
MD5 fffd2c67ef63ae9a3cd2e6bcb71685fd
BLAKE2b-256 3d1c7c7859201546f9310d2defa04eb36c8bd13f5ff261476c36fd41e8b40ea7

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cbb99b2df727502a189dcb338b699d8291ba91df182ec0d93096a97caeba2d74
MD5 e08afa4aeb45bd4d81dd948c869e1cd1
BLAKE2b-256 1d22fb26019b5ef77e7f5cf7980ef77a6c999bdfee65f2d5db7169724267220d

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3081e14ff799fa7861e57142ed3e329e784d31d720ae8e782aa67ed8c6bd3992
MD5 a8211222c045c72824fa05675799df2c
BLAKE2b-256 50d4b119efaba3689160de148022fa0e8442b068995fcfa3b64781ce4fba9af6

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b4e1cbad642ba62ebb91b7601e192fb850da34a6596b999c7b639b5cd1c03471
MD5 6f5f6c8f5668439bc9870d89fb09cf2a
BLAKE2b-256 cae75be9f06b95623d236eb882c2214e25b6e3f550d2ee8f9175d6e7c2dbffbb

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 cca9f1c20dc9e39953b53804f8f1a64572cdd9ecc2b345396e1a27cd0bba9dd4
MD5 1437a7520573483b93956cccc19dffd0
BLAKE2b-256 ec6b3821c8db46c39460e1e9f02dcce65a0363a56507f2adbdc7efc92b100faf

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp39-none-win32.whl.

File metadata

  • Download URL: android_bp-0.2.0-cp39-none-win32.whl
  • Upload date:
  • Size: 160.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for android_bp-0.2.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 b4dd9b89ac487c1aa8aa257d3e5391863c44b5d30fb6a7b31faebecd5948c569
MD5 b52561373fc105eb6e9b8d900a8ab92e
BLAKE2b-256 d5c1476874034b640c4577f77bf651474186ec4522e79c8968826ddf5cd8c946

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62429042024f62e20e741b7e06f04d5a05cccd4fb1c3a6272792eefbf47a689d
MD5 c72ae2c877f5531cb0ef01dda2633087
BLAKE2b-256 147b073ea1602aed76576fe5bbac1beedc120d41ea55bc2567e2fdbe26a33056

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c607844c9c0cf9474e66062e33a9971f360794913f459f06298654077683b517
MD5 7cd9881f3bd528f345c73c984310c834
BLAKE2b-256 23a2aa381fb466d601a06d0c5efaf9ff8831bf4501d12f8bffc23ab8d4618400

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5891890346c16cbbf1e807117e4d6cfb841c2205fcafe0beee6e247fe244cd04
MD5 a096f778ca806a5a5f915d5e9537c9f9
BLAKE2b-256 3f40a797bf6b68865569386ed88d79f1593c7ed6452efc714f230b7fd0ca3285

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8dd8439baaf2d71f3a776c734bb53a4ca9ee10940c34ec00c36e62061f1ca3ef
MD5 d708406b41ec9d242f7bd08451abaf36
BLAKE2b-256 4fc8f3da6aee6d09e546a387f57a6fbd7444fc7c1b2553cadb3f3109a8b3f41d

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fa08e131de040ff85795dc29fd39db676bdae5f32b958e3f16c977b03dc7793
MD5 f41531d82f9f0aaf2fbf6782d0f9d60b
BLAKE2b-256 22ade1bb4058eb189cbb2e5c75e900eb4f55736b5c572d0dc707c65516652203

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 520769d3160204a170df92907f5a21a2b2375018615465676fe6834adf2c27af
MD5 c23361bb1b409f4f4c2f6dd3cd1d1423
BLAKE2b-256 a53dccc2c28f9369d88b573cb74cb9ed26d5a891838f574f4c8bd8d5867706ad

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d458156e269cc0bde2137d2df8e5ccd9857ca69bf13f646947465bf09649b439
MD5 739872cd64273d7a2034771e080a3d4e
BLAKE2b-256 0c29a58d06e58b02198d668500c4af1001c5144fdc4df36f2da509292bc6a2bf

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ecbbfbc03446ed692f5fe5b752c4cc9f3e02676c42785fe44afbf0f43343210c
MD5 60a8305741f0647b9c3ba07195912748
BLAKE2b-256 29435449be8209bd29a392544982e2303cea84092a5a98a682b253545fd9e438

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 2370cf39ccacd5d9ec6df37cb6738acd20994e428b6d9667c7be93e386f62ffe
MD5 471c405fdf894f456f4f69acdd232c88
BLAKE2b-256 b835aa2e4faa8b4e486bdfa2a692b0a21dedfcb10543fd08b89e6a0827bec1b2

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp38-none-win32.whl.

File metadata

  • Download URL: android_bp-0.2.0-cp38-none-win32.whl
  • Upload date:
  • Size: 160.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for android_bp-0.2.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 2b7fedd751df14c8b1cf754cc04cd9194e1539e4a6b9973ac7dba191c567e1c8
MD5 bde2df8dc8ee8aec8921953de075af69
BLAKE2b-256 ba93bfb43165a271a49bb3651791468df8b4e07a42397f2641e85b022c4e6fae

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ceab203255ffad586dfd9741c470cfe08f9f90bec182d25d0b739343b2ed73e
MD5 1fadd4949a095df3bfdadafa1395d102
BLAKE2b-256 a49f0b239d3f4f0940a1191099ffb083072ca85c55316d87a64690f32cbaddfc

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 52c0e50c0af809b11c31b3a71b9f7fe2e31aa6804db362f379720a36e6db9d12
MD5 2974336ccf0b7708c8abc643a9b67f4b
BLAKE2b-256 9dcdcaf95ca86af3270b6da9c52543bac92a4dacb94feca5d3d0c3abf9a9f989

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 31edcf2c7f5c40337d97891617065fc8b08a738c791da43e8eac1bc4174654b9
MD5 4b621df3966fd03843f68ff86ec2bb11
BLAKE2b-256 5ec8edc128dbd429793f70b37e7956b628a6e19aeb2211507454b60060f82a22

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 451e89a8eb9b9b63bdb57246528553f5c58061c46aa96076a85cc63155e11360
MD5 57b3f86112566b751a7401af5f123fe9
BLAKE2b-256 c91ed31d9f10d1a51c329fd40573893a1c84fb7e2a9a031518ebba23d8971ebc

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68822b091d67f3f06c9984d54fd1a8917f427940aa88df39f226049ec7e0642f
MD5 53d901d3ee0ac2beb6051efdd55b6edf
BLAKE2b-256 4dd09e7bae8ef4f3adcd51c2377f2722591b5aa1672b9faf24736a8f89e7fb43

See more details on using hashes here.

Provenance

File details

Details for the file android_bp-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for android_bp-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2f32bcb7aa1e3340b5a35402f1f100bf5163b9b6becb902b78fbeb30f9cb18ce
MD5 1404aa70ba549f6b6906b6e3af308f9e
BLAKE2b-256 ae3625eac3c322877690715995d3d146fb1048e27d8fda66e762a64e9c034ea0

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page