dirwalker is a Python 3.12+ module that walks multiple-level directories searching for files with the given extensions and returns the absolute path of each file it finds.
You can install dirwalker either via the Python Package Index (PyPI) or from source.
To add it to a project managed with uv, which records it in your
pyproject.toml and lock file:
$ uv add dirwalkerOr to install it with pip:
$ pip install dirwalkerSource: https://github.com/questrail/dirwalker
import dirwalker
# Search, recursing subdirectories
dirwalker.find_filenames_with_extensions(
"/Users/me/dev/search_directory", ["txt", ".csv"]
)
# Search without recursing subdirectories
dirwalker.find_filenames_with_extensions(
"/Users/me/dev/search_directory", ["txt", ".csv"], recurse=False
)A set of absolute paths is returned. Each extension is matched against the
end of the filename, so it may be given with or without its leading period:
both csv and .csv find readings.csv. Directories are searched, never
returned, even when a directory's own name ends in one of the extensions.
dirwalker uses only the Python standard library. See the pyproject.toml
and uv.lock files for the development dependencies.
Contributions are welcome! To contribute please:
- Fork the repository
- Create a feature branch
- Add code and tests
- Pass lint and tests
- Submit a pull request
$ brew install uv justWith uv and Just installed, development has been simplified to simply running Just to see the available commands.
$ justruff and pyright are deliberately absent from that line. Both are dev
dependencies pinned in uv.lock and reached through uv run, so every recipe
and every CI job uses the same version. A brew install ruff would put a
second, unpinned copy on the path for an editor to find, and ruff releases
change how code is formatted: the editor would then reformat code that
ruff format --check rejects on the next run.
just release cuts the release. It first checks that a release is possible at
all, then lints, type checks, and tests, then shows the entries waiting under
Unreleased and the version each kind of bump would produce, and asks which to
cut. Once answered it bumps the version, closes out the CHANGELOG, updates the
lock file, commits, and tags. Pushing the tag is what publishes.
$ just release
Releasing from 1.0.0, with these entries under Unreleased:
### Fixed
- A trailing separator on the search directory was carried into the
returned paths.
1) patch 1.0.0 -> 1.0.1
2) minor 1.0.0 -> 1.1.0
3) major 1.0.0 -> 2.0.0
q) cancel
Which release? [1] 1
Tagged v1.0.1. Publish it with:
git push --follow-tagsThe entries decide the bump, so the prompt puts them next to the versions they
would produce rather than leaving the choice to memory. Answering q, or
anything unrecognized, changes nothing.
The tag push runs the release workflow, which waits on the whole CI
workflow before it does anything else: the 3.12, 3.13, and 3.14
matrix and the workflow audit. git push --follow-tags starts both at once, so
without that wait an upload could go out while 3.14 was still running, or
already red. It then checks that the tagged commit is on master, since a tag
is only a pointer and one placed anywhere else would otherwise publish whatever
it points at, rechecks the tag against the version in pyproject.toml, and
builds.
Every check to that point runs against the source tree, so the workflow then
installs the wheel it just built somewhere src/ is not on the path and imports
it there, which is the only step that can catch a packaging mistake that left
something out of the distribution. It uploads once that passes. There is no PyPI
API token anywhere: the workflow authenticates with trusted publishing, which
mints a short lived credential from the GitHub OIDC identity of that run. That
same identity signs a PEP 740 attestation for each distribution, which PyPI
serves beside the file it attests: trusted publishing establishes who uploaded,
and the attestation establishes what was uploaded and which workflow built it.
The upload skips anything PyPI already holds, so a run that uploaded one
distribution and then failed on the other can be retried instead of stranding a
version number that PyPI will never allow to be reused.
Uploading is followed by a GitHub release for the tag, carrying the CHANGELOG section for that version as its notes and the built distributions as its assets. The notes are collected before the upload rather than after, so that a CHANGELOG with no section for the version being released stops the release while stopping it is still possible.
Pushing the tag is the point of no return, since PyPI never lets a version
number be reused. Everything just release does is local and amendable until
then, and it refuses to start against a dirty working tree, off master, on a
master behind its upstream, with a CHANGELOG whose Unreleased section is
empty, or when the tag it would create already exists. Those refusals come
before the lint and test run, so a release that cannot happen is turned away at
once rather than after the suite. A refusal leaves the version and the CHANGELOG
untouched.
just build runs the same checks and produces the same distributions without
releasing anything, which is the way to inspect what CI would upload.
This depends on one piece of configuration that lives outside the repository. A
trusted publisher has to be registered for dirwalker on
PyPI, pointing at the questrail/dirwalker repository, the release.yml
workflow, and the pypi environment. It is a one time setup per project.
dirwalker is released under the MIT license. Please see the LICENSE.txt file for more information.