My-Website/app/post.py
2024-06-26 14:10:02 -05:00

33 lines
848 B
Python

import markdown
import datetime
class Post:
category : str
author : str
date : datetime.datetime
body : str
file : str
id : int
title : str
url : str
def __init__(self, file_path):
self.file = file_path
with open(file_path, 'r', encoding='utf-8') as file:
lines = file.readlines()
self.category = lines[1].split(":")[1].strip()
self.author = lines[2].split(":")[1].strip()
self.title = lines[6][2:-1]
self.url = '/post/' + self.title.replace(' ', '-')
date = lines[3].split(":")[1].strip()
self.date = datetime.datetime.strptime(date, "%d-%m-%Y")
self.id = int(lines[4].split(":")[1].strip())
self.body = markdown.markdown(f'# [{self.title}]({self.url})\n' + ''.join(lines[7:]))