Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

目前正在开发对应的跨端小程序,见 [mini-voca-app](https://github.com/exam-data/mini-voca-app)。

[netem.json](https://github.com/exam-data/NETEMVocabulary/blob/master/netem.json) 里面存储了所有的数据。也已转换成 [sql 文件](https://github.com/exam-data/NETEMVocabulary/blob/master/netem.sql)。
[netem_full_list.json](https://github.com/exam-data/NETEMVocabulary/blob/master/netem_full_list.json) 里面存储了所有的数据。也已转换成 [sql 文件](https://github.com/exam-data/NETEMVocabulary/blob/master/netem_full_list.sql)。

本仓库数据基于 [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) 共享,程序基于 [MIT License](https://github.com/exam-data/NETEMVocabulary/blob/master/LICENSE-CODE).

Expand Down
5,552 changes: 0 additions & 5,552 deletions netem.sql

This file was deleted.

File renamed without changes.
5,552 changes: 5,552 additions & 0 deletions netem_full_list.sql

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scripts/custom_config/js-config-example.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ module.exports={
perNum: 18,
originalDoc: "",
updatedDoc: "",
tableName: "vocabulary"
tableName: "netem_full_list"
}
4 changes: 2 additions & 2 deletions scripts/custom_config/py_config_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@
]

# 处理的数据库表名
table_name = "vocabulary"
table_name = "netem_full_list"

# 单元格单行所能容纳最大字符数
max_length = -1

# 已处理后的 json 文件名
updated_json_name = "netem.json"
updated_json_name = "netem_full_list.json"

# json 文件标题
table_name_in_json = "5530考研词汇词频排序表"
2 changes: 1 addition & 1 deletion scripts/spelling-variations/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import mysql from "mysql2/promise";
import jsconfig from "../custom_config/js-config.js";

let records = null;
const table = "vocabulary"; // 数据库表名
const table = "netem_full_list"; // 数据库表名
const connection = await mysql.createConnection({
host: jsconfig.database.host,
user: jsconfig.database.user,
Expand Down
File renamed without changes.