k3fnmatch
Enhanced fnmatch with grouping regex and path transformation utilities.
k3fnmatch is a component of pykit3 project: a python3 toolkit set.
Features
- Enhanced pattern matching: Supports
**for multi-segment paths - Grouping regex: Captures matched segments for extraction
- Path transformation: Convert paths using pattern pairs
- Drop-in enhancement: Compatible with standard fnmatch patterns
Installation
pip install k3fnmatch
Quick Start
Pattern Matching with translate()
Convert fnmatch patterns to regex with capture groups:
import re
import k3fnmatch
# Match files in any subdirectory
pattern = k3fnmatch.translate("**/*.md")
regex = re.compile(pattern)
# Extract matched segments
match = regex.match("docs/guide/intro.md")
print(match.groups()) # ('docs/guide/', 'intro', '.md')
Path Transformation with fnmap()
Transform paths using source and destination patterns:
import k3fnmatch
# Convert .md to .html
result = k3fnmatch.fnmap(
"docs/guide/intro.md",
"**/*.md",
"**/*.html"
)
print(result) # "docs/guide/intro.html"
# Add suffix to filenames
result = k3fnmatch.fnmap(
"src/module.py",
"*/*.py",
"*/*-backup.py"
)
print(result) # "src/module-backup.py"
Pattern Syntax
| Pattern | Meaning | Example |
|---|---|---|
* |
Single segment (no /) |
*.txt matches file.txt but not dir/file.txt |
** |
Multi-segment (with /) |
**/*.py matches a/b/c.py |
? |
Single character | file?.txt matches file1.txt |
[...] |
Character class | [abc] matches a, b, or c |
[!...] |
Negated class | [!0-9] matches non-digits |
API Reference
k3fnmatch.pattern
fnmap(src_path, src_pattern, dst_pattern)
Transform a path using source and destination patterns.
Matches src_path against src_pattern, extracts the wildcard segments, and reconstructs using dst_pattern with the same wildcards in corresponding positions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
src_path
|
str
|
Path to transform (e.g., "foo/x/y.md") |
required |
src_pattern
|
str
|
Source pattern with wildcards (e.g., "*/.md") |
required |
dst_pattern
|
str
|
Destination pattern with wildcards (e.g., "*/-cn.md") |
required |
Returns:
| Type | Description |
|---|---|
str
|
Transformed path (e.g., "foo/x/y-cn.md") |
Examples:
>>> fnmap("foo/x/y.md", "**/*.md", "**/*-cn.md")
'foo/x/y-cn.md'
>>> fnmap("a/b/c.txt", "*/*/*.txt", "*/*/*-backup.txt")
'a/b/c-backup.txt'
>>> fnmap("file.md", "*.md", "*-backup.md")
'file-backup.md'
Source code in k3fnmatch/pattern.py
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | |
translate(pat)
Translate a shell PATTERN to a regular expression with grouping.
Enhanced version of fnmatch.translate() that: - Produces grouping regex for capturing matched segments - Supports ** for multi-segment matching (matches across /) - Supports * for single-segment matching (no /) - Supports ? for single character - Supports [...] for character classes - Supports backslash escaping: *, \?, [, ], \
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pat
|
str
|
Shell pattern with wildcards |
required |
Returns:
| Type | Description |
|---|---|
str
|
Regular expression string with capture groups |
Examples:
>>> import re
>>> pattern = translate("**/*.md")
>>> m = re.match(pattern, "foo/bar/doc.md")
>>> m.groups()
('', 'foo/bar', '/', 'doc', '.md')
>>> pattern = translate("*.txt")
>>> bool(re.match(pattern, "file.txt"))
True
>>> bool(re.match(pattern, "dir/file.txt"))
False
>>> pattern = translate(r"file\*.txt")
>>> bool(re.match(pattern, "file*.txt"))
True
Source code in k3fnmatch/pattern.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | |
License
The MIT License (MIT) - Copyright (c) 2015 Zhang Yanpo (张炎泼)