製品を閲覧する Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
インストールパッケージは、availablepypi.org にあり、経由でインストールできます。pip次のコマンドを実行します。pip install groupdocs-rewriter-cloud
パッケージは、availablepypi.org にあり、経由でインストールできます。pip次のコマンドを実行します。
pip
pip install groupdocs-rewriter-cloud
GroupDocs.Rewriter Cloud は簡単に始めることができます。簡単に、次の場所にアカウントを作成します。GroupDocs Cloudアプリケーション情報を取得すると、を使用する準備が整います。SDKs.
import time import groupdocs_rewriter_cloud from groupdocs_rewriter_cloud.api.paraphrase_api import ParaphraseApi from groupdocs_rewriter_cloud.rest import ApiException from groupdocs_rewriter_cloud.models import HttpStatusCode, ParaphraseTextRequest api = ParaphraseApi() file_api = FileApi() api.api_client.configuration.client_id = "CLIENT_ID" api.api_client.configuration.client_secret = "CLIENT_SECRET" language = "en" src_text = "YOUR_TEXT" request = ParaphraseTextRequest(language=language, text=src_text) status = api.paraphrase_text_post(request) if status.status == groupdocs_rewriter_cloud.models.HttpStatusCode.ACCEPTED: while True: text_response = api.paraphrase_text_request_id_get(status.id) if text_response.status == groupdocs_rewriter_cloud.models.HttpStatusCode.OK: print(text_response.paraphrase_result) break time.sleep(2)