Metadata-Version: 2.1
Name: WordyAPI
Version: 1.0.1
Summary: Wordy is a unique NLP system that provides great imitation writing examples for Chinese texts. Unlike other text generators, this system will not change the original discourse structure of the text. 
Home-page: https://github.com/Droidtown/WordyAPI
Author: Droidtown Linguistic Tech. Co. Ltd.
Author-email: info@droidtown.co
License: MIT License
Project-URL: Documentation, https://api.droidtown.co/document/#Wordy
Project-URL: Source, https://github.com/Droidtown/WordyAPI
Keywords: NLP,NLU,AI,artificial intelligence,computational linguistics,language,linguistics,natural language,natural language processing,natural language understanding,text analytics,imitation writing
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Customer Service
Classifier: Intended Audience :: Information Technology
Classifier: Natural Language :: Chinese (Traditional)
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Utilities
Requires-Python: >=3.6.1
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.25.1)

# Wordy 中文仿作生成系統
## [力求保留原文篇章架構，最像人的仿作生成系統]

### [Wordy Website](https://api.droidtown.co/)
### [Document](https://api.droidtown.co/document/#Wordy)

# WordyAPI

## 安裝方法
```sh
pip3 install -U WordyAPI
```

## 使用方法

### Wordy
```
from WordyAPI import Wordy
inputSTR = "" 		#這邊填入您想仿寫的內容，需要是 string 格式。
username = "" 		#這裡填入您在 https://api.droidtown.co 使用的帳號 email。不得為空字串
wordy_key = "" 		#這裡填入您在 https://api.droidtown.co 登入後取得的 api Key。不得為空字串
max_num = 72 		#這邊輸入您想要的仿寫的篇數，預設為72篇
user_defined = {} 	#這邊輸入使用者自定替換詞典，必須是 dictionary 格式。非必要參數。
fixed_term = [] 	#這邊輸入禁止替換的詞組列表，必須是 list 格式。非必要參數。

wd = Wordy(username, wordy_key)
wd.rewrite(inputSTR, max_num=16, user_defined, fixed_term) 

```


### 回傳結果
```
您的 16 篇文章改寫正在準備中，等改寫完成後，我們會再寄通知到 {您的信箱}
```

**環境需求**

Python 3.6+ 




