Metadata-Version: 2.1
Name: mac-colors
Version: 0.0.1
Summary: MacOS Finder color tags
Home-page: https://github.com/looking-for-a-job/mac-colors.py
License: UNKNOWN
Description: [![](https://img.shields.io/badge/OS-MacOS-blue.svg?longCache=True)]()
        [![](https://img.shields.io/pypi/pyversions/mac-colors.svg?longCache=True)](https://pypi.org/pypi/mac-colors/)
        
        ### Install
        ```bash
        $ [sudo] pip install mac-colors
        ```
        
        ### Requirements
        ```bash
        $ brew install tag
        ```
        
        ### Examples
        set color
        ```python
        >>> import mac_colors
        >>> path = ["path/to/file1","path/to/file2"]
        >>> mac_colors.blue(path)
        >>> mac_colors.gray(path)
        >>> mac_colors.green(path)
        >>> mac_colors.orange(path)
        >>> mac_colors.purple(path)
        >>> mac_colors.red(path)
        >>> mac_colors.yellow(path)
        >>> mac_colors.none(path)
        ```
        
        multiple colors
        ```python
        >>> mac_colors.replace(["blue","red"],["path/to/file"])
        ```
        
        get color
        ```python
        >>> mac_colors.red(["path/to/file"])
        >>> mac_colors.get(path)
        {'path/to/file':["red"]}
        ```
        
        ### Links
        +   [tag](https://github.com/jdberry/tag)
Keywords: color tag
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: MacOS X
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
