1
0
This commit is contained in:
zhaoolee 2022-11-19 21:53:14 +08:00
parent 7d48970783
commit dbbb2ea161
3 changed files with 7 additions and 2 deletions

View File

@ -259,5 +259,4 @@ def main():
with open(os.path.join(os.getcwd(), "README.md"), "w") as load_f:
load_f.write(new_read_me)
main()

5
markdownLog.py Normal file
View File

@ -0,0 +1,5 @@
import pandas as pd
# 输出便于阅读的Markdown
log_website_info_data = pd.read_csv("./website_info.csv")
for website_info_index, website_info_row in log_website_info_data.iterrows():
print("## " + str(website_info_index+1) + ". " + website_info_row['Name'] + "\n\n**网址**: " + website_info_row['Url'] + "\n\n**简介**: " + website_info_row['Description'] + "\n\n" + "**标签**: " +website_info_row['Tag'] +"\n\n")

View File

@ -100,4 +100,5 @@ Url,Name,Description,Tag
"https://www.worldpressphoto.org/","世界新闻摄影奖","Connecting the world to the stories that matter.","摄影;"
"https://wasmweekly.news/subscribe/","Web Assembly周刊订阅服务","在网站提交自己的电子邮箱,进行内容订阅,服务会每周给你发送一封邮件,介绍本周值得关注的 WebAssembly 消息。","极客;"
"https://sci-hub.se/","Sci-Hub","一个非营利性的网站,提供了对学术论文的免费访问,通过Sci-Hub,你可以免费下载任何论文,而不需要付费或者访问学校的图书馆。","极客;"
"https://www.discoverdev.io/","DiscoverDev","网站每天列出5到10篇当天值得阅读的软件开发相关文章,支持邮件订阅","极客;"
"https://www.discoverdev.io/","DiscoverDev","网站每天列出5到10篇当天值得阅读的软件开发相关文章,支持邮件订阅","极客;"
"https://github.com/1c7/crash-course-computer-science-chinese","计算机科学速成课","在Github建立协作小组从Youtube汉化搬运优秀课程到B站的工程","极客;"
1 Url Name Description Tag
100 https://www.worldpressphoto.org/ 世界新闻摄影奖 Connecting the world to the stories that matter. 摄影;
101 https://wasmweekly.news/subscribe/ Web Assembly周刊订阅服务 在网站提交自己的电子邮箱,进行内容订阅,服务会每周给你发送一封邮件,介绍本周值得关注的 WebAssembly 消息。 极客;
102 https://sci-hub.se/ Sci-Hub 一个非营利性的网站,提供了对学术论文的免费访问,通过Sci-Hub,你可以免费下载任何论文,而不需要付费或者访问学校的图书馆。 极客;
103 https://www.discoverdev.io/ DiscoverDev 网站每天列出5到10篇当天值得阅读的软件开发相关文章,支持邮件订阅 极客;
104 https://github.com/1c7/crash-course-computer-science-chinese 计算机科学速成课 在Github建立协作小组从Youtube汉化搬运优秀课程到B站的工程 极客;