10 lines
214 B
Python
10 lines
214 B
Python
# -*- coding: utf-8 -*-
|
|
from course import get_course
|
|
from course_list import insert_data
|
|
from markdown_generator import get_content
|
|
|
|
if __name__ == '__main__':
|
|
insert_data()
|
|
get_course()
|
|
get_content()
|