-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcreate_from_files.py
43 lines (40 loc) · 1.3 KB
/
create_from_files.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
import os
import json
import re
from datetime import datetime
blogs = []
for entry in os.scandir('./entries'):
with open(f"./entries/{entry.name}", 'r') as file:
content = file.read()
match = re.match('^(# .*)\n',content)
if match:
name = re.sub('^# ','',match[0])
name = re.sub('\[([^\]]*)\]\([^\)]*\)', '\\1', name)
name = re.sub('\n.*','',name)
content = re.sub(match[0],'',content)
else:
name = entry.name
print(f"Processing title: {name}")
image_re = re.compile(r'!\[([^\]]*)\]\(([^\)]*)\)', re.MULTILINE)
image_matches = image_re.findall(content)
if image_matches != []:
(alt_text,pre_location) = image_matches[0]
location = re.sub('\.\./','http://localhost:3000/', pre_location)
image = { "@type" : "Image",
"location" : location,
"alt": alt_text }
else:
image = None
info = entry.stat()
timestamp = info.st_mtime
datetimeobj = datetime.fromtimestamp(timestamp)
iso_date = datetimeobj.isoformat()
blog = { "@type" : "Post",
"title" : name,
"content" : content,
"date" : iso_date,
"feature" : image
}
blogs.append(blog)
with open('blogs.json', 'w') as f:
json.dump(blogs, f)