Metadata-Version: 2.0
Name: python-find
Version: 0.1
Summary: UNKNOWN
Home-page: UNKNOWN
Author: Andrew Bryant
Author-email: abryant288@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Overiew
A unix find utility written in python.

## Example usage
Import into your code:
import python_find
python_find.find(root='~', name='*.jpg')

Run module directly:
python -m python_find -type f -name "*.py"


## Current features
Only can find files by type and name as of now. The unix find examples
show implemented features.

Unix find examples:
* find . -type f -name "*.jpg"
* find ~ -type l




