Skip to content

Instantly share code, notes, and snippets.

@moritzsalla
Created October 27, 2020 10:36
Show Gist options
  • Save moritzsalla/6a314d19b2478f2ce5f43eb899d5dd19 to your computer and use it in GitHub Desktop.
Save moritzsalla/6a314d19b2478f2ce5f43eb899d5dd19 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# JSON Extractor\n",
"\n",
"This script extracts data from Facebook's \"takeaway\" files. These are JSON files containing all your data, from search history to friends. They are freely avaiable for download on every Facebook account."
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [],
"source": [
"import json\n",
"import numpy as np\n",
"import pandas as pd"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Define helper functions"
]
},
{
"cell_type": "code",
"execution_count": 44,
"metadata": {},
"outputs": [],
"source": [
"def prettyPrint(data):\n",
" print(json.dumps(data, indent=2, sort_keys=True))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Fetch local file"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"{\n"
]
}
],
"source": [
"file = \"your_search_history.json\"\n",
"\n",
"fline = open(file).readline().strip()\n",
"print (fline)"
]
},
{
"cell_type": "code",
"execution_count": 98,
"metadata": {},
"outputs": [],
"source": [
"with open(file) as json_file:\n",
" parsed = json.load(json_file)\n",
" prettyPrint(parsed)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Loop through data"
]
},
{
"cell_type": "code",
"execution_count": 100,
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"type(data)\n",
"\n",
"search_terms = []\n",
"\n",
"for key in data[\"searches\"]:\n",
" elem = key[\"attachments\"][0][\"data\"][0][\"text\"]\n",
" search_terms.append(elem)\n",
" \n",
"print(search_terms)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.6"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment