Skip to main content

A featureful fnmatch implementation

Project description

globlin

This package provides a faster and more featureful fnmatch implementation over the one built into Python's standard library.

The implementation is based on glob-match library.

Supported patterns

All pattern characters besides * and ? can be enabled or disabled. When not specified, all special characters are enabled with their standard behavior. When any Flags are passed, only the explicitly passed Flags are enabled.

? - Single character wildcard

Matches any single character except /.

Example: fo? matches foo but not foobar.

Flags:

  • NO_PATH - / is matched as well

* - Multi-character wildcard

Matches zero or more characters, except path separators (e.g. /).

Flags:

  • NO_PATH - / is matched as well

** - Globstar

Matches zero or more characters, including path separators. Must match a complete path segment.

Examples: foo/**/bar or foo/** but not foo**

Flags:

  • GLOB_STAR - enable (default)
  • NO_PATH - / is matched as well, foo** will match foo/bar/

[..] - Bracket expansion

Matches one of the characters between the brackets. [ab] matches exactly one a or b. Ranges are also allowed, i.e. [a-z] matches any lowercase characters of the English alphabet.

The matching behavior can be inverted, for example [!ab] or [^ab] matches any character except a and b.

Flags:

  • BRACKET_EXPANSION - enable (default)

{.,.} - Brace expansion

Matches one of the patterns contained in the braces.

Examples: {foo?,foo*bar} matches foot, foobar and footbar. Braces can be nested up to 10 levels.

Flags:

  • BRACE_EXPANSION - enable (default)

! - Negation

Negates the following expression.

Example: !foo matches anything except foo.

Flags:

  • NEGATE - enable (default)

\ - Escape character

Escapes special meaning of the following character.

Example: \* matches the literal *.

Flags:

  • ESCAPE - enable (default)

API

def fnmatch(pattern: str, value: str, *flags: Flag) -> bool: ...

class Flag:
    EMPTY: Flag = ...
    GLOB_STAR: Flag = ...
    BRACKET_EXPANSION: Flag = ...
    BRACE_EXPANSION: Flag = ...
    NEGATE: Flag = ...
    ESCAPE: Flag = ...
    NO_PATH: Flag = ...

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

globlin-0.2.0.tar.gz (39.0 kB view details)

Uploaded Source

Built Distributions

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

globlin-0.2.0-cp314-cp314t-win_amd64.whl (130.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

globlin-0.2.0-cp314-cp314t-win32.whl (123.3 kB view details)

Uploaded CPython 3.14tWindows x86

globlin-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (442.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

globlin-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl (472.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

globlin-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (452.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

globlin-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (247.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

globlin-0.2.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (270.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

globlin-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

globlin-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl (239.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

globlin-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl (242.1 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

globlin-0.2.0-cp313-cp313t-win_amd64.whl (129.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

globlin-0.2.0-cp313-cp313t-win32.whl (123.3 kB view details)

Uploaded CPython 3.13tWindows x86

globlin-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (441.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

globlin-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl (472.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

globlin-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (452.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

globlin-0.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (247.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

globlin-0.2.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (270.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

globlin-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

globlin-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl (239.2 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

globlin-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl (242.9 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

globlin-0.2.0-cp39-abi3-win_amd64.whl (136.2 kB view details)

Uploaded CPython 3.9+Windows x86-64

globlin-0.2.0-cp39-abi3-win32.whl (130.1 kB view details)

Uploaded CPython 3.9+Windows x86

globlin-0.2.0-cp39-abi3-musllinux_1_2_x86_64.whl (451.2 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ x86-64

globlin-0.2.0-cp39-abi3-musllinux_1_2_i686.whl (483.3 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

globlin-0.2.0-cp39-abi3-musllinux_1_2_aarch64.whl (459.8 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

globlin-0.2.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (254.7 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ x86-64

globlin-0.2.0-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (280.0 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ i686

globlin-0.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (245.2 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

globlin-0.2.0-cp39-abi3-macosx_11_0_arm64.whl (246.7 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

globlin-0.2.0-cp39-abi3-macosx_10_12_x86_64.whl (250.9 kB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

Details for the file globlin-0.2.0.tar.gz.

File metadata

  • Download URL: globlin-0.2.0.tar.gz
  • Upload date:
  • Size: 39.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for globlin-0.2.0.tar.gz
Algorithm Hash digest
SHA256 aa2eb4e2ad03a796013dca7285309e244d927f9f3ce043358531be1fe94f57da
MD5 bbae0ea36c0e5316bfe29027e510558f
BLAKE2b-256 2b3e845e6c91b34faad0d6c3b1cd2014dfe99c319614cf10217163bcb5d52930

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: globlin-0.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 130.3 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for globlin-0.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c285498357e3104f490e5e528da3354f99bacbf46d126fca9f0671ef51537b75
MD5 62597211ff9e7d32059a9bd0d56a651b
BLAKE2b-256 1cf4fca2976b453405f7f2b0e4250e08b0660fb5276d3f4037e6e8d6040ecce1

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: globlin-0.2.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 123.3 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for globlin-0.2.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2aa47d1ef73297c941b9a93f136aeb0c9a30a6fef68c3901a824e5c655f1dbe7
MD5 69c5908fc0ac1f28a2734505c16b1c51
BLAKE2b-256 07583734b7fd70b0dc023c08ea4b5989c64e90ad3512c07a2a4aab0abe239454

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 940a5fb63354135138c485174dc36c926824b7006dece14a6e6b33bf58b856fe
MD5 f96e53ca1480e5254db75768dd48033e
BLAKE2b-256 c2a203f0187969325f82d572e5323899eff58d851c78dfbc9d259f284de69399

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 82fd979def87851013197846f2b6fd7367eee3bcd390ce9860ed26c942137fbf
MD5 de1e793614b2c3761e11dbcd9d56fb00
BLAKE2b-256 8455047676317da43645b8a56cc57260994a0aefc94862004341adbbcbcc9e2c

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31a2e2cb13a6a1cb1705a254eacc88c31c764588a1b41a08aa718bc97c215469
MD5 88ff70c0822ccf3c8f6f3327402b4afb
BLAKE2b-256 25a25c247cc250f703205f72671e1e034a93cecc04998d913270b603a313456d

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b02111cef28f0b31d7cdd8b3c732fd898effb53c33a97f4621445bced892dab
MD5 4ce42a3b1c728bd7077735df0f991248
BLAKE2b-256 9c6301e2b78607b06da2c3cacec090fa0fb6983169f75ea912ed7d44fd723928

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df047349b981386412228b172c637fb0978fef760691ad4d6b39187078a274a4
MD5 5e40768c10469b7147132761c548a1da
BLAKE2b-256 42828c17a7237a499071dd81ab1098be7fac1e67fc3cd0c436894c0213d3a120

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfdf71bd63acb336c62675faee90d39ad947301ecbba48dda893c06fed40638d
MD5 6f9b4c93955a21b3649a7729bbfcdc4f
BLAKE2b-256 9eb89371b8032deecb7ee0d2905213f5841902b3235bdead5b486d37bdc1ccb0

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fdc414c4b746f9498e66fd971f7e19c33b63c7428805321d1da71ddec46682d
MD5 1006afc05a1c4013b55dc511e2e30520
BLAKE2b-256 7e9e1bbf997bc4ced21d6da02292b3907a47ddbc431ec01444b17e6b47e32630

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d671e3eb6671efe024cd548ba6e8a082eb97650e2787e538e35c1488a774377a
MD5 6df7c4ae0ab80db8f1c2a1077083a3d2
BLAKE2b-256 2cbb6919b0839bbd819d77e925c48527ed75eed681e335e187fec250b2d2bdb9

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: globlin-0.2.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 129.4 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for globlin-0.2.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 bd2ff0185011a13117bbb19c6be1da11f996209440a9859d707b04eba079d893
MD5 070fc2428559b062af5008795be45629
BLAKE2b-256 4caf2b73212bed7f01fa09b4bd27af967cb4b9f607718de7c0c331a0002aa904

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: globlin-0.2.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 123.3 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for globlin-0.2.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 d083885176fb36500a732f1cb0bfbe6348a16bed6a626e251a45686a4f0dccd1
MD5 4bb4516f7988ac0157a7cd1333ca6424
BLAKE2b-256 93d1c8b176c7314b699243dac310f1100270dbea43e4405900fbfc2e7c5027e7

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d90ec772bdee5e55d6a4f9025ea97e750fbcaf6c0da48139a5feaf92fbf7abe1
MD5 17a54ca7abda6bcbae8cce47020ac34c
BLAKE2b-256 ea399298216dd34b6f9218fe1778c6d76436d8e9255affd4a11a234413ae7bd1

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 029552d8fa0adeaae231823e0e9012e50334cd4ea307023f2397e2f8a44e3307
MD5 cfc8d7066eee35a6bdd7f8efbad571ad
BLAKE2b-256 3e883aafab064a7fe9f4cb2088e2669d224ba27699fc039563135c02bcd3bee2

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ec8e4e56479fd204113ad0a48ce56170cee1b0385d72e7f92cb514f6c636621
MD5 ee44afd8b77e4390f31e0cb6585f02fb
BLAKE2b-256 33898e5260bbdd09a606d4bf1d50abdecb2ec39ba327df578f7d04e413fd3530

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af1bf60419c02cb15bae8a03c0e6cb62e3eb997af56cf642c1b740d8610b84cb
MD5 6af1beaeaca8fb4d478f20f60d06bdcd
BLAKE2b-256 3a193272235173270823b10a6060197d772d5c35b9a47c383e7de628061e40d5

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1da573c38e618827845b16788e7cb89dbae8d1861607c867eaf4743de433a6ec
MD5 de9fc93397bd9623ad522b61d0e79e88
BLAKE2b-256 98023c7a70e138fc3d894177372d737ddfb86852d06ffefa3dfc1bd121ccdd8b

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b162945abfa15033df3c4df0dab71f1b4ddd33443fdae5190396a7000e9c0b9f
MD5 c3d56409f5594273e97279f98eaf83d4
BLAKE2b-256 1a730ec3bb402f301262b8e7e3e7797d3bb0aeededb368d2680a9951f74f091d

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e654a59125d271f9bf2554d6286c3bcbabaf076197b365c8fd95d3cc5dedec78
MD5 afe011ea00c5c21b078ab04b7ee11ba3
BLAKE2b-256 6fdd4835e86cabddf827bd3026720a8192ec845c8b88f5d68ca0f85fbe4cdf05

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d3bb8b02dc5ef0c7c28ad34142c2dd9d431935b408742584e78642380f3620ac
MD5 ede8bf6bb0c86b0d7d010b150ac8acdb
BLAKE2b-256 cac655ed45c5b56c2c60236f5d5a7208f8f1e40394c20e4c21ae7ae3704f36c1

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp39-abi3-win_amd64.whl.

File metadata

  • Download URL: globlin-0.2.0-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 136.2 kB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for globlin-0.2.0-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 8eb6fe01ebf726837c1c26fecb8f095a9fe95402843eb752a91a4d9be418a729
MD5 f8c77993a6fdf5e16c8549070e9ba54f
BLAKE2b-256 0e2d60ed7403842d63c208cde992c33de406d90a101b7ddced069e91438ceb67

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp39-abi3-win32.whl.

File metadata

  • Download URL: globlin-0.2.0-cp39-abi3-win32.whl
  • Upload date:
  • Size: 130.1 kB
  • Tags: CPython 3.9+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for globlin-0.2.0-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 977cc0af4154a09a069c4f6cd84b88210cfc74ceadccbbef7d7fdfcc8f7f9ec6
MD5 af24639eb38183fd83dc711074ad914c
BLAKE2b-256 3e5e5d30b724de302c545b6fb8c6bd354726a8b49c8fc956aea8aacc96645ee1

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fdde441ff44b5daa5183df4b882476627c3d4456b8eaa4ed4f003784522bb6bf
MD5 f748c1ac89ec0aab98279ce8572660e5
BLAKE2b-256 ab5ec86b6e672a2dccac89778f73f404929a697d5639073a8738900c668ed421

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp39-abi3-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e9d78cbb46123b4e79a217747de15845485b8ea1a5b57c6dec75447c578a407
MD5 69f25e04d12665d27c8d160c0fb830ca
BLAKE2b-256 fe0eafbd989a28aab374e34b7a1b12dae3f7a9d1cb8329c73bc00457ff28c3f7

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a98578490bf966742a50029a5341e81ea6a37feb365ac1818765eb647cca5fc
MD5 b1c3f6b66dbce9f84043ebcb552b8e6f
BLAKE2b-256 ba62d387937c85512b5476d3aa332bdc9aec91a9403f085694bfa6fe5242b99a

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5e88c3d492893258a332786b493a86c65e656a92f044644a10a0eba556b67bd
MD5 4edabd37e55abdde86e4ebb2eee96c2d
BLAKE2b-256 395b6548f25b5b7e6bd2ed0b7d6d6fc515b7ca3d2e8bb0664ca64708d81b86d7

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 edb63a2c7cd852e8106e09806963b6e09b5f1692fb9b3a61af06e7fa6b462ccc
MD5 839623377ffaa1b9ce407ebf99af631e
BLAKE2b-256 bbaef1f04214a98422e92188c17eae20b7dc5efd74bc9e4e5f129681b49cd7f1

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5499c5a4e71879a43b17dedff7475ab8d9c159069c005e267bcffcd26837520b
MD5 7223d7e81a2861ee4243721ff59fc0db
BLAKE2b-256 dc84542a2a459370b5827928cc6c0d2520747d4ca96fceeec45d675ea1955a5a

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae1147bf47abca8355010a29bc3f857e8e8b646bd9e2da729971591766bb36e0
MD5 c53707382e747d9236c784f43c3ecc4c
BLAKE2b-256 6e78594434f3103e76b47343ddbf7a5e9e55a4df80b9b251419ab9ce9207407c

See more details on using hashes here.

File details

Details for the file globlin-0.2.0-cp39-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for globlin-0.2.0-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9d599ce9a9b6c71be27003c3f4819b73da5448ec55ca70f05814e986ce5b4cb2
MD5 bf077222c944e90ac08a0e0d4b3c83a1
BLAKE2b-256 7daa02eed906145bdebba7dd87920610e50e2b6e92e59f01f28f8c619d0d7006

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