Update credits for firefox_bookmarks

This commit is contained in:
Alexis Métaireau 2017-07-04 21:33:16 +02:00
parent cf509a2857
commit 4a1f59ccd5

View file

@ -1,17 +1,5 @@
from pelican import signals from pelican import signals
"""
Author : Jay Rambhia
email : jayrambhia777@gmail.com
Git : https://github.com/jayrambhia
gist : https://gist.github.com/jayrambhia
=============================================
Name : bookmarkFirefox
Repo : Bookmark-Manager
Git : https://github.com/jayrambhia/Bookmark-Manager
version : 0.2
"""
import os import os
import json import json
import lz4 import lz4
@ -20,7 +8,11 @@ import lz4
def fetch_bookmarks(path): def fetch_bookmarks(path):
''' '''
Decodes browser bookmark backup files using json Decodes browser bookmark backup files using json
Returns a dictionary with bookmark url as key and (title, tag, add_date) tuple as value Returns a dictionary with bookmark url as key and (title, tag, add_date)
tuple as value.
The logic have been extracted and adapted from
https://github.com/jayrambhia/Bookmark-Manager
''' '''
files = os.listdir(path) files = os.listdir(path)
files.sort() files.sort()