Skip to content

Instantly share code, notes, and snippets.

@tomdavidson
tomdavidson / google_voice_texts.py
Created October 2, 2024 17:49 — forked from SandNerd/google_voice_texts.py
Google Voice Takeout Parser
# Python script to parse google voice takeout messages into csv
# command line arguments
from bs4 import BeautifulSoup
import pandas as pd
import os
import argparse
# construct the argument parser and parse the arguments
ap = argparse.ArgumentParser()