commit 7de08f2f923d3a2d686ff4bf62df5744b075a534
Author: dsorber <david.sorber@gmail.com>
Date:   Sat Jul 19 14:53:44 2014 -0400

    Wrote a converter util and started working on the importer util.

diff --git a/software/bookmark_library/utils/bookmark_converter.py b/software/bookmark_library/utils/bookmark_converter.py
new file mode 100644
index 0000000..6aad230
--- /dev/null
+++ b/software/bookmark_library/utils/bookmark_converter.py
@@ -0,0 +1,20 @@
+import re
+import sys
+
+def main():
+    """ The purpose of this script is to convert the output of a bookmarks
+    export from Google Chrome into something more useful for the bookmark
+    import script.
+    """
+    if len(sys.argv) < 2:
+        print('ERROR: not enough arguments provided')
+
+    file_contents = open(sys.argv[1]).read()
+    matches = re.finditer('<A HREF=\"(.+?)\".+ADD_DATE=\"(.+?)\"', 
+                          file_contents)
+
+    for match in matches:
+        print('{:s} {:s}'.format(match.group(1), match.group(2)))
+
+if __name__ == '__main__':
+    main()
diff --git a/software/bookmark_library/utils/bookmark_importer.py b/software/bookmark_library/utils/bookmark_importer.py
new file mode 100644
index 0000000..3c24c8b
--- /dev/null
+++ b/software/bookmark_library/utils/bookmark_importer.py
@@ -0,0 +1,12 @@
+import sys
+
+import sqlite3
+
+from lib.bookmark import Bookmark
+from lib.tag import Tag
+
+def main():
+    pass
+    
+if __name__ == '__main__':
+    main()
