Skip to content

Instantly share code, notes, and snippets.

@codeslord
Created February 21, 2020 12:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeslord/985dc8a2beba241295baa8ebe4589a17 to your computer and use it in GitHub Desktop.
Save codeslord/985dc8a2beba241295baa8ebe4589a17 to your computer and use it in GitHub Desktop.
from zipfile import ZipFile
from plistlib import loads
archive = ZipFile('Kodi19Alpha64bit.ipa')
plist_file = archive.read('Payload/Kodi.app/Info.plist')
pl = loads(plist_file)
pl['CFBundleDisplayName'] #output: 'Kodi'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment