Metadata-Version: 2.2
Name: shortwalk
Version: 0.0.3
Summary: os.walk with maxdepth option
Home-page: https://github.com/mugiseyebrows/shortwalk
Author: Stanislav Doronin
Author-email: mugisbrows@gmail.com
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: summary

# shortwalk

`os.walk` that can go no deeper than you want it to, and can jump over obstacles.

## Install

```
pip install shortwalk
```

## Use

```python
from shortwalk import walk

for root, dirs, files in walk(path, maxdepth=2, skip=['.git', '*.egg-info']):
    for file in files:
        do_stuff_with(file)
```
