Blader door onze producten 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.
InstallationDas Paket ist verfügbar bei PyPI und kann über pip mit folgendem Befehl installiert werden:pip install groupdocs-rewriter-cloud
Das Paket ist verfügbar bei PyPI und kann über pip mit folgendem Befehl installiert werden:
pip
pip install groupdocs-rewriter-cloud
Unsere API ist völlig unabhängig von Ihrem Betriebssystem, Datenbanksystem oder Ihrer Entwicklungssprache. Sie können jede Sprache und Plattform verwenden, die HTTP unterstützt, um mit unserer API zu interagieren. Allerdings kann das manuelle Schreiben von Client-Code schwierig, fehleranfällig und zeitaufwändig sein. Daher stellen wir SDKs in vielen Entwicklungssprachen bereit und unterstützen diese, damit sich Ihre Cloud-Apps leichter in unsere API integrieren lassen.
Der Einstieg in GroupDocs.Rewriter Cloud ist ganz einfach: Erstellen Sie ein Konto bei GroupDocs Cloud, rufen Sie Ihre Anwendungsinformationen ab, und schon können Sie die SDKs verwenden.
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)