├── .gitignore ├── .project ├── .pydevproject ├── CONTRIBUTING.md ├── LICENSE.txt ├── PULL_REQUEST_TEMPLATE.md ├── README ├── osx ├── __init__.py ├── _corefoundation_cffi_build.py ├── corefoundation.py ├── frameworks │ ├── __init__.py │ ├── _corefoundation_cffi.py │ ├── _opendirectory_cffi.py │ ├── _security_cffi.py │ ├── _security_cms_cffi.py │ └── _utils_cffi.py ├── opendirectory.py ├── test │ ├── __init__.py │ ├── data │ │ ├── binary_fmt.plist │ │ └── xml_fmt.plist │ ├── test_cfarray.py │ ├── test_cfdata.py │ ├── test_cfdictionary.py │ ├── test_cflocale.py │ ├── test_cfpropertylist.py │ ├── test_cfstring.py │ ├── test_cftimezone.py │ └── test_opendirectory.py └── utils.py ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/.pydevproject -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/README -------------------------------------------------------------------------------- /osx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/__init__.py -------------------------------------------------------------------------------- /osx/_corefoundation_cffi_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/_corefoundation_cffi_build.py -------------------------------------------------------------------------------- /osx/corefoundation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/corefoundation.py -------------------------------------------------------------------------------- /osx/frameworks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/frameworks/__init__.py -------------------------------------------------------------------------------- /osx/frameworks/_corefoundation_cffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/frameworks/_corefoundation_cffi.py -------------------------------------------------------------------------------- /osx/frameworks/_opendirectory_cffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/frameworks/_opendirectory_cffi.py -------------------------------------------------------------------------------- /osx/frameworks/_security_cffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/frameworks/_security_cffi.py -------------------------------------------------------------------------------- /osx/frameworks/_security_cms_cffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/frameworks/_security_cms_cffi.py -------------------------------------------------------------------------------- /osx/frameworks/_utils_cffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/frameworks/_utils_cffi.py -------------------------------------------------------------------------------- /osx/opendirectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/opendirectory.py -------------------------------------------------------------------------------- /osx/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/test/__init__.py -------------------------------------------------------------------------------- /osx/test/data/binary_fmt.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/test/data/binary_fmt.plist -------------------------------------------------------------------------------- /osx/test/data/xml_fmt.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/test/data/xml_fmt.plist -------------------------------------------------------------------------------- /osx/test/test_cfarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/test/test_cfarray.py -------------------------------------------------------------------------------- /osx/test/test_cfdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/test/test_cfdata.py -------------------------------------------------------------------------------- /osx/test/test_cfdictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/test/test_cfdictionary.py -------------------------------------------------------------------------------- /osx/test/test_cflocale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/test/test_cflocale.py -------------------------------------------------------------------------------- /osx/test/test_cfpropertylist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/test/test_cfpropertylist.py -------------------------------------------------------------------------------- /osx/test/test_cfstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/test/test_cfstring.py -------------------------------------------------------------------------------- /osx/test/test_cftimezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/test/test_cftimezone.py -------------------------------------------------------------------------------- /osx/test/test_opendirectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/test/test_opendirectory.py -------------------------------------------------------------------------------- /osx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/osx/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pyosxframeworks/HEAD/tox.ini --------------------------------------------------------------------------------