Skip to content

moloney/pathmap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pathmap

This package provides similar functionality to the Unix find command, but in a much more pythonic fashion. A PathMap object encapsulates a number of rules that define how to traverse a directory structure and try to match the paths along the way. The PathMap.walk method takes one or more root paths to start from and generates a MatchResult object for any path it encounters that match its rules.

The package is built upon the scandir package which provides effiecient directroy listing and the ability to avoid unneeded 'stat' calls on the paths being generated.

Running Tests

You can run the tests with:

$ python setup.py test

Or if you already have the nose package installed you can use the nosetests command in the top level directory:

$ nosetests

Installing

You can install the .zip or .tar.gz package with the easy_install or pip commands.

Or you can uncompress the package and in the top level directory run:

$ python setup.py install

About

A pythonic analog to the posix "find" command

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages