| #!/usr/bin/env python | |
| # encoding: utf-8 | |
| """ | |
| delicious_import.py | |
| Created by Hilary Mason on 2010-11-28. | |
| Copyright (c) 2010 Hilary Mason. All rights reserved. | |
| """ | |
| import sys | |
| import urllib | |
| import csv | |
| from xml.dom import minidom | |
| class delicious_import(object): | |
| def __init__(self, username, password=''): | |
| # API URL: https://user:passwd@api.del.icio.us/v1/posts/all | |
| url = "https://%s:%s@api.del.icio.us/v1/posts/all" % (username, password) | |
| h = urllib.urlopen(url) | |
| c |