├── .gitignore ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SimpleMDMpy ├── Account.py ├── AppGroups.py ├── Apps.py ├── AssignmentGroups.py ├── CustomAttributes.py ├── CustomConfigurationProfiles.py ├── DepServers.py ├── DeviceGroups.py ├── Devices.py ├── Enrollments.py ├── InstalledApps.py ├── Logs.py ├── LostMode.py ├── ManagedAppConfigs.py ├── PushCertificate.py ├── ScriptJobs.py ├── Scripts.py ├── SimpleMDM.py └── __init__.py ├── pyproject.toml ├── requirements.txt ├── setup.cfg └── tests ├── readme.md ├── settings-sample.py ├── test_Account.py ├── test_CustomConfigurationProfiles.py └── test_Devices.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg* 3 | .DS_Store 4 | settings.py 5 | 6 | .vscode 7 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/README.md -------------------------------------------------------------------------------- /SimpleMDMpy/Account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/Account.py -------------------------------------------------------------------------------- /SimpleMDMpy/AppGroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/AppGroups.py -------------------------------------------------------------------------------- /SimpleMDMpy/Apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/Apps.py -------------------------------------------------------------------------------- /SimpleMDMpy/AssignmentGroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/AssignmentGroups.py -------------------------------------------------------------------------------- /SimpleMDMpy/CustomAttributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/CustomAttributes.py -------------------------------------------------------------------------------- /SimpleMDMpy/CustomConfigurationProfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/CustomConfigurationProfiles.py -------------------------------------------------------------------------------- /SimpleMDMpy/DepServers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/DepServers.py -------------------------------------------------------------------------------- /SimpleMDMpy/DeviceGroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/DeviceGroups.py -------------------------------------------------------------------------------- /SimpleMDMpy/Devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/Devices.py -------------------------------------------------------------------------------- /SimpleMDMpy/Enrollments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/Enrollments.py -------------------------------------------------------------------------------- /SimpleMDMpy/InstalledApps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/InstalledApps.py -------------------------------------------------------------------------------- /SimpleMDMpy/Logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/Logs.py -------------------------------------------------------------------------------- /SimpleMDMpy/LostMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/LostMode.py -------------------------------------------------------------------------------- /SimpleMDMpy/ManagedAppConfigs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/ManagedAppConfigs.py -------------------------------------------------------------------------------- /SimpleMDMpy/PushCertificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/PushCertificate.py -------------------------------------------------------------------------------- /SimpleMDMpy/ScriptJobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/ScriptJobs.py -------------------------------------------------------------------------------- /SimpleMDMpy/Scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/Scripts.py -------------------------------------------------------------------------------- /SimpleMDMpy/SimpleMDM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/SimpleMDM.py -------------------------------------------------------------------------------- /SimpleMDMpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/SimpleMDMpy/__init__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/tests/readme.md -------------------------------------------------------------------------------- /tests/settings-sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/tests/settings-sample.py -------------------------------------------------------------------------------- /tests/test_Account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/tests/test_Account.py -------------------------------------------------------------------------------- /tests/test_CustomConfigurationProfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/tests/test_CustomConfigurationProfiles.py -------------------------------------------------------------------------------- /tests/test_Devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macadmins/simpleMDMpy/HEAD/tests/test_Devices.py --------------------------------------------------------------------------------