python导出chrome书签到markdown文件,主要就是解析chrome的bookmarks文件,然后拼接成markdown格式的字符串,最后输出到文件即可。以下直接上代码,也可以在 py-chrome-bookmarks-markdown 中直接参见源码。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
from json import loads import argparse from platform import system from re import match from os import environ from os.path import expanduser # 过滤name filter_name_list = { 'My work' , '书签栏' , 'websites' } html_escape_table = { "&" : "&" , '"' : """, "'": "'", ">": ">", "<": "<", } output_file_template = """ <h3>书签目录< / h3> {catelog} {bookmark_bar} {other} """ # 如需本地调试可注释掉这一段 START parser = argparse.ArgumentParser(formatter_class = argparse.RawDescriptionHelpFormatter, description = "python导出chrome书签到markdown文件." ) parser.add_argument( "input_file" , type = argparse.FileType( 'r' , encoding = 'utf-8' ), nargs = "?" , help = "读取书签的位置,可以指定文件位置(相对路径,绝对路径都可以),非必填,默认为Chrome的默认书签位置" ) parser.add_argument( "output_file" , type = argparse.FileType( 'w' , encoding = 'utf-8' ), help = "读取书签的位置,可以指定文件位置(相对路径,绝对路径都可以),必填" ) args = parser.parse_args() if args.input_file: input_file = args.input_file else : if system() = = "Darwin" : input_filename = expanduser( "~/Library/Application Support/Google/Chrome/Default/Bookmarks" ) elif system() = = "Linux" : input_filename = expanduser( "~/.config/google-chrome/Default/Bookmarks" ) elif system() = = "Windows" : input_filename = environ[ "LOCALAPPDATA" ] + r "\Google\Chrome\User Data\Default\Bookmarks" else : print ( 'Your system ("{}") is not recognized. Please specify the input file manually.' . format (system())) exit( 1 ) try : input_file = open (input_filename, 'r' , encoding = 'utf-8' ) except IOError as e: if e.errno = = 2 : print ( "The bookmarks file could not be found in its default location ({}). " . format (e.filename) + "Please specify the input file manually." ) exit( 1 ) output_file = args.output_file # 如需本地调试可注释掉这一段 END # 本地调试可以指定文件名测试 START # input_filename = 'C:/Users/Administrator/AppData/Local/Google/Chrome/User Data/Default/Bookmarks' # input_file = open(input_filename, 'r', encoding='utf-8') # output_file_name = 'test2.md' # output_file = open(output_file_name, 'w', encoding='utf-8') # 本地调试可以指定文件名测试 END # 目录 catelog = list () def html_escape(text): return ''.join(html_escape_table.get(c, c) for c in text) def html_for_node(node): # 判断url和children即判断是否包含在文件夹中 if 'url' in node: return html_for_url_node(node) elif 'children' in node: return html_for_parent_node(node) else : return '' def html_for_url_node(node): if not match( "javascript:" , node[ 'url' ]): return '- [{}]({})\n' . format (node[ 'name' ], node[ 'url' ]) else : return '' def html_for_parent_node(node): return '{0}\n\n{1}\n' . format (filter_catelog_name(node), ' '.join([filter_name(n) for n in node[' children']])) # 过滤文件夹 def filter_name(n): if n[ 'name' ] in filter_name_list: return '' else : return html_for_node(n) # 过滤目录名 def filter_catelog_name(n): if n[ 'name' ] in filter_name_list: return '' else : catelog.append( '- [{0}](#{0})\n' . format (n[ 'name' ])) return '<h4 id={0}>{0}</h4>' . format (n[ 'name' ]) contents = loads(input_file.read()) input_file.close() bookmark_bar = html_for_node(contents[ 'roots' ][ 'bookmark_bar' ]) other = html_for_node(contents[ 'roots' ][ 'other' ]) catelog_str = ''.join(a for a in catelog) output_file.write(output_file_template. format (catelog = catelog_str, bookmark_bar = bookmark_bar, other = other)) |
导出示例: https://github.com/kent666a/kent-resources/blob/master/bookmarks.md
总结
以上所述是小编给大家介绍的python导出chrome书签到markdown文件的实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:https://www.jianshu.com/p/b4c1ad6d9399?utm_source=tuicool&utm_medium=referral