Skip to content

Instantly share code, notes, and snippets.

View lutfufn's full-sized avatar
:octocat:
just automating tedious tasks

lutfufn

:octocat:
just automating tedious tasks
View GitHub Profile
@dustinrouillard
dustinrouillard / snapchat-memory-downloader.py
Created October 29, 2020 01:57
Download Snapchat Memories from a JSON file (Comes from the Snapchat data dump)
import json
import os
import mimetypes
import requests
import datetime as dt
from multiprocessing.pool import ThreadPool as Pool
with open('memories.json', 'r') as memories_file:
memories_data=memories_file.read()