This file contains hidden or 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
| """ | |
| A script to automatically export bookmarks from Firefox's SQLite database. | |
| There does not seem to be a programmatic way to get Firefox to export its bookmarks in | |
| the conventional HTML format. However, you can access the bookmark information directly | |
| in Firefox's internal database, which is what this script does. | |
| Always be careful when working with the internal database! If you delete data, you will | |
| likely not be able to recover it. |
This file contains hidden or 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
| #!/usr/bin/env python | |
| # liuw | |
| # Nasty hack to raise exception for other threads | |
| import ctypes # Calm down, this has become standard library since 2.5 | |
| import threading | |
| import time | |
| NULL = 0 |