Skip to content

Instantly share code, notes, and snippets.

View jrovegno's full-sized avatar

jrovegno jrovegno

View GitHub Profile
@jrovegno
jrovegno / delicious2csv.py
Last active January 7, 2016 15:48
Parses a delicious.com bookmark file and transforms it into a list of dictionaries.
#!/usr/bin/env python
#coding:utf-8
# Author: --<>
# Purpose:
# Created: 12/29/10
from HTMLParser import HTMLParser # Python 2
import pandas as pd
# from html.parser import HTMLParser # Python 3