Metadata-Version: 2.4
Name: mdfind-wrapper
Version: 0.1.5
Summary: A python library that wraps the mdfind.
Home-page: https://github.com/dmkskn/mdfind-wrapper
Author: Dima Koskin
Author-email: dmksknn@gmail.com
License: Unlicense
Keywords: macos,mdfind,spotlight
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: MacOS
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: requires-python
Dynamic: summary

# `mdfind`

A python library that wraps the **mdfind**.

- No dependencies except ones that in the python standart library
- Mypy checked ✨
- Fully tested

## Installation

```bash
$ pip install mdfind-wrapper
```

## Usage

```python
import mdfind # not mdfind-wrapper


QUERY = "kind:image"

images = mdfind.query(QUERY)
n_imgs = mdfind.count(QUERY)
```
