Skip to main content

A utility to find file paths.

https://snyk.io/test/github/jkeyes/pathfinder/badge.svg

https://travis-ci.org/jkeyes/pathfinder.png?branch=master

https://static.deepsource.io/deepsource-badge-light.svg

Examples

from pathfinder import find

# get all directories and sub-directories in current directory
paths = find(".", just_dirs=True)

# get all files in the current directory and all sub-directories
paths = find(".", just_files=True)

# get all jpg files using a regex
paths = find(".", regex=".*\.jpg$")

# get all jpg files using posix wildcards
paths = find(".", fnmatch="*.jpg")

# get all jpg files and png files
from pathfinder import FnmatchFilter
from pathfinder import OrFilter
jpg_filter = FnmatchFilter("*.jpg")
png_filter = FnmatchFilter("*.png")
gif_filter = FnmatchFilter("*.gif")
image_filter = OrFilter(jpg_filter, png_filter, gif_filter)
paths = find(".", filter=image_filter)

# shortcut using bitwise or
paths = find(".", filter=jpg_filter | png_filter | gif_filter)

# even shorter using ImageFilter to find all images
from pathfinder import ImageFilter
paths = find(".", filter=ImageFilter())

# and an even shorter way
paths = ImageFilter().find(".")

Installation

To install pathfinder, simply:

$ pip install pathfinder

Development

To install development dependencies run:

$ pip install -r dev-requirements.txt

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pathfinder-0.6.0.tar.gz (4.4 kB view details)

Uploaded Source

File details

Details for the file pathfinder-0.6.0.tar.gz.

File metadata

  • Download URL: pathfinder-0.6.0.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.6

File hashes

Hashes for pathfinder-0.6.0.tar.gz
Algorithm Hash digest
SHA256 9c1854c25d91c995128dfdbd0d035684816be0dbcede3142a028939ed881ccaf
MD5 2d094a168d6762ee8f3946d9992e59cd
BLAKE2b-256 680a062420d0d88a1d3e541df1f48d6ea3a0e7785e3d04f9fcfe0c4a6636c1b0

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