Skip to main content

A Python package to sign and notarize macOS applications.

Project description

Mac Signing Buddy

Python module to easily sign Mac applications.

Usage - CLI

python3 -m mac_signing_buddy \
    --identity "$signing_identity" \
    --apple-id "$notarize_apple_id" \
    --password "$notarize_password" \
    --team-id "$notarize_team_id" \
    --entitlements "$entitlements" \
    --file "$file_to_sign"

Usage - Python

from mac_signing_buddy import Sign, Notarize

file = "path/to/file"
entitlements = "path/to/entitlements.plist"

identity = "Developer ID Application: Your Name (XXXXXXXXXX)"
apple_id = "sjobs@apple.com"
password = "password"
team_id  = "XXXXXXXXXX"

sign_obj = Sign(file, identity, entitlements)
sign_obj.sign()

notarize_obj = Notarize(file, apple_id, password, team_id, output)
notarize_obj.sign()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

mac_signing_buddy-1.0.0-py3-none-any.whl (6.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page