Export User List to CSV

What’s the easiest way to get a user list exported into a spreadsheet?
https://plex.tv/pms/friends/all?X-Plex-Token= is in a xml format that isn’t easily convertible,

Excel can open XML files and create a table.

As an alternative if its just accounts your looking for couldn’t you just query the db directly ? Example below …

"/usr/lib/plexmediaserver/Plex Media Server" --sqlite com.plexapp.plugins.library.db
.mode column
SELECT * from accounts;

Well dang… learned something new.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.