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.1.tar.gz (22.3 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.1-cp314-cp314t-win_amd64.whl (128.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

globlin-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

globlin-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

globlin-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

globlin-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

globlin-0.2.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

globlin-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

globlin-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl (249.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

globlin-0.2.1-cp314-cp314t-macosx_10_12_x86_64.whl (251.8 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

globlin-0.2.1-cp313-cp313t-win_amd64.whl (128.8 kB view details)

Uploaded CPython 3.13tWindows x86-64

globlin-0.2.1-cp313-cp313t-win32.whl (123.4 kB view details)

Uploaded CPython 3.13tWindows x86

globlin-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

globlin-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

globlin-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

globlin-0.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

globlin-0.2.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

globlin-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

globlin-0.2.1-cp313-cp313t-macosx_11_0_arm64.whl (249.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

globlin-0.2.1-cp313-cp313t-macosx_10_12_x86_64.whl (251.7 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

globlin-0.2.1-cp39-abi3-win_amd64.whl (136.1 kB view details)

Uploaded CPython 3.9+Windows x86-64

globlin-0.2.1-cp39-abi3-win32.whl (130.9 kB view details)

Uploaded CPython 3.9+Windows x86

globlin-0.2.1-cp39-abi3-musllinux_1_2_x86_64.whl (2.3 MB view details)

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

globlin-0.2.1-cp39-abi3-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

globlin-0.2.1-cp39-abi3-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

globlin-0.2.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

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

globlin-0.2.1-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ i686

globlin-0.2.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

globlin-0.2.1-cp39-abi3-macosx_11_0_arm64.whl (255.7 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

globlin-0.2.1-cp39-abi3-macosx_10_12_x86_64.whl (259.8 kB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for globlin-0.2.1.tar.gz
Algorithm Hash digest
SHA256 678174ce5b6e146207704224f9e7f0043819103e7b77f8781c6de7926e842639
MD5 e76af63266d003f328e17047f4c1ce36
BLAKE2b-256 63941619d1122776a37c0f12c3dac18126ddad4b3ecf29d6cb4a2356911f420d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for globlin-0.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 88f05132f67ba7d669945c884eb09c1f2d27d11062f675fdfa8fabea791a77cb
MD5 63cdaf17d3c356d404c3da792c526dae
BLAKE2b-256 8d1489fbbb23e1b6d8901fd85e9ea5e9769882b9e4581eeccb25c80d0af54213

See more details on using hashes here.

File details

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

File metadata

  • Download URL: globlin-0.2.1-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.12.6

File hashes

Hashes for globlin-0.2.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a67365bc430ef167dca858ae047945a7b205a391f753b99e34c77d5ea3b32b98
MD5 609e369e908ad94b8cd2280ca55e1ec2
BLAKE2b-256 91ac19c5afe434c0f7dffea4f0ec8631dd4536be3df67e22730bd3ff300bfb56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6b6b35261b64d0cd04f3dc3570cb5fbca3c53d5f568b8590dbb19de207d5b34
MD5 f9b762d53545fc640882035a9c75b211
BLAKE2b-256 d861e4315e4193153b6fcd7a26385ac201668da6a87495219818d868fafd87ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ead87cd63f65d621eb0a1345a88fc5b6c4013718d93a6598f9adce62c8ea48f
MD5 f1276bdb3fb865557c889259ac14db5e
BLAKE2b-256 1de7deec95b0cbd28146ed24df97a0d73d81b4caba4e8060d811d41c9aa73090

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3609474c045534757f5f7a8667283f6f340742f623f6170d31b7fa175d8414d
MD5 2f6cc8113952eb670e6da75263dd81c2
BLAKE2b-256 5166a274c349a26da80ded5d990d1b55000aa44a02394e1f6e666c06efd3d1a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20916a0c13c1c6ee41e95d69e442ec1677a23bd31edefbfa8e383568f0a5e38b
MD5 8ae286b0e5128d1c182040cdb330e9e9
BLAKE2b-256 eb212c8073e95746eef9cccd93e8cace56cccd352291f0eb244f4247cf6788ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee9ac612d6f8b75967bcb336fa66d2a083a926867edfe347f923fff79ad94e0f
MD5 ff1b6a805178906b805f325fbbc53250
BLAKE2b-256 c9b4154e7171428a5fc24d6063d6a67e64bb2f11bb9774d5b958b4c64e7d7e39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ed1785a4953462729cc01dd995f90fb367d37165f40b89e9dd2f0f1d331ad9d
MD5 8ce28bc09b7c2d40f4400091b130325a
BLAKE2b-256 ecc19baf3962e05e8960f643843fb428dc32ad0b5779b737b50a2d754086b758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a80173f19dae56bba3d52fe0fd0c93f403352ba261c120982f7ce02fda664c1f
MD5 0d51ab458fcea57cb7a55c074e25c950
BLAKE2b-256 1d8916ad31f6441d6edf656afa2ee130fe72635c025e4bd90b1c29003ee839dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82a36de257f4b4e48c273cc8861137d14d01fb265a7be986492767d91310594f
MD5 c423ebf3f4ff97d9be600ba11fec2f16
BLAKE2b-256 12bd0517e5b3971bbbb56b7aa5ff7f07c252968736c7d3a7ee228b3f431a4f4d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for globlin-0.2.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 418e68d398b3aa29a862cb323aefd3ac2132ae3fd08040e600ec0958b27dd73f
MD5 e31485f4b83e40acac5b615f4fe8bb0c
BLAKE2b-256 324cd7c5082d0ed11df6f8ea52fa5a6f6cb4e973947c15137150b2779fe33555

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for globlin-0.2.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 316c7044e574459b4c2ec71058e0e356b64aa1e1096fd081b2dad30f327cac51
MD5 8b60c75d4dd7f65d168cbf39dda37d34
BLAKE2b-256 82ba27770a184a68d9b9ce97304f985714b90c81e0dab384cb1f4e8f51927996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2cd7f42f52e95f42e8beba66aeae8e84cbd4552016cfb271686cc94213a8d86c
MD5 86bb93171508e8a775fd3bfd8ac63bdc
BLAKE2b-256 663d839a03088de1e4f03b22f393a68b533b400900aca161f7ff6ec7221e674d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5be66db8aa8c96f5608bf9714e56a80cdb64e215b01c8bafe9cb27ef10caa25f
MD5 ed3834fba64ab7ae0acb47f1c8511882
BLAKE2b-256 c079b8974cce9daa166eaebbc9c21b01faa7997fa162825e1f4c6ca57e37b848

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f85d4b526941d0e2ff59e4db67c7d641ef765f83881b65bfa8795d376d24284
MD5 8eccaf0dce358498885c0d68831a33d7
BLAKE2b-256 143ea7b6e900b60988301bf775c58c7b1d94cd0675142ea2cebb0e79a0b06983

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 166895bb5a8ec0dbfe6f8a15c46c1b2ec2e796ec5c1f0f7f93119c192c8a2197
MD5 1ef3f7ac38d7d10f8ce193957a5bea26
BLAKE2b-256 69aa30d25e00e81a636bc841aea9c7d315c1d770fed95f7d39e9d12ae94bf963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8d11965f4792bb7e05932fac53e416c9c9d27c58b0925c3d49aeefcdbd69074
MD5 176dc17d1f1dc124d8e12a9f9978e935
BLAKE2b-256 05cacd225c708871ade5ddbe47f4c28880322d74a0cc0a73da56b64129dcbc69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e49a7c5a9a503b31487f689276010cd644094a9341058df062dcc03b9b031ed
MD5 b4741ce0bbfff28f7b9e0327342ec1c5
BLAKE2b-256 9039544e12758d08749c9c0ec0bf225a805b7465d93dc4a9229f6e4618ab89b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 526bd9bed86e9b0412f7b2fbcd028304b18b3b05b6533799fa0a7c326b3f13de
MD5 036b4be1c4b1c4881aab7e298f107215
BLAKE2b-256 45afce5313ff89eacea6764c35f6f50bedf1d012b58cc66a4d7773052ba2cb3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 084cf91ac80cdef01a846c991c6ef0d9ef5a6c2b4115eda54c2cb53701505002
MD5 40b570449f93bc6784ea6d1ce735270a
BLAKE2b-256 d92c4500db25ff3fdf7328beff44db42361f9f29e43cff7f62c97486cdc8d09a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for globlin-0.2.1-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 97f49608fe0b7d7a55cb0b1ef6cdc6577f44f519bf4c5a6c626d4338ca987fe1
MD5 553fb9d6824684500b2bed867af6b526
BLAKE2b-256 c79b3f08b7a4993924f58d17564d1f99d9d0f336e1fb0c6525fcdbf93a77acc2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for globlin-0.2.1-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 8c54a0f2e2a7947afe1c304fff440c54c4345cc08e9ab27d6f68ee073c1f027a
MD5 fc6d9862a0783d50f01baccd910bf608
BLAKE2b-256 e49a6484b8613cfcad5429f4b7349bed0a1ade0bf29cddaf952948bf294ef749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbdb8e92c9e7f3a67c818a9f91d15877e11dacba475216ff1e6f9d75f3c27645
MD5 182646d7f798f8e39818f197c45bdf14
BLAKE2b-256 cecdc11664a73ed25caffd8e3397e0dbe61b1a8ec3bdfdf93231ad6130937858

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1da4f18f347db7556b2d1b055ad81a3eec2be95541b22c1b5b4527368c151f7
MD5 c85ab505e1a49b4d3aa3c8d9dbddd5ff
BLAKE2b-256 51655e6a167ce017dcc3519dab4dc5dbfaa748221d78343f57d8cb4674a9843b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c3a36931570e5bac5fdc840bbc0ce1340264b4886186047b579228fb21958d7
MD5 3896784e27a934a1e1c6e01be9487e0a
BLAKE2b-256 aeafe8a18809e1369663542cd2a8008f6ad26d1566209f0091aba4954606734c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 112305ded60c65fee39cee9e230b3b11c045ba5458ef055b4f4313d5647ab327
MD5 6bbfdf9dabbb24cd84c0b60beeb04758
BLAKE2b-256 10e58f1f2ff993429c05776bd328ffb6ed2cff48acfd42263cd806160c86b8f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 11c47e47165889ab8d8cc9f65e190852c5d9f15053da6dae5a5d9a32b4384a75
MD5 c6d6526cce033ca7947b44f451c300b0
BLAKE2b-256 02c622bd124484dcf9d1c3920437ff54a68032d7c691be8e1fea8e1471f58b5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 893879641e4110763710d76291bdfd64c9ab4269f17aefd07057542b9a611825
MD5 a759f310c8e5ab20b06a0c29a13aff3e
BLAKE2b-256 698393b32b16e3589cabe5e9897efcf6eb13124d2429026e7325a519df654c5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c5f908b397c505d5e28558d9b9f9e0f423f99409f3025973e07fa6330642f06
MD5 e438c5fed8c0c58900d5d091a84d71ef
BLAKE2b-256 268e5189f8688a897ca3cd68a76301eed41f64c99e13a45fac0e343049352102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for globlin-0.2.1-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b6f5e15163d56f5423e88e9e85e8a7a58d5ceeba116ca77e3f0a275734823e29
MD5 fbc3a828b55a404b9a39014355354e15
BLAKE2b-256 e80b13cfb8e67d8be58dadf58f4722a1178f0c61de2f20465ca04b2f25cb3488

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