Skip to content

Instantly share code, notes, and snippets.

@Wartz
Last active August 29, 2015 14:14
Show Gist options
  • Save Wartz/70ffb3d6b9460a8624a1 to your computer and use it in GitHub Desktop.
Save Wartz/70ffb3d6b9460a8624a1 to your computer and use it in GitHub Desktop.
dwb-bmparse converts exported chrome bookmarks from HTML to a simple text list that can be used by the dwb browser
# This program converts an exported Chrome bookmark HTML file to a simple text
# list that can be used by the dwb browser.
from bs4 import BeautifulSoup
with open('bookmarks.html', 'r') as f:
bookmark_doc = f.read()
f.closed
soup = BeautifulSoup(bookmark_doc)
with open('bookmarks', 'w') as f:
for link in soup.find_all('a'):
f.write(link.get('href')+'\n')
f.closed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment