braincraft
A workshop of small, sharp utilities — carefully shaped helpers you reuse across projects to keep everyday coding tasks fast, tidy, and consistent.
Prerequisites
- Python
>=3.14
Installation
Install via pip:
pip install braincraft
Or add it as a Poetry dependency:
poetry add braincraft
Components
graph TD
A[braincraft] --> B[ignorefile]
A --> C[retry]
B --> B1["IgnoreFile — gitignore-style path matching"]
B --> B2["PatternHandler — extensible custom pattern handlers"]
C --> C1["retry_rand_exp — async retry with full-jitter back-off"]
| Module | Exported symbols | Purpose |
|---|---|---|
ignorefile |
IgnoreFile, PatternHandler |
Gitignore-style ignore-file parsing with extensible handlers |
retry |
retry_rand_exp |
Async retry with full-jitter exponential back-off |
Usage
IgnoreFile
Reads a gitignore-style ignore file and determines whether a given path should be
ignored. Pattern matching follows the full gitignore specification:
*, ?, [...] wildcards, negation (!), directory-only patterns (trailing /),
** double-star rules, and anchoring.
Anchored patterns (containing / at the start or middle, e.g. doc/build or
/dist) are matched relative to the current working directory at the time
IgnoreFile is created, not relative to the location of the ignore file itself.
The ignore file can therefore live anywhere.
Matching always occurs — no error is raised for paths outside CWD.
from pathlib import Path
from braincraft import IgnoreFile
ig = IgnoreFile(Path(".gitignore"))
print(ig.is_ignored(Path("dist/output.js"))) # True
print(ig.is_ignored(Path("src/main.py"))) # False
print(ig.is_ignored(Path("build/"))) # True (if build/ is a directory)
Custom pattern handlers
Extend matching behaviour by registering a PatternHandler subclass. Custom handlers
are consulted first; returning None falls through to the built-in gitignore handler.
from pathlib import Path
from braincraft import IgnoreFile, PatternHandler
class SizePatternHandler(PatternHandler):
"""Ignore files larger than a size encoded as 'size:>NNN' in the ignore file."""
def matches(self, pattern: str, path: Path, base_dir: Path) -> bool | None:
if not pattern.startswith("size:>"):
return None # not our pattern — let the built-in handle it
limit = int(pattern.removeprefix("size:>"))
if path.is_file():
return path.stat().st_size > limit
return None
ig = IgnoreFile(Path(".myignore"))
ig.register_handler(SizePatternHandler())
print(ig.is_ignored(Path("huge_dump.bin"))) # True if file > limit
retry_rand_exp
Calls an async coroutine with automatic retry and full-jitter exponential back-off.
Retries on any exception up to max_attempts times, sleeping a random jittered
duration between attempts. Re-raises the last exception when all attempts are exhausted.
from braincraft import retry_rand_exp
async def fetch_data(url: str) -> str:
# your async operation here
...
result = await retry_rand_exp(
fetch_data,
"https://example.com/api",
max_attempts=5,
base_delay=1.0,
max_delay=30.0,
)
Development
Prerequisites
- Poetry
2.2+
Install dependencies
poetry install
Format and lint
poetry run black braincraft; poetry run pylint braincraft
Run tests with coverage
poetry run pytest --cov=braincraft tests --cov-report html
Changelog
See CHANGELOG.md for a full history of changes.
License
This project is licensed under the MIT License — see the LICENSE file for details.
Author
Ron Webb
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file braincraft-1.1.0.tar.gz.
File metadata
- Download URL: braincraft-1.1.0.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.0 CPython/3.14.6 Linux/6.17.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b4f08937243820915eee5bb455977f67f033979f60cb1d5394cb92d9fcb9df7
|
|
| MD5 |
a23f2db7cd6367c7a6e02c7b3da1f6e0
|
|
| BLAKE2b-256 |
25e758037123998cf692f6bb36fd8cf7618f84ff05e3c882e130deb45ae268b9
|
File details
Details for the file braincraft-1.1.0-py3-none-any.whl.
File metadata
- Download URL: braincraft-1.1.0-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.0 CPython/3.14.6 Linux/6.17.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bc76e934955bfecb5899152af793ba1d5f85e4a6535af9ad84dea14fb539032
|
|
| MD5 |
de6c8b6e8d82c770c30d90fac86ec70f
|
|
| BLAKE2b-256 |
964979adc998f5ee4a2d32c4f5d94192810663bb8734b2fcd323675ea7b8ffe8
|