Filter filesystem paths based on gitignore-like patterns
Project description
py-walk
Python library to filter filesystem paths based on gitignore-like patterns.
Example:
from py_walk import walk
from py_walk import get_parser_from_text
patterns = """
**/data/*.bin
!**/data/foo.bin
# python files
__pycache__/
*.py[cod]
"""
# you can get the filtered paths from a directory
for path in walk("some/directory", ignore=patterns):
do_something(path)
# ...or check paths against the patterns manually
parser = get_parser_from_text(patterns, base_dir="some/directory")
if parser.match("file.txt"):
do_something_else()
py-walk can be useful for applications or tools that work with paths and aim to
offer a .gitignore
type file to their users. It's also handy for users working
in interactive sessions who need to quickly retrieve sets of paths that must
meet relatively complex constraints.
py-walk tries to achieve 100% compatibility with Git's gitignore (wildmatch) pattern syntax. Currently, it includes more than 500 tests, which incorporate all the original tests from the Git codebase. These tests are executed against
git check-ignore
to ensure as much compatibility as possible. If you find any divergence, please don't hesitate to open an issue or PR.
Installation
To install py-walk, simply use pip
:
$ pip install py-walk
Usage
With py-walk, you have the ability to input paths into the library to determine whether they match with a set of gitignore-based patterns. Alternatively, you can directly traverse the contents of a directory, based on a set of conditions that the paths must meet.
walk
To walk through all the contents of a directory, don't provide any constraints:
from py-walk import walk
for path in walk("/some/directory/"):
print(path)
walk
accepts the directory to traverse as a strings or as a Path
object from
pathlib
. It returns Path
objects.
walk
returns a generator, if you prefer to get the results as a list or tuple, wrap the call with the desired data type constructor (eg.list(walk("some-dir"))
).
To ignore certain paths, you can pass patterns as a text or a list of patterns:
ignore = """
# these patterns use gitignore syntax
foo.txt
/bar/**/*.dat
"""
for path in walk("/some/directory", ignore=ignore):
...
or
ignore = ["foo.txt", "/bar/**/*.dat"]
for path in walk("/some/directory", ignore=ignore):
...
To only retrieve paths that match a set of patterns, use the match
parameter
(again, passing a text blob or a list of patterns):
for path in walk("/some/directory", ignore=["data/"], match=["*.css", "*.js"]):
...
Note that the
ignore
parameter has precedence: once a path is ignored it can't be reincluded using thematch
parameter due to performance reasons. That includes children of ignored directories. For example, if you ignore a directory/foo/
,/foo/bar/file.txt
will be ignored even ifmatch
includes the*.txt
pattern.
In addition, you can retrieve either only files or only directories using the
mode
parameter:
for path in walk("/some/directory", ignore=["static/"], mode="only-files"):
...
for path in walk("/some/directory", ignore=["static/"], mode="only-dirs"):
...
You can combine ignore
, match
and mode
to get the exact list of files
that you need. However, always remember that ignore
takes precedence over the
other two.
Note: you can convert any text containing gitignore-based patterns into a list using the
py_walk.pattern_text_to_pattern_list
function:from py_walk import pattern_text_to_pattern_list pattern_list = pattern_text_to_pattern_list(""" # some patterns **/foo.txt dir[A-Z]/ """)
get_parser_from_*
You can also create a parser from a gitignore-type text, a list of patterns or
a file handle to a .gitignore
type of file. Using the match
method of the
parser, you can directly evaluate paths.
from py_walk import get_parser_from_file
parser = get_parser_from_file("path/to/gitignore-type-file")
if parser.match("file.txt"):
print("file.txt matches!")
from py_walk import get_parser_from_text
patterns = """
# some comment
*.txt
**/bar/*.dat
"""
parser = get_parser_from_text(patterns, base_dir="/some/folder")
if parser.match("file.txt"):
print("file.txt matches!")
from py_walk import get_parser_from_list
patterns = [
"*.txt",
"**/bar/*.dat",
]
parser = get_parser_from_list(patterns, base_dir="/some/folder")
if parser.match("file.txt"):
...
base_dir
The base_dir
denotes the directory where files are stored. When you use
get_parser_from_file
, the base_dir
is determined by the location of the
gitignore-type file passed as a parameter. Specifically, it's set to the parent
directory, which mirrors the functionality of Git and a .gitignore
file.
When using get_parser_from_text
or get_parser_from_list
, you have the
option to either explicitly set the base_dir
or leave it out. If omitted,
most matches will work just fine, as the provided path will simply be compared
to the patterns in a textual manner. However, there are certain instances where
the package will need to access the actual file system to resolve a match. For
instance, if you have a pattern like foo/bar/
and the provided path is
foo/bar
, a match will only occur if bar
is a directory. If base_dir
is
defined, the package will verify the existence of bar
and confirm if it is
indeed a directory, returning True
in that case. If bar
is not a directory
or base_dir
is not defined, the result will be False
. Therefore, while it's
entirely possible to match patterns without a base_dir
, be mindful of the
potential differences in results. This behavior is directly copied from Git to
maintain as much compatibility with it as possible.
License
py-walk is available under the MIT license.
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
Built Distribution
File details
Details for the file py_walk-0.3.1.tar.gz
.
File metadata
- Download URL: py_walk-0.3.1.tar.gz
- Upload date:
- Size: 1.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cdd5f0e5809c6aa72c17fda4de99fcc3a6f51be727a1f839cc75b17c13483516 |
|
MD5 | 1ffeaa3fe85108d4a5ec2bdac9f60a26 |
|
BLAKE2b-256 | 69eb84fc8dd1d32c10ae4b34781258dee53cc82d7252f012616fe5598083ae6e |
File details
Details for the file py_walk-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: py_walk-0.3.1-py3-none-any.whl
- Upload date:
- Size: 14.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10cb7b105ce68dd58b1c8062abee88121602cbf965ebca9ec97c4a7bfd3066b8 |
|
MD5 | d8a5fb470e95c934b35a0fb1ede64b29 |
|
BLAKE2b-256 | 9523f800b332714ccce9448e0f2ef0459ceb96956b7fae9bf16259d2afc02eea |