Metadata-Version: 1.0
Name: defaults
Version: 0.0.1
Summary: Python wrapper for Mac OS defaults command
Home-page: http://github.com/cancerhermit/PyDefaults/
Author: cancerhermit
Author-email: cancerhermit@gmail.com
License: GPL
Description: Installing
        ----------
        
        ::
        
            pip install PyObjC # requires
            pip install defaults
        
        Usage
        -----
        
        ::
        
            from defaults import read, write
            read("com.apple.iCal",'Disable all alarms')
            >>> True
            read("com.apple.iCal",'not existing',False) # default value
            >>> False
            write("com.apple.iCal",'Disable all alarms',False)
        
        
Keywords: Mac defaults
Platform: MacOS X
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Environment :: Console
Classifier: Environment :: MacOS X
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
