-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix cumulative bugs and add features (#4)
Co-authored-by: unt <unt_tianjin@163.com>
- Loading branch information
1 parent
15a6fff
commit c724f09
Showing
32 changed files
with
1,122 additions
and
523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
QieyunEncoder.轉換 | ||
================== | ||
|
||
.. automodule:: QieyunEncoder.轉換 | ||
:imported-members: | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
QieyunEncoder.韻鏡位置 | ||
====================== | ||
|
||
.. automodule:: QieyunEncoder.韻鏡位置 | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from . import 常量 | ||
from .工具 import * | ||
from .轉換 import * | ||
from .音韻地位 import 音韻地位 | ||
from .工具 import 反切, 正則化韻 | ||
from .韻鏡位置 import 韻鏡位置 | ||
|
||
__version__ = '0.4.3' | ||
__version__ = '0.5.0' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# 實際可能超出此範圍,即「無音有字」 | ||
母對應的標準等 = { | ||
'幫': '一二三四', | ||
'滂': '一二三四', | ||
'並': '一二三四', | ||
'明': '一二三四', | ||
'端': '一四', | ||
'透': '一四', | ||
'定': '一四', | ||
'泥': '一四', | ||
'來': '一二三四', | ||
'知': '二三', | ||
'徹': '二三', | ||
'澄': '二三', | ||
'孃': '二三', | ||
'精': '一三四', | ||
'清': '一三四', | ||
'從': '一三四', | ||
'心': '一三四', | ||
'邪': '三', | ||
'莊': '二三', | ||
'初': '二三', | ||
'崇': '二三', | ||
'生': '二三', | ||
'俟': '三', | ||
'章': '三', | ||
'昌': '三', | ||
'常': '三', | ||
'書': '三', | ||
'船': '三', | ||
'日': '三', | ||
'見': '一二三四', | ||
'溪': '一二三四', | ||
'羣': '三', | ||
'疑': '一二三四', | ||
'影': '一二三四', | ||
'曉': '一二三四', | ||
'匣': '一二四', | ||
'云': '三', | ||
'以': '三', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
''' | ||
與切韻音系相關的工具。 | ||
''' | ||
|
||
from .反切 import 反切 | ||
from .正則化韻 import 正則化韻 | ||
from .音韻地位到韻鏡位置 import 音韻地位到韻鏡位置 | ||
from .音韻屬性到韻鏡位置們 import 音韻屬性到韻鏡位置們 | ||
from .韻鏡位置到音韻地位 import 韻鏡位置到音韻地位 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.