#xml #post #xml-parser #comments #backup #backup-file #parse

bin+lib parse-blogger-backup-xml

Parse a blogger backup.xml file into posts with comments

2 releases

0.1.3 Feb 18, 2022
0.1.2 Feb 18, 2022

#9 in #backup-file

26 downloads per month

MIT license

23KB
542 lines

Parse Blogger Backup

I had the need to parse a series of backup xml files from Blogger into Rust to manipulate further and I wrote some rough code to do it.

So that the code doesn't get lost, I'm open sourcing it here.

Basically, it uses quick-xml to walk through the xml and turns that event stream into a list of entries of different types.

It then connects comments to their post parents and returns the data.

It makes no effort to parse the html stored, but just adds it as a string to the Post or Comment instance.

Usage

Provide the get_posts function with a path string showing it where to look for your backup file.

It will return post objects that you can then manipulate.

Dependencies

~2.5MB
~40K SLoC