Accessing iTunes XML metadata with Python
Build a Tree
The parse()
method takes input from an XML file object and builds a hierarchical tree as a collection of elements. Each element may have multiple child elements or no child elements. The root element is instantiated by the getroot()
method (Listing 3).
Listing 3
Build Tree from XML File
tree = ET.parse(xmlinfile) root = tree.getroot()
Track Dictionary
Track metadata is a hybrid of nested lists and dictionaries with key-value pairs. The dictionary containing the metadata is nested two levels below the root. The find()
method in the two statements shown in Listing 4 finds the next level descendant with a <dict>
tag.
Listing 4
First and Second Generation Dictionaries
dict_gen1 = root.find('dict') dict_gen2 = dict_gen1.find('dict')
The second-generation dictionary contains a list of all track dictionaries in the library or playlist. After locating the track dictionaries, you can work on the child elements that contain the metadata for each track.
Element Tags and Text
To get the track metadata, you need to find the track metadata tags and then retrieve the text from those tags. The statement in Listing 5 uses the findall()
method to find all child elements of each track dictionary beneath dict_gen2
and creates a list object named tracklist
that contains a list of dictionaries.
Listing 5
Tracklist Metadata Dictionaries
tracklist=list(dict_gen2.findall('dict'))
Next extract from tracklist
nested lists of child elements that have track metadata. Not all <dict>
tags will contain the metadata that you want, so you can use the Artist
text string of the <key>
tag to identify the desired dictionaries. See Figure 2 and Listing 6. The element text is accessed with the element.text
attribute.
Listing 6
Create Metadata List for All Tracks
itunes_music = [] for item in tracklist: x = list(item) for i in range( len(x) ): if x[i].text == "Artist": itunes_music.append( list(item) )
The itunes_music
list object is a list of all song tracks contained in the input XML file. At this point, you may want to inspect the resulting metadata in the itunes_music
list. Each <key>
tag is followed by the corresponding <string>
or <integer>
tag. The code in Listing 7 assumes that the tagtrue()
function was previously defined (for brevity, code not shown here), tests for <key>
tag text that matches the desired metadata strings (Figure 3), and then prints the key and value pair text strings to your screen.
Listing 7
Display Metadata
for i in range(len(itunes_music)): for j in range(len(itunes_music[i])): if tagtrue(itunes_music[i][j].text): print(itunes_music[i][j].text\ , itunes_music[i][j+1].text)
After confirming the metadata, you can then utilize it as you need. Because the list is organized as a two-dimensional array, I will represent it in table form as it would appear in a spreadsheet or database table (Figure 3). Note that the i
loop (or outer loop variable) represents rows, and the j
loop (or inner loop variable) represents columns.
« Previous 1 2 3 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.