Last active
August 29, 2015 14:14
-
-
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 file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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