TA的每日心情 | 衰 2020-8-15 10:40 |
---|
签到天数: 146 天 [LV.7]常住居民III
状元
- 积分
- 39704
|
本帖最后由 zzzz_sleep 于 2022-4-28 22:52 编辑 新建QQ群,可以讨论词典打包问题。点击链接加入群聊【MDict词典制作】:https://jq.qq.com/?_wv=1027&k=1WFrSwGs
mdict-utils mdict 打包解包工具。
- usage: mdict [-h] [--version] [-k] [-m] [-q <key>] [--txt-db] [--db-txt] [-x]
- [-d EXDIR] [--mdict-db] [--split-n <number>] [--split-az]
- [-a <resource>] [--title <title>] [--description <description>]
- [--encoding <encoding>]
- <mdx/mdd>
- MDict pack/unpack tool
- positional arguments:
- <mdx/mdd> Dictionary MDX/MDD file
- optional arguments:
- -h, --help show this help message and exit
- --version show version
- -k show mdx/mdd keys
- -m show mdx/mdd meta information
- -q <key> query KEY from mdx/mdd
- --txt-db convert mdx txt to sqlite3 db. <mdx/mdd> is ".txt"
- --db-txt convert sqlite3 db to mdx txt. <mdx/mdd> is ".db"
- Reader:
- -x extract mdx/mdd file.
- -d EXDIR extracted directory
- --mdict-db extract mdict to DB
- --split-n <number> split MDX TXT to N files
- --split-az split MDX TXT to files by a...z
- Writer:
- -a <resource> add resource file to mdx/mdd file
- --title <title> Dictionary title file
- --description <description>
- Dictionary descritpion file
- --encoding <encoding>
- mdx txt file encoding
复制代码 只有命令行,GUI 编写太痛苦了
使用:
本帖隐藏的内容Meta information::
mdict -m dict.mdx
All key list::
mdict -k dict.mdx
All key list::
mdict -k dict.mdx
Query key::
mdict -q <word> dict.mdx
Unpack
------
Unpack MDX::
mdict -x dict.mdx -d ./mdx
Unpack MDX/MDD and split into 5 files::
mdict -x dict.mdx -d ./mdx --split-n 5
Unpack MDX/MDD and split into a...z files::
mdict -x dict.mdx -d ./mdx --split-az
Unpack MDD::
mdict -x dict.mdd -d ./mdd
Unpack MDX/MDD to sqlite3 DB::
mdict -x dict.mdx --mdict-db
mdict -x dict.mdd --mdict-db
Pack
----
Pack MDX::
mdict --title title.html --description description.html -a dict.txt dict.mdx
Pack MDX with many TXT files::
mdict --title title.html --description description.html -a dict.part1.txt -a dict.part2.txt dict.mdx
or::
mdict --title title.html --description description.html -a txt_dir dict.mdx
Pack MDD::
mdict --title title.html --description description.html -a mdd_dir dict.mdd
Other
-----
Convert TXT to sqlite3 DB::
mdict --txt-db dict.txt
Convert sqlite3 DB to TXT::
mdict --db-txt dict.db
安装:
1. python3
2. pip install mdict-utils
|
评分
-
6
查看全部评分
-
|