Skip to main content

A featureful fnmatch implementation

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

better-fnmatch

NOTE: The project is renamed to globlin. This package is no longer updated.

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

The implementation is provided by the glob-match library.

Globbing syntax

Syntax Meaning
? Matches any single character.
* Matches zero or more characters, except for path separators (e.g. /).
** Matches zero or more characters, including path separators. Must match a complete path segment (i.e. followed by a / or the end of the pattern).
[ab] Matches one of the characters contained in the brackets. Character ranges, e.g. [a-z] are also supported. Use [!ab] or [^ab] to match any character except those contained in the brackets.
{a,b} Matches one of the patterns contained in the braces. Any of the wildcard characters can be used in the sub-patterns. Braces may be nested up to 10 levels deep.
! When at the start of the glob, this negates the result. Multiple ! characters negate the glob multiple times.
\ A backslash character may be used to escape any of the above special characters.

API

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

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

better_fnmatch-0.1.1.tar.gz (24.7 kB view details)

Uploaded Source

Built Distributions

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

better_fnmatch-0.1.1-cp314-cp314t-win_amd64.whl (106.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

better_fnmatch-0.1.1-cp314-cp314t-win32.whl (101.2 kB view details)

Uploaded CPython 3.14tWindows x86

better_fnmatch-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (411.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

better_fnmatch-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl (440.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

better_fnmatch-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (421.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

better_fnmatch-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (224.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

better_fnmatch-0.1.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (244.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

better_fnmatch-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (216.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

better_fnmatch-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl (212.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

better_fnmatch-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl (216.9 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

better_fnmatch-0.1.1-cp313-cp313t-win_amd64.whl (106.5 kB view details)

Uploaded CPython 3.13tWindows x86-64

better_fnmatch-0.1.1-cp313-cp313t-win32.whl (101.4 kB view details)

Uploaded CPython 3.13tWindows x86

better_fnmatch-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (411.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

better_fnmatch-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (440.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

better_fnmatch-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (422.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

better_fnmatch-0.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (224.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

better_fnmatch-0.1.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (245.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

better_fnmatch-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (216.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

better_fnmatch-0.1.1-cp313-cp313t-macosx_11_0_arm64.whl (213.1 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

better_fnmatch-0.1.1-cp313-cp313t-macosx_10_12_x86_64.whl (217.7 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

better_fnmatch-0.1.1-cp39-abi3-win_amd64.whl (109.4 kB view details)

Uploaded CPython 3.9+Windows x86-64

better_fnmatch-0.1.1-cp39-abi3-win32.whl (104.2 kB view details)

Uploaded CPython 3.9+Windows x86

better_fnmatch-0.1.1-cp39-abi3-musllinux_1_2_x86_64.whl (416.0 kB view details)

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

better_fnmatch-0.1.1-cp39-abi3-musllinux_1_2_i686.whl (447.6 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

better_fnmatch-0.1.1-cp39-abi3-musllinux_1_2_aarch64.whl (426.4 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

better_fnmatch-0.1.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (227.8 kB view details)

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

better_fnmatch-0.1.1-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (250.1 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ i686

better_fnmatch-0.1.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (219.5 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

better_fnmatch-0.1.1-cp39-abi3-macosx_11_0_arm64.whl (217.2 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

better_fnmatch-0.1.1-cp39-abi3-macosx_10_12_x86_64.whl (221.8 kB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

Details for the file better_fnmatch-0.1.1.tar.gz.

File metadata

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

File hashes

Hashes for better_fnmatch-0.1.1.tar.gz
Algorithm Hash digest
SHA256 c7aadfb58c1ade08aaba6b76227e76cbbac22ec7a12fc3db6a69e3b57494272c
MD5 ee46531ea2a8e255c420cc95ee77491a
BLAKE2b-256 3c2fae738ae540c5646cf5a033d0031571d880b63c876a7789c07c61b35ff76a

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2b217f5500619da429ec32379b1520f753178c75b1c5346e9d42ac1c2897b72c
MD5 9bc52591a54025305a631eadf7a9ae20
BLAKE2b-256 ce7bdb636d051c8ee62ca84893f3d1b8548a252b6f8ea754754d37cf55d37bba

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3cc860f345c6a59abcaecbc990f50f2175e9b061c043f353eb503ca2f2370c20
MD5 eba4d089d05c14658806da892512c373
BLAKE2b-256 7d967deea8ac23d5bc3770b097e94d1e16c97ea1dd3477a542c23628dded4f5d

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4632cca06b48cf35cf97c43fd2e248d01b8bc6031268cda60edb8bc42a760eca
MD5 a5675ef2e07a07919e25cc35bcf7ccf4
BLAKE2b-256 06b989a4c6647727e679ddffedbde2a2e75aa7d6779a992e4eedcc82b18dc281

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 485c9397d5f52d204350db822a4a208364a381f60d5ef490abc950c88c74cfe0
MD5 1d2c6435e923d4ccf16ae484a281f154
BLAKE2b-256 789c8c7abb1db7ec1fa93bbf30975bc09fa0f45cfdd0605acb1558370e6f9b4e

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a461742ba028804dc04023c82045b2f3cda09d98d6a21fad9edcba1a41f83dd4
MD5 a6979ff5cdfaf14006ecddc696567a80
BLAKE2b-256 8ba732293628755a49268d5260b799b50e67dd37e4991830452797a08b19ef4a

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e29392c8c3b6b9ba21db3d138d38db83c09840545648267bfed88fffc3ead0da
MD5 62e637dc086dfc9fd196acf38bb824f5
BLAKE2b-256 3bef11acc1f54d3bfd05788bd29acb80878a12174fbb627c7d01ab39990cfadb

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4cdd4be81be983a81d9153866890d224e69baea59d8c225bc6ee2f3c2d479fc8
MD5 ed830cb201edac030e3dd298f446b837
BLAKE2b-256 43254548b7147b4f5c9d4d644e93007e7786f348069bff753a8e34f834b9787d

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf75bb9b2b2014e1fd4c7dcc01a7c77ec64a86906f20932da882e9aee9aa8a59
MD5 d5623bba2fae79e9ff68dbd9969b0373
BLAKE2b-256 81e35cd25818d04bf273db24077a985030f4b20cdc50da448d5ff39f0e7fcce3

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52e493b905120eb4224f8c361199de45bb7ac186bdf81793d92330029dbb1489
MD5 b26864ddc73918917169315e93c4fc97
BLAKE2b-256 adfdbb023b5e7aad5b7853735b585d6f4b112e8a1e74b1be832b63ef44240f1c

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2d784a182c3231621b8df3c8894ead6863cbe1a97c8483b58c9caf82a9779429
MD5 1a2346390d90e59b323b755bb47e7c96
BLAKE2b-256 ae649a3c01e72042bc96ee0822edfaec7cbb286640e474e3f43d2f3763bbe8fe

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e81b869571067e3a2e7e26bd04a23ac408b99a7a03a2f2ad966082bcabc5865e
MD5 519c355c83e63b1e42675f0b53bda5af
BLAKE2b-256 da302263bceecd8e3cbff2b48178867c92149659951ecc73d72e5b0c69cfdcc1

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp313-cp313t-win32.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 ff5262373efb3a305b4663a306e1dbf120c271822334e560ddd0428d8ad902e0
MD5 9b8f8ebd6b2823400bf7eff56d0079d4
BLAKE2b-256 3cf44df0064469e80b4adef6442f792f601def9c2976da56f4d0a6fc9497b9e7

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21bf7165ccf6ddcfb97a6cf6c89acc586966eee120d2d2ba7c3187a08a1441cc
MD5 dde5323de38b4bd0d360807a82377f0d
BLAKE2b-256 6214bcdc865a556c31132833ef9af9cbb15cadb3da5fae7800972ab0c681843f

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 910052e99c142b550c24cc95aff2e9c1e8c5fc85196b824121103ccc6c24c03f
MD5 621bbd5edf63320726c43f0955725896
BLAKE2b-256 48bd94b8468259381349e401538745e08a4a55d4c636c7ebe459be19d73cf084

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 974595119c4ee9245c46db062f97e4e669560ed9dc1b72800d4b6264df201be5
MD5 27990f5ceddb6c2a2eb3912d02ea8343
BLAKE2b-256 82c20ddae06404dbcb3fc445c77d220c52ce5718ce12922ebe8ff9722b616254

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f15da2eac0b9130c3333a591110e3a87f61de5188d1602830b1c9941e21ee493
MD5 7301e20e2f4cca40f0793502687e639b
BLAKE2b-256 391bdcef2e0b8fc9b0e769a15c7306250a213d44d2b64068864ca5932aa280ec

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09961ecc7df2391754ddbc0c9b5652efbdd0f91bb1724225959ee04a5ce74fe6
MD5 2d4f200825ddaf78c3cf13420af3e289
BLAKE2b-256 51a44baae90703952a676f5b81a0c0d8337d3d4383cc1cb0ba501b4fef0153b8

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cefcf8a1b1b2cc6e28a7d4e1cb01214e670d1928e8d89483b7ade8067ed7628a
MD5 dc6fc36e701f72cbc07a36372eb90cd8
BLAKE2b-256 4f439cdb25f97f8c44300a198813f5c1844b205d507fb84d18e2c79e3533931a

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1b7b6553b5384ad57035d15a307b6db0d5719e5cc0777bb2654a8fa21a854e2
MD5 684148c5ef0d482b65591c5c0c478032
BLAKE2b-256 e5a8403f6a4478ab8ae970e683d9a2cef5a5ddb770769905a61b151e608dceb5

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c42a9118d9ec951d60b30d81fa7dd0e31ac58b04678999f1965e14887ef4fce
MD5 78e056ee5fc05577641d133619a97910
BLAKE2b-256 4628c67c680e821d6b00488f89f3e2d9f478f5c34e9d199cedd2681408b08686

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp39-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 4466bce61685c7963d23feaee46e66d5c366bd431b9646608aa2628480da1208
MD5 0629e8a2a99732fe18552ff8333cf955
BLAKE2b-256 9adbe35641330dfd8c79714fd0b37612e11eae54f326ded7eccd920a3be69584

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp39-abi3-win32.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 9c5520144de8b19c5b4896beea444ef5d89386518a4801079247204e586e0c00
MD5 6467428d9862560b6aa8dbb709e72ba4
BLAKE2b-256 980edb6071ed12a2def49a4e1875acda14c42af79c8321c23d9401548305e797

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbbbe53ff06f6dc1b99b302a949dd5d0041a94a6d0f16cbf978e738032bf889c
MD5 a83d104da88754aee78e293508f085b0
BLAKE2b-256 cfb2402d39613dc9f83755e8d04c7999ca629003e16b13b85750a49434b82d93

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp39-abi3-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb64961373446acbe8cf55a8dd073de90c8e26f293581b5eb743dd79ee19c143
MD5 bf50e489a5e8974a07f9da727fba5bcb
BLAKE2b-256 06c41fe8f0b05114e3b7fbebf02d816958de4acc4b0f3284a7f67cfbb263313a

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b13991c529aade081b4f5434a6fef925bc45f040a1eb4cc948d2acc646763c6
MD5 36e3595aaee49fd12894b16fe7af9caf
BLAKE2b-256 65b1a417d07d94e897f88589238a84492a5d926fb440e242aa324795915b13bc

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 459ce5a85b62deff9fd1b02cfccef6724eae444fcd66dc1c146dc55c047e8310
MD5 89d5a592cc25d8eda4826b95d512fbb7
BLAKE2b-256 e1bab97234b1f40891ebf0f1e3dc283e747c99e108aebe00514959406df66b38

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 333a9c14005b8b06ba6b415ee9f7fdb91aadaee2e63a7a9fc8a6b27f930df5ce
MD5 06ee620e46a173b74ac9aedd84ba118c
BLAKE2b-256 ed190c15336f822b34417fbbe5e1340a1786f02d43084711e1f235e9cfac0f69

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f7286308b3c9077a648b6036037903966ce272d7bffea1844c208e9f0445e5a
MD5 c72755e298b903f04a895839ee5781f8
BLAKE2b-256 7924acad224de4b54be6b67bebcb9360383fc988b64290a6ae9f7b43968be404

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1304fdce891afc03ccc1594c3d402dd26affed4980b80ed3b86f2a76f8d3394
MD5 10c0a644d77c1f0dad72023d1b38f437
BLAKE2b-256 74f6630af79b407a2d33ba25647ab50054d81516a0489fac32f5b940ce8d2f0e

See more details on using hashes here.

File details

Details for the file better_fnmatch-0.1.1-cp39-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for better_fnmatch-0.1.1-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8954cb49aac343eb4bbb0d7141516edc843633cabee3f1810999df3070b5c3a9
MD5 f74b5715b1e31fac6f7c8bba964a505e
BLAKE2b-256 12946133453ef82a5ec5662bdab9eebf2c82c213404d401088e1d9021e40658a

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