Create README.md
This commit is contained in:
parent
310fe86cc5
commit
b62a2c7834
2 changed files with 46 additions and 2 deletions
44
README.md
44
README.md
|
@ -0,0 +1,44 @@
|
||||||
|
# Pseudo Chinese
|
||||||
|
Convert Japanese to pseudo-Chinese.
|
||||||
|
|
||||||
|
## Description
|
||||||
|
This tool will automatically generate fake Chinese from Japanese sentences.
|
||||||
|
|
||||||
|
## Demo
|
||||||
|
私は本日定時退社します -> 我本日定時退社也
|
||||||
|
私はお酒を飲みたい -> 我飲酒希望
|
||||||
|
|
||||||
|
## Requirement
|
||||||
|
- Python 3.5.1
|
||||||
|
- [COTOHA API](https://api.ce-cotoha.com/contents/index.html)
|
||||||
|
|
||||||
|
You need to register for a COTOHA API account before you can run this tool.
|
||||||
|
|
||||||
|
Once you have registered your COTOHA API account, you will set your Client ID and Client Secret to `env.json` .
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"client_id": "yourclinetid",
|
||||||
|
"client_secret": "yourclinetsecret"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
```
|
||||||
|
$ python -u pseudo-chinese.py
|
||||||
|
```
|
||||||
|
|
||||||
|
## Contribution
|
||||||
|
1. Fork it
|
||||||
|
2. Create your feature branch (git checkout -b my-new-feature)
|
||||||
|
3. Commit your changes (git commit -am 'Add some feature')
|
||||||
|
4. Push to the branch (git push origin my-new-feature)
|
||||||
|
5. Create new Pull Request
|
||||||
|
|
||||||
|
## Licence
|
||||||
|
|
||||||
|
[MIT](https://github.com/tcnksm/tool/blob/master/LICENCE)
|
||||||
|
|
||||||
|
## Author
|
||||||
|
|
||||||
|
[Shoichiro Kono](https://github.com/k2font)
|
|
@ -51,8 +51,8 @@ def parse(sentence, access_token):
|
||||||
# ひらがなを削除する関数
|
# ひらがなを削除する関数
|
||||||
# Function to delete hiragana.
|
# Function to delete hiragana.
|
||||||
# 删除平假名的功能
|
# 删除平假名的功能
|
||||||
def hira_to_blank(strj):
|
def hira_to_blank(str):
|
||||||
return "".join(["" if ("ぁ" <= ch <= "ん") else ch for ch in strj])
|
return "".join(["" if ("ぁ" <= ch <= "ん") else ch for ch in str])
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
envjson = open('env.json', 'r')
|
envjson = open('env.json', 'r')
|
||||||
|
|
Loading…
Reference in a new issue