# Python SDK for GroupDocs.Rewriter Cloud
     [](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-python/blob/master/LICENSE)
[Product Page](https://products.groupdocs.cloud/rewriter/python/) | [Documentation](https://docs.groupdocs.cloud/rewriter/) | [Demos](https://products.groupdocs.app/rewriter/family) | [Swagger UI](https://reference.groupdocs.cloud/rewriter/) | [Examples](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-python) | [Blog](https://blog.groupdocs.cloud/category/rewriter/) | [Search](https://search.groupdocs.cloud/) | [Free Support](https://forum.groupdocs.cloud/c/rewriter) | [Free Trial](https://purchase.groupdocs.cloud/trial)
GroupDocs.Rewriter Cloud SDK for Python is a simple Python SDK that enables your cloud Apps to perform paraphrasing, simplification, summarization, comparison, formalization, synonymization and detection of paraphrased, summarized and AI generated content in documents of different formats, images and scans, audio and video files as well as plain text by adding just a few lines of code.
In other words, it's a SDK for document and plain text rewriting, summarization, etc. in our Cloud, that supports paraphrasing of .doc, .docx, .docm, .pdf, .rtf, .odt, .md, .html, .txt nd many other file types. Just pass a specific file or text to the GroupDocs.Rewriter Cloud API, and it will process and save result in our Cloud or will return resulting text.
It is easy to get started with GroupDocs.Rewriter Cloud and there is nothing to install. Create an account at GroupDocs Cloud and get your application information, then you are ready to use SDKs.
## Cloud Features
- Paraphrasing / summarization / simplification / paraphrase detection of documents
- Paraphrasing / summarization / simplification / paraphrase detection of images and scans
- Paraphrasing / summarization / simplification / paraphrase detection / comparison of plain text
- Summarization of audio and video files
- eBooks summarization
- Words and idioms synonyms finder
- Texts comparison to detect if one text is paraphrase or translation of another
- AI generated texts detection
- Generation of cover letters and text exercises
- Return resulting text in response
- Save processed file in cloud
- No need to install any 3rd party software
## Supported Document Formats
You can specify format of document to process putting in the request’s body:
- **Microsoft Word®:** DOC, DOCX, DOCM
- **Microsoft Word®:** PPT, PPTX, PPTM
- **Adobe®:** PDF
- **Markdown:** MD
- **HTML:** HTML
- **Audio / Video:** MP3, WAV, FLAC, M4A, AAC, WMA, FLV, MKV, WEBM, AVI, MOV, WMV, RM, MPG
- **Images:** BMP, JPG, PNG, SVG, GIF
- **eBooks:** EPUB, MOBI, AZW3
- **Other:** RTF, ODT, TXT
-
Additionally, user could obtain processed file in any other format available for conversion. Just specify output format of paraphrased document by putting file extension in the request’s body:
- **doc, docx** — docx, rtf, html, odt, txt, md, pdf, tiff, svg, xps
- **pdf** — docx, pptx, html, svg, xps
- **html** — md, pdf, docx, tiff, xps
Please visit [Supported Formats](https://docs.groupdocs.cloud/rewriter/supported-formats/) for details.
## Supported Languages
- **ar** — to process Arabic text or document
- **de** — to process German text or document
- **en** — to process English text or document
- **es** — to process Spanish text or document
- **fr** — to process French text or document
- **hi** — to process Hindi text or document
- **id** — to process Indonesian text or document
- **it** — to process Italian text or document
- **pt** — to process Portuguese text or document
- **ru** — to process Russian text or document
- **sk** — to process Slovak text or document
- **th** — to process Thai text or document
- **tr** — to process Turkish text or document
- **uk** — to process Ukrainian text or document
- **zh** — to process Chinese text or document
## How to use the SDK?
Our API is completely independent of your operating system, database system, or development language. You can use any language and platform that supports HTTP to interact with our API. However, manually writing client code can be difficult, error-prone, and time-consuming. Therefore, we provide and support [SDKs](https://github.com/groupdocs-rewriter-cloud) in many development languages to make it easier for your Cloud Apps to integrate with us.
## Quickstart
#### 1. Get Started
It is easy to get started with GroupDocs.Rewriter Cloud. Simply, create an account at [GroupDocs Cloud](https://dashboard.groupdocs.cloud/#/apps) and get your application information, then you are ready to use the [SDKs](https://github.com/groupdocs-rewriter-cloud).
#### 2. Run Demo
* Checkout the SDK
* Open demo notebook
* Set Your ClientId & ClientSecret
* Run
## Rewrite plain text
```python
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)
```
## GroupDocs.Rewriter Cloud SDKs in Popular Languages
| .NET | Python | Java | Android | Go |
|---|---|---|---|---|
| [GitHub](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-dotnet) | [GitHub](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-python) | [GitHub](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-java) | [GitHub](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-android) | [GitHub](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud) |
| [NuGet](https://www.nuget.org/packages/GroupDocs.Rewriter-Cloud/) | [PyPi](https://pypi.org/project/groupdocs-rewriter-cloud/) | [Maven](https://repository.groupdocs.cloud/webapp/#/artifacts/browse/tree/General/repo/com/groupdocs/groupdocs-rewriter-cloud) | [Maven](https://repository.groupdocs.cloud/webapp/#/artifacts/browse/tree/General/repo/com/groupdocs/groupdocs-rewriter-cloud-android) | |
---
[Product Page](https://products.groupdocs.cloud/rewriter/python/) | [Docs](https://docs.groupdocs.cloud/rewriter/) | [Demos](https://products.groupdocs.app/rewriter/family) | [Swagger UI](https://apireference.groupdocs.cloud/rewriter/) | [Examples](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-python) | [Blog](https://blog.groupdocs.cloud/category/rewriter/) | [Search](https://search.groupdocs.cloud/) | [Free Support](https://forum.groupdocs.cloud/c/rewriter) | [Free Trial](https://purchase.groupdocs.cloud/trial)
Raw data
{
"_id": null,
"home_page": "https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-python",
"name": "groupdocs-rewriter-cloud",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "GroupDocs.Rewriter Cloud API Reference, Aspose, GroupDocs, RewriterRewriter Cloud, GroupDocs.Rewriter API",
"author": "GroupDocs",
"author_email": "anton.perhunov@aspose.com",
"download_url": null,
"platform": null,
"description": "# Python SDK for GroupDocs.Rewriter Cloud\r\n\r\n     [](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-python/blob/master/LICENSE)\r\n\r\n[Product Page](https://products.groupdocs.cloud/rewriter/python/) | [Documentation](https://docs.groupdocs.cloud/rewriter/) | [Demos](https://products.groupdocs.app/rewriter/family) | [Swagger UI](https://reference.groupdocs.cloud/rewriter/) | [Examples](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-python) | [Blog](https://blog.groupdocs.cloud/category/rewriter/) | [Search](https://search.groupdocs.cloud/) | [Free Support](https://forum.groupdocs.cloud/c/rewriter) | [Free Trial](https://purchase.groupdocs.cloud/trial)\r\n\r\nGroupDocs.Rewriter Cloud SDK for Python is a simple Python SDK that enables your cloud Apps to perform paraphrasing, simplification, summarization, comparison, formalization, synonymization and detection of paraphrased, summarized and AI generated content in documents of different formats, images and scans, audio and video files as well as plain text by adding just a few lines of code.\r\n\r\nIn other words, it's a SDK for document and plain text rewriting, summarization, etc. in our Cloud, that supports paraphrasing of .doc, .docx, .docm, .pdf, .rtf, .odt, .md, .html, .txt nd many other file types. Just pass a specific file or text to the GroupDocs.Rewriter Cloud API, and it will process and save result in our Cloud or will return resulting text.\r\n\r\nIt is easy to get started with GroupDocs.Rewriter Cloud and there is nothing to install. Create an account at GroupDocs Cloud and get your application information, then you are ready to use SDKs.\r\n\r\n## Cloud Features\r\n\r\n- Paraphrasing / summarization / simplification / paraphrase detection of documents\r\n- Paraphrasing / summarization / simplification / paraphrase detection of images and scans\r\n- Paraphrasing / summarization / simplification / paraphrase detection / comparison of plain text\r\n- Summarization of audio and video files\r\n- eBooks summarization\r\n- Words and idioms synonyms finder\r\n- Texts comparison to detect if one text is paraphrase or translation of another\r\n- AI generated texts detection\r\n- Generation of cover letters and text exercises\r\n- Return resulting text in response\r\n- Save processed file in cloud\r\n- No need to install any 3rd party software\r\n\r\n## Supported Document Formats\r\n\r\nYou can specify format of document to process putting in the request\u2019s body:\r\n\r\n- **Microsoft Word\u00ae:** DOC, DOCX, DOCM\r\n- **Microsoft Word\u00ae:** PPT, PPTX, PPTM\r\n- **Adobe\u00ae:** PDF\r\n- **Markdown:** MD\r\n- **HTML:** HTML\r\n- **Audio / Video:** MP3, WAV, FLAC, M4A, AAC, WMA, FLV, MKV, WEBM, AVI, MOV, WMV, RM, MPG\r\n- **Images:** BMP, JPG, PNG, SVG, GIF\r\n- **eBooks:** EPUB, MOBI, AZW3\r\n- **Other:** RTF, ODT, TXT\r\n- \r\nAdditionally, user could obtain processed file in any other format available for conversion. Just specify output format of paraphrased document by putting file extension in the request\u2019s body:\r\n\r\n- **doc, docx** \u2014 docx, rtf, html, odt, txt, md, pdf, tiff, svg, xps\r\n- **pdf** \u2014 docx, pptx, html, svg, xps\r\n- **html** \u2014 md, pdf, docx, tiff, xps\r\n\r\nPlease visit [Supported Formats](https://docs.groupdocs.cloud/rewriter/supported-formats/) for details.\r\n\r\n## Supported Languages\r\n\r\n- **ar** \u2014 to process Arabic text or document\r\n- **de** \u2014 to process German text or document\r\n- **en** \u2014 to process English text or document\r\n- **es** \u2014 to process Spanish text or document\r\n- **fr** \u2014 to process French text or document\r\n- **hi** \u2014 to process Hindi text or document\r\n- **id** \u2014 to process Indonesian text or document\r\n- **it** \u2014 to process Italian text or document\r\n- **pt** \u2014 to process Portuguese text or document\r\n- **ru** \u2014 to process Russian text or document\r\n- **sk** \u2014 to process Slovak text or document\r\n- **th** \u2014 to process Thai text or document\r\n- **tr** \u2014 to process Turkish text or document\r\n- **uk** \u2014 to process Ukrainian text or document\r\n- **zh** \u2014 to process Chinese text or document\r\n\r\n## How to use the SDK?\r\n\r\nOur API is completely independent of your operating system, database system, or development language. You can use any language and platform that supports HTTP to interact with our API. However, manually writing client code can be difficult, error-prone, and time-consuming. Therefore, we provide and support [SDKs](https://github.com/groupdocs-rewriter-cloud) in many development languages to make it easier for your Cloud Apps to integrate with us.\r\n\r\n\r\n## Quickstart\r\n\r\n#### 1. Get Started\r\n\r\nIt is easy to get started with GroupDocs.Rewriter Cloud. Simply, create an account at [GroupDocs Cloud](https://dashboard.groupdocs.cloud/#/apps) and get your application information, then you are ready to use the [SDKs](https://github.com/groupdocs-rewriter-cloud).\r\n\r\n#### 2. Run Demo\r\n * Checkout the SDK\r\n * Open demo notebook\r\n * Set Your ClientId & ClientSecret\r\n * Run\r\n\r\n\r\n## Rewrite plain text\r\n\r\n```python\r\nimport time\r\nimport groupdocs_rewriter_cloud\r\nfrom groupdocs_rewriter_cloud.api.paraphrase_api import ParaphraseApi \r\nfrom groupdocs_rewriter_cloud.rest import ApiException\r\nfrom groupdocs_rewriter_cloud.models import HttpStatusCode, ParaphraseTextRequest\r\n\r\napi = ParaphraseApi()\r\nfile_api = FileApi()\r\napi.api_client.configuration.client_id = \"CLIENT_ID\"\r\napi.api_client.configuration.client_secret = \"CLIENT_SECRET\"\r\nlanguage = \"en\"\r\nsrc_text = \"YOUR_TEXT\"\r\nrequest = ParaphraseTextRequest(language=language, text=src_text)\r\nstatus = api.paraphrase_text_post(request)\r\nif status.status == groupdocs_rewriter_cloud.models.HttpStatusCode.ACCEPTED:\r\n while True:\r\n text_response = api.paraphrase_text_request_id_get(status.id)\r\n if text_response.status == groupdocs_rewriter_cloud.models.HttpStatusCode.OK:\r\n print(text_response.paraphrase_result)\r\n break\r\n time.sleep(2)\r\n```\r\n\r\n## GroupDocs.Rewriter Cloud SDKs in Popular Languages\r\n\r\n| .NET | Python | Java | Android | Go |\r\n|---|---|---|---|---|\r\n| [GitHub](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-dotnet) | [GitHub](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-python) | [GitHub](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-java) | [GitHub](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-android) | [GitHub](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud) |\r\n| [NuGet](https://www.nuget.org/packages/GroupDocs.Rewriter-Cloud/) | [PyPi](https://pypi.org/project/groupdocs-rewriter-cloud/) | [Maven](https://repository.groupdocs.cloud/webapp/#/artifacts/browse/tree/General/repo/com/groupdocs/groupdocs-rewriter-cloud) | [Maven](https://repository.groupdocs.cloud/webapp/#/artifacts/browse/tree/General/repo/com/groupdocs/groupdocs-rewriter-cloud-android) | |\r\n\r\n---\r\n\r\n[Product Page](https://products.groupdocs.cloud/rewriter/python/) | [Docs](https://docs.groupdocs.cloud/rewriter/) | [Demos](https://products.groupdocs.app/rewriter/family) | [Swagger UI](https://apireference.groupdocs.cloud/rewriter/) | [Examples](https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-python) | [Blog](https://blog.groupdocs.cloud/category/rewriter/) | [Search](https://search.groupdocs.cloud/) | [Free Support](https://forum.groupdocs.cloud/c/rewriter) | [Free Trial](https://purchase.groupdocs.cloud/trial)\r\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "GroupDocs.Rewriter API",
"version": "25.7.0",
"project_urls": {
"Homepage": "https://github.com/groupdocs-rewriter-cloud/groupdocs-rewriter-cloud-python"
},
"split_keywords": [
"groupdocs.rewriter cloud api reference",
" aspose",
" groupdocs",
" rewriterrewriter cloud",
" groupdocs.rewriter api"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "a97e382fd1b95e14bb5172163aa2ab7a1ad77f049f96c147a68d6d392c94922e",
"md5": "cd71c834e8ae9c71bfffe82f24653d09",
"sha256": "ca9a19d7ac21ad112ef513479afbb8b0f0251dcdbc2932abe639e384c507a941"
},
"downloads": -1,
"filename": "groupdocs_rewriter_cloud-25.7.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "cd71c834e8ae9c71bfffe82f24653d09",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 152088,
"upload_time": "2025-07-17T08:54:51",
"upload_time_iso_8601": "2025-07-17T08:54:51.563767Z",
"url": "https://files.pythonhosted.org/packages/a9/7e/382fd1b95e14bb5172163aa2ab7a1ad77f049f96c147a68d6d392c94922e/groupdocs_rewriter_cloud-25.7.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-17 08:54:51",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "groupdocs-rewriter-cloud",
"github_project": "groupdocs-rewriter-cloud-python",
"travis_ci": true,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "python_dateutil",
"specs": [
[
">=",
"2.5.3"
]
]
},
{
"name": "setuptools",
"specs": [
[
">=",
"21.0.0"
]
]
},
{
"name": "urllib3",
"specs": [
[
">=",
"2.2.3"
]
]
},
{
"name": "pydantic",
"specs": [
[
">=",
"2.10.3"
]
]
},
{
"name": "aenum",
"specs": [
[
">=",
"3.1.11"
]
]
},
{
"name": "oauthlib",
"specs": [
[
"~=",
"3.2.2"
]
]
},
{
"name": "requests-oauthlib",
"specs": [
[
"~=",
"2.0.0"
]
]
}
],
"tox": true,
"lcname": "groupdocs-rewriter-cloud"
}