New comment by paoloschi on void-packages repository https://github.com/void-linux/void-packages/issues/35804#issuecomment-1082858048 Comment: note that for parsing XML files, `jc` also depends on the `python3-xmltodict` package: ``` $ curl -s 'https://www.w3schools.com/xml/note.xml' | jc --xml jc: Error - Parser issue with xml: LibraryNotInstalled: The xmltodict library is not installed. If this is the correct parser, try setting the locale to C (LANG=C). For details use the -d or -dd option. Use "jc -h --xml" for help. ``` after installed `python3-xmltodict`: ``` $ curl -s 'https://www.w3schools.com/xml/note.xml' | jc --xml {"note":{"to":"Tove","from":"Jani","heading":"Reminder","body":"Don't forget me this weekend!"}} ```