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
Release history Release notifications | RSS feed
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
File details
Details for the file mac_signing_buddy-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: mac_signing_buddy-1.0.0-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f67201ef91613496d6be24e5dc6d2a3731735a28d733a8c96177a2471ceea4f |
|
MD5 | 4562185a5f426d10985d403c84bdd7c2 |
|
BLAKE2b-256 | 03cecc4df1ed7e9dad0f52ec1c01d435198fe018b2ce8dfa429642a60bbe0028 |