which certificate/identifiers/profilers should be used for python script to be distributed as a pyinstaller build/bundle outside the app store?
3
votes
1
answer
252
views
My program works as follows
In a while loop, it checks for the active window change - AppKit library used
from AppKit import NSWorkspace
active_window = (NSWorkspace.sharedWorkspace().activeApplication()['NSApplicationName'])
if the active window changes to from some other window to google chrome, I need get the url from the chrome's current tab using apple script as :
url="""tell application "System Events"
tell application "Google Chrome" to get the URL of the active tab of window 1 as string
end tell"""
This script is running fine, I can able to get the current window name and also url
I need to know which kind of identifier, provisioning profile, certificate should be used for the same
Im confused of choosing the certificate
I don't have any idea if I need to have a provisioning profile
Im not going to place this app in mac app store, I just wanted to use this app to support another electron application
Any help is appreciated
Asked by chitharthan
(315 rep)
Aug 4, 2020, 08:52 AM
Last activity: May 11, 2025, 07:09 AM
Last activity: May 11, 2025, 07:09 AM