Files
songyi/main.py
2025-07-11 15:50:10 +08:00

10 lines
272 B
Python

# -*- coding: utf-8 -*-
from course_content_parser import get_course
from course_list_info_parser import insert_data
from markdown_transcribe_hugo import get_content as get_hugo_content
if __name__ == '__main__':
insert_data()
get_course()
get_hugo_content()