I'm trying to devel开发者_如何学编程op some scripts for iTunes in python and actually i'm having quite a hard time getting the API information.
I'm using the win32com.client module but i would really need to get all the specifications, methods and details.
There are a few examples but I need some extra data......
thanks!!!
iTunes com interface documentation is available at http://developer.apple.com/sdk/itunescomsdk.html
I know it has been a long time since this question was asked. But I find out some resource for later reference.
REST API:
https://developer.apple.com/documentation/appstoreconnectapi/
Python Wrapper:
https://pypi.org/project/appstoreconnect
Run dir(my_com_client)
to get a list of available methods.
Here's a Python library to access iTunes API: http://pypi.python.org/pypi/python-itunes/1.0
精彩评论