Metadata-Version: 2.1
Name: pywin-query
Version: 0.0.1
Summary: An convenience wrapper that allows you to use Windows' File Search functionality.
Home-page: https://github.com/KSokhal/pywin-query
Author: KSokhal
Author-email: ksokhal99@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: pywin32

# pywin-query
An convenience wrapper that allows you to use Windows' File Search functionality.


## Usage
Basic example
```
    q = WinQuery("C:/path/to/directory")

    files_with_foo = q.query("foo")
    files_with_bar = q.query("bar")

    files_with_foo_or_bar = q.query(["foo", "bar"])
```

For different values from each search result, custom headers can be used that can be found on https://msdn.microsoft.com/en-us/library/windows/desktop/bb419046(v=vs.85).aspx

```
    q = WinQuery("C:/path/to/directory", ["System.ItemName"])
```

