Jelajahi Produk kami 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.
PemasanganPaketnya adalah tersedia di pypi.org dan dapat diinstal melalui pip dengan menjalankan perintah berikut:pip install groupdocs-rewriter-cloud
Paketnya adalah tersedia di pypi.org dan dapat diinstal melalui pip dengan menjalankan perintah berikut:
pip
pip install groupdocs-rewriter-cloud
Sangat mudah untuk memulai dengan GroupDocs.Rewriter Cloud. Cukup buat akun di GroupDocs Cloud dan dapatkan informasi aplikasi Anda, maka Anda siap menggunakan 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)