Metadata-Version: 2.1
Name: mdfind
Version: 0.0.0
Summary: mdfind wrapper
Home-page: https://github.com/looking-for-a-job/mdfind.py
License: UNKNOWN
Description: [![](https://img.shields.io/pypi/pyversions/mdfind.svg?longCache=True)](https://pypi.org/pypi/mdfind/)
        
        ### Install
        ```bash
        $ [sudo] pip install mdfind
        ```
        
        ### Examples
        `mdfind(args)`
        ```python
        >>> import mdfind
        >>> mdfind.mdfind(['-count','-onlyin','/usr','kMDItemContentType==public.shell-script'])
        42
        ```
        
        `name(name)` - `mdfind -name name ...`
        ```python
        >>> mdfind.name(name='Downloads')
        ```
        
        `query(query)` - `mdfind query`
        ```python
        >>> mdfind.query('kMDItemContentType==public.shell-script')
        ```
        
        `count` - `mdfind -count ...`
        ```python
        >>> mdfind.count(query='kMDItemContentType==public.mp3')
        42
        >>> mdfind.count(name="Downloads")
        ```
Keywords: mdfind
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development
Description-Content-Type: text/markdown
