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_paths

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

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

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

# get all jpg files using posix wildcards
paths = find_paths(".", 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_paths(".", filter=image_filter)

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

# even shorter using ImageFilter to find all images
from pathfinder import ImageFilter
paths = find_paths(".", 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.1.tar.gz (4.4 kB view details)

Uploaded Source

File details

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

File metadata

  • Download URL: pathfinder-0.6.1.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.1.tar.gz
Algorithm Hash digest
SHA256 3b4e59e6c14731ef6c43ad9c5be81275b951f18a9281e0f7f1acdbe5be4ee96d
MD5 929d8449325be74736efedfa3d7452bb
BLAKE2b-256 265213bce110b8338a99a4944cab32204bf194e3662e1bf02c1a1b0949335553

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