Metadata-Version: 2.1
Name: launchd-plist
Version: 2018.11.19
Summary: launchd.plist generator
Home-page: https://github.com/looking-for-a-job/launchd-plist.py
License: UNKNOWN
Description: [![](https://img.shields.io/pypi/pyversions/launchd-plist.svg?longCache=True)](https://pypi.org/pypi/launchd-plist/)
        
        #### Install
        ```bash
        $ [sudo] pip install launchd-plist
        ```
        
        #### Features
        +   based on [launchd.plist keys](https://www.real-world-systems.com/docs/launchd.plist.5.html)
        
        #### Classes
        
        ###### `launchd_plist.Plist`
        
        launchd plist class
        
        method|description
        -|-
        `create(path)`|create .plist file
        `load(path)`|load data from .plist file
        
        @property|description
        -|-
        `data`|return dictionary with launchd plist keys only
        
        #### Examples
        ```python
        >>> class MyPlist(launchd_plist.Plist):
            Label = "MyPlist"
            StartInterval = 1
        
            @property
            def StandardErrorPath(self):
                return "path/to/logs/%s/err.log" % self.Label
        
        >>> MyPlist().create('path/to/launchagent.plist')
        ```
        
        [launchd.plist keys](https://www.real-world-systems.com/docs/launchd.plist.5.html)
        ```python
        >>> launchd_plist.KEYS
        ['Label', ..., 'Sockets']
        ```
        
        #### Links
        +   [launchd.plist(5) Mac OS](https://www.real-world-systems.com/docs/launchd.plist.5.html)
        
        <p align="center"><a href="https://pypi.org/project/readme-md/">readme-md</a> - README.md generator</p>
Keywords: launchd
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
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
