Metadata-Version: 2.1
Name: pyfindtool
Version: 0.13
Summary: tool to search a directory tree for files matching some criteria, in a way similar to GNU find
Author-email: maxpat78 <maxpat78@yahoo.it>
License: Public Domain
Project-URL: homepage, https://github.com/maxpat78/PyFind
Project-URL: repository, https://github.com/maxpat78/PyFind.git
Keywords: find,search,filesystem
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: Public Domain
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: System :: Filesystems
Requires-Python: >=3.0
Description-Content-Type: text/markdown

PyFind
======

This module provides a simple tool to search a directory tree for files
matching some criteria, in a way similar to GNU find.

It works both from command line and as a module.

A sample:
```
	from pyfind import Search
	
	# Finds all files greater than 1 MiB, created in the last 25 minutes,
	# whose name ends in '.py' or '.pyc'
	for found in Search('.', '-size +1m -a -cmin -25 -a ( -name *.py -or -name *.pyc )').find():
		print (found)
```
		
Also, it provides some extension switches: -Xdate and -Xhour, to test date
and times in a more user-friendly way (and better than -xnewerXY).


The code is given to the Public Domain.
