Skip to content

CLI tool to parse/organize/export Facebook message archives (big ones)

License

Notifications You must be signed in to change notification settings

arcward/fbparser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FBParser

CLI tool/library to parse, organize and export your Facebook message archives.

Facebook data can be downloaded via the link at the bottom of your settings page: https://www.facebook.com/settings

This library makes use of the messages.htm file located in the html/ directory inside your archive.

Why?

Facebook exports your messages as one gigantic HTML file. Messages are grouped into individual threads, though chats with a single person are broken up throughout the file, which reads oldest-to-newest. That's annoying. This fixes that.

Installation

To install via pip, just run:

$ pip install fbparser

To install locally, from the same directory as setup.py, run:

$ python setup.py install

Example use

To export your threads to CSV, from the directory containing messages.htm, run this command:

$ fbparser --csv messages.htm

This will create a directory named fbparser_out/ in your current directory containing your CSV exports. Exports can also be made in JSON or plaintext formats (with --json and `--text), or printed to the console with --stdout

To specify your Facebook name (to remove from filenames), use the --name flag. If you specify your Facebook UID with --uid, that UID will be replaced with the name you specified. For example:

$ fbparser --csv --name="John Smith" --uid="[email protected]" messages.htm

Everywhere [email protected] is found, it will be replaced with John Smith, which will also be removed from export filenames for clarity.

Replacing names/UIDs

Facebook's archives are littered with UIDs and people that have changed their display names multiple times. To substitute certain names, feed in a file with --replace=file_name.txt

Example:

J Smith=John Smith
[email protected]=John Smith
John H Smith=John Smith

Each line should be formatted like Name to replace=New name

FBParser merges threads containing the same users, so if you see numerous threads for the same person with different display names (or UIDs), this will correct those names prior to merging the threads.

Example:

$ fbparser --csv --uid="[email protected]" --name="John Smith" --replace="replace.txt" messages.htm

Parsing errors

If you encounter errors trying to parse an archive, use the --sanitize flag. This creates a backup as messages.htm.bak and writes the new version to the original filename before attempting to parse the file.

About

CLI tool to parse/organize/export Facebook message archives (big ones)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages