groupdocs-editor-cloud


Namegroupdocs-editor-cloud JSON
Version 23.5 PyPI version JSON
download
home_pagehttp://github.com/groupdocs-editor-cloud/groupdocs-editor-cloud-python
SummaryGroupDocs.Editor Cloud Python SDK
upload_time2023-05-23 07:20:22
maintainer
docs_urlNone
authorGroupDocs
requires_python
license
keywords groupdocs editor cloud python sdk
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # GroupDocs.Editor Cloud Python SDK
Python package for communicating with the GroupDocs.Editor Cloud API

GroupDocs.Editor Cloud allows you to edit documents across wide range of supported document types:
   * Microsoft Word documents - DOC, DOCX, DOCM, DOT, DOTM, DOTX, RTF, FlatOpc, WordML, TXT;
   * Microsoft Excel spreadsheets - XLS, XLSX, XLSM, XLT, XLTX, XLTM, XLSB, SpreadsheetML, CSV, TSV;
   * Microsoft PowerPoint presentations - PPT, PPTX, PPTM, POT, PPS etc.;
   * Open Document formats - ODT, OTT, ODS, ODP, OTP;
   * Markup - HTML, MHTML, XML.
## Requirements

Python 2.7 or 3.4+

## Installation
Install `groupdocs-editor-cloud` with [PIP](https://pypi.org/project/pip/) from [PyPI](https://pypi.org/) by:

```sh
pip install groupdocs-editor-cloud
```

Or clone repository and install it via [Setuptools](http://pypi.python.org/pypi/setuptools): 

```sh
python setup.py install
```

## Getting Started

Please follow the [installation procedure](#installation) and then run following:

```python
# Import module
import groupdocs_editor_cloud

# Get your app_sid and app_key at https://dashboard.groupdocs.cloud (free registration is required).
app_sid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
app_key = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"

# Create instance of the API
api = groupdocs_editor_cloud.InfoApi.from_keys(app_sid, app_key)

try:
    # Retrieve supported file-formats
    response = api.get_supported_file_formats()

    # Print out supported file-formats
    print("Supported file-formats:")
    for format in response.formats:
        print('{0} ({1})'.format(format.file_format, format.extension)) 
except groupdocs_editor_cloud.ApiException as e:
    print("Exception when calling get_supported_file_formats: {0}".format(e.message))
```

## Licensing
GroupDocs.Editor Cloud Python SDK licensed under [MIT License](http://github.com/groupdocs-editor-cloud/groupdocs-editor-cloud-python/LICENSE).

## Resources
+ [**Website**](https://www.groupdocs.cloud)
+ [**Product Home**](https://products.groupdocs.cloud/editor)
+ [**Documentation**](https://docs.groupdocs.cloud/display/editorcloud/Home)
+ [**Free Support Forum**](https://forum.groupdocs.cloud/c/editor)
+ [**Blog**](https://blog.groupdocs.cloud/category/editor)

## Contact Us
Your feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.groupdocs.cloud/c/editor).

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/groupdocs-editor-cloud/groupdocs-editor-cloud-python",
    "name": "groupdocs-editor-cloud",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "groupdocs,editor,cloud,python,sdk",
    "author": "GroupDocs",
    "author_email": "support@groupdocs.cloud",
    "download_url": "https://files.pythonhosted.org/packages/53/88/6a7e49daf7c1f06d0cebe7e86f3da8de2552bbf243b6e0be6a6371090de0/groupdocs-editor-cloud-23.5.tar.gz",
    "platform": null,
    "description": "# GroupDocs.Editor Cloud Python SDK\r\nPython package for communicating with the GroupDocs.Editor Cloud API\r\n\r\nGroupDocs.Editor Cloud allows you to edit documents across wide range of supported document types:\r\n   * Microsoft Word documents - DOC, DOCX, DOCM, DOT, DOTM, DOTX, RTF, FlatOpc, WordML, TXT;\r\n   * Microsoft Excel spreadsheets - XLS, XLSX, XLSM, XLT, XLTX, XLTM, XLSB, SpreadsheetML, CSV, TSV;\r\n   * Microsoft PowerPoint presentations - PPT, PPTX, PPTM, POT, PPS etc.;\r\n   * Open Document formats - ODT, OTT, ODS, ODP, OTP;\r\n   * Markup - HTML, MHTML, XML.\r\n## Requirements\r\n\r\nPython 2.7 or 3.4+\r\n\r\n## Installation\r\nInstall `groupdocs-editor-cloud` with [PIP](https://pypi.org/project/pip/) from [PyPI](https://pypi.org/) by:\r\n\r\n```sh\r\npip install groupdocs-editor-cloud\r\n```\r\n\r\nOr clone repository and install it via [Setuptools](http://pypi.python.org/pypi/setuptools): \r\n\r\n```sh\r\npython setup.py install\r\n```\r\n\r\n## Getting Started\r\n\r\nPlease follow the [installation procedure](#installation) and then run following:\r\n\r\n```python\r\n# Import module\r\nimport groupdocs_editor_cloud\r\n\r\n# Get your app_sid and app_key at https://dashboard.groupdocs.cloud (free registration is required).\r\napp_sid = \"XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\"\r\napp_key = \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\"\r\n\r\n# Create instance of the API\r\napi = groupdocs_editor_cloud.InfoApi.from_keys(app_sid, app_key)\r\n\r\ntry:\r\n    # Retrieve supported file-formats\r\n    response = api.get_supported_file_formats()\r\n\r\n    # Print out supported file-formats\r\n    print(\"Supported file-formats:\")\r\n    for format in response.formats:\r\n        print('{0} ({1})'.format(format.file_format, format.extension)) \r\nexcept groupdocs_editor_cloud.ApiException as e:\r\n    print(\"Exception when calling get_supported_file_formats: {0}\".format(e.message))\r\n```\r\n\r\n## Licensing\r\nGroupDocs.Editor Cloud Python SDK licensed under [MIT License](http://github.com/groupdocs-editor-cloud/groupdocs-editor-cloud-python/LICENSE).\r\n\r\n## Resources\r\n+ [**Website**](https://www.groupdocs.cloud)\r\n+ [**Product Home**](https://products.groupdocs.cloud/editor)\r\n+ [**Documentation**](https://docs.groupdocs.cloud/display/editorcloud/Home)\r\n+ [**Free Support Forum**](https://forum.groupdocs.cloud/c/editor)\r\n+ [**Blog**](https://blog.groupdocs.cloud/category/editor)\r\n\r\n## Contact Us\r\nYour feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.groupdocs.cloud/c/editor).\r\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "GroupDocs.Editor Cloud Python SDK",
    "version": "23.5",
    "project_urls": {
        "Homepage": "http://github.com/groupdocs-editor-cloud/groupdocs-editor-cloud-python"
    },
    "split_keywords": [
        "groupdocs",
        "editor",
        "cloud",
        "python",
        "sdk"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "726fc999b2d84da14280288ee3e86992e2d8463703174c3d94f8fdbca362b44c",
                "md5": "e4a5b9400c178515f840ca2c0c68fcd5",
                "sha256": "b9ace167fc0daa0140612e496f2d418b638566e95d5f9a2c6934bd78b3e09389"
            },
            "downloads": -1,
            "filename": "groupdocs_editor_cloud-23.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e4a5b9400c178515f840ca2c0c68fcd5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 119523,
            "upload_time": "2023-05-23T07:20:20",
            "upload_time_iso_8601": "2023-05-23T07:20:20.767004Z",
            "url": "https://files.pythonhosted.org/packages/72/6f/c999b2d84da14280288ee3e86992e2d8463703174c3d94f8fdbca362b44c/groupdocs_editor_cloud-23.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53886a7e49daf7c1f06d0cebe7e86f3da8de2552bbf243b6e0be6a6371090de0",
                "md5": "d253931823d8dbd2ccd50e88c0399900",
                "sha256": "511ef39d9a9cf5f930981406d0d9ce0cd3ec366ee910e921bdfad6f9e1ab384d"
            },
            "downloads": -1,
            "filename": "groupdocs-editor-cloud-23.5.tar.gz",
            "has_sig": false,
            "md5_digest": "d253931823d8dbd2ccd50e88c0399900",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 40653,
            "upload_time": "2023-05-23T07:20:22",
            "upload_time_iso_8601": "2023-05-23T07:20:22.944492Z",
            "url": "https://files.pythonhosted.org/packages/53/88/6a7e49daf7c1f06d0cebe7e86f3da8de2552bbf243b6e0be6a6371090de0/groupdocs-editor-cloud-23.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-23 07:20:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "groupdocs-editor-cloud",
    "github_project": "groupdocs-editor-cloud-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "tox": true,
    "lcname": "groupdocs-editor-cloud"
}
        
Elapsed time: 0.07133s