-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtag_generator.py
executable file
·61 lines (51 loc) · 1.61 KB
/
tag_generator.py
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
#!/usr/bin/env python
'''
tag_generator.py
Copyright 2017 Long Qian
Contact: [email protected]
This script creates tags for your Jekyll blog hosted by Github page.
No plugins required.
'''
import glob
import os
import os.path
def tag_generator(post_dir, tag_dir):
filenames = glob.glob(post_dir + '*md')
total_tags = []
for filename in filenames:
print(f'filename: {filename}')
f = open(filename, 'r')
crawl = False
for line in f:
if crawl:
current_tags = line.strip().split()
if current_tags[0] == 'tags:':
total_tags.extend(current_tags[1:])
crawl = False
break
if line.strip() == '---':
if not crawl:
crawl = True
else:
crawl = False
break
f.close()
total_tags = set(total_tags)
old_tags = glob.glob(tag_dir + '*.md')
for tag in old_tags:
os.remove(tag)
if not os.path.exists(tag_dir):
os.makedirs(tag_dir)
for tag in total_tags:
tag_filename = tag_dir + tag.lower() + '.md'
if os.path.isfile(tag_filename):
print(f"{tag} 대소문자 중복")
exit(1)
f = open(tag_filename, 'a')
write_str = f'---\nlayout: tagpage\ntitle: \"Tag: {tag}\"\ntag: {tag}\nrobots: noindex\n---\n'
f.write(write_str)
f.close()
return len(total_tags)
if __name__ == '__main__':
total_tag_count = tag_generator('_posts/', 'tag/')
print(f'Tags generated, count {total_tag_count}')