1'''
2Python mapping for the Accounts framework.
3
4This module does not contain docstrings for the wrapped code, check Apple's
5documentation for details on how to use these functions and classes.
6'''
7
8import objc
9import sys
10import Foundation
11
12from Accounts import _metadata
13
14sys.modules['Accounts'] = mod = objc.ObjCLazyModule(
15    "Accounts",
16    "com.apple.Accounts",
17    objc.pathForFramework("/System/Library/Frameworks/Accounts.framework"),
18    _metadata.__dict__, None, {
19        '__doc__': __doc__,
20        'objc': objc,
21        '__path__': __path__,
22    }, (Foundation,))
23