This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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() |