Does anyone know of a way to programmatically inspect podcasts and create playlists via Python for iTunes 11 on Windows?
Prior to iTunes 11, one could script it on Windows from Python using the win32com.client
package. While technically this is still possible, significant portions of the API have been removed with iTunes 11. Apple has also removed the iTunes COM SDK documentation from its website, and the win32com.client
interface has always relied on lazy method lookup (so it's not possible to inspect the wrapped COM object for a list of methods or their expected arguments).