{ "info": { "author": "Yaroslaw Ekimov", "author_email": "yaroslaw.ekimov@aspose.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Office/Business :: Office Suites", "Topic :: Software Development :: Libraries" ], "description": "# Aspose.Words Cloud SDK for Python\nThis repository contains Aspose.Words Cloud SDK for Python source code. This SDK allows you to work with Aspose.Words Cloud REST APIs in your Python applications quickly and easily, with zero initial cost.\n\n[Aspose.Words Cloud](https://products.aspose.cloud/words/family \"Aspose.Words Cloud\") \n[API Reference](https://apireference.aspose.cloud/words/) \n\n## Key Features\n* Conversion between various document-related formats (20+ formats supported), including PDF<->Word conversion\n* Mail merge and reports generation \n* Splitting Word documents\n* Accessing Word document metadata and statistics\n* Find and replace\n* Watermarks and protection\n* Full read & write access to Document Object Model, including sections, paragraphs, text, images, tables, headers/footers and many others\n\n## How to use the SDK?\nThe complete source code is available in this repository folder. You can either directly use it in your project via source code or get [PyPi](https://pypi.org/project/asposewordscloud) (recommended). For more details, please visit our [documentation website](https://docs.aspose.cloud/display/wordscloud/Available+SDKs).\n\n### Prerequisites\n\nTo use Aspose Words for Cloud Python SDK you need to register an account with [Aspose Cloud](https://www.aspose.cloud/) and lookup/create App Key and SID at [Cloud Dashboard](https://dashboard.aspose.cloud/#/apps). There is free quota available. For more details, see [Aspose Cloud Pricing](https://purchase.aspose.cloud/pricing).\n\n## Installation & Usage\n### pip install\n\nIf the python package is hosted on Github, you can install directly from Github\n\n```sh\npip install aspose-words-cloud\n```\n(you may need to run `pip` with root permission: `sudo pip install aspose-words-cloud`)\n\nThen import the package:\n```python\nimport asposewordscloud\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport asposewordscloud\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\nimport asposewordscloud\nimport asposewordscloud.models.requests\napi_client = asposewordscloud.ApiClient()\napi_client.configuration.host = 'https://api.aspose.cloud'\napi_client.configuration.api_key['api_key'] = '' # Put your appKey here\napi_client.configuration.api_key['app_sid'] = '' # Put your appSid here\nstorage_api = asposestoragecloud.StorageApi(asposestoragecloud.ApiClient('', '')) # Same credentials for storage\nstorage_api.api_client.configuration.base_url = 'https://api.aspose.cloud/v1.1'\nwords_api = asposewordscloud.WordsApi(api_client)\nfilename = 'test_doc.docx'\nremote_name = 'TestDeleteDocumentWatermark.docx'\n\nwith open(os.path.join(self.local_common_folder, filename), 'rb') as f:\n file = f.read()\nself.storage_api.put_create(os.path.join(self.remote_test_folder, self.test_folder, remote_name), file)\nrequest = asposewordscloud.models.requests.DeleteDocumentWatermarkRequest(remote_name,\n os.path.join(\n self.remote_test_folder,\n self.test_folder))\nresult = words_api.delete_document_watermark(request)\nself.assertTrue(result.code == 200, 'Error has occurred while delete document watermark')\n\n```\n\n[Test](test/) contain various examples of using the SDK.\nPlease put your credentials into [Configuration](asposewordscloud/configuration.py).\n\n## Dependencies\n- Python 2.7 and 3.4+\n- referenced packages (see [here](setup.py) for more details)\n\n## Comparison with Old generation SDK\nNew SDK has the following advantages over the [previous version](https://github.com/aspose-words/Aspose.Words-for-Cloud):\n+ SDK is fully in sync with the API, all missing methods are added\n+ Classes, methods and properties have comments and are IDE-friendly\n+ Better security\n+ Usage of Request/Response classes to represent long lists of parameters. This allows for cleaner code and easier backwards-compatibility going forward\n\nNew SDK is not backwards compatible with previous generation because of the last item. It should be straightforward to convert your code to using Request/Response objects, if you need any help on migration please ask at [Free Support Forums](https://forum.aspose.cloud/c/words).\n\n## Licensing\n\nAll Aspose.Words Cloud SDKs, helper scripts and templates are licensed under [MIT License](https://github.com/aspose-words-cloud/aspose-words-cloud-python/blob/master/LICENSE). \n\n## Contact Us\nYour feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.aspose.cloud/c/words).\n\n## Resources\n\n[Website](https://www.aspose.cloud/) \n[Product Home](https://products.aspose.cloud/words/family) \n[API Reference](https://apireference.aspose.cloud/words/) \n[Documentation](https://docs.aspose.cloud/display/wordscloud/Home) \n[Blog](https://blog.aspose.cloud/category/words/) \n\n## Other languages\nWe generate our SDKs in different languages so you may check if yours is available in our [list](https://github.com/aspose-words-cloud).\n\nIf you don't find your language in the list, feel free to request it from us, or use raw REST API requests as you can find it [here](https://products.aspose.cloud/words/curl).\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/aspose-words-cloud/aspose-words-cloud-python", "keywords": "aspose,python,aspose cloud,word", "license": "", "maintainer": "", "maintainer_email": "", "name": "aspose-words-cloud", "package_url": "https://pypi.org/project/aspose-words-cloud/", "platform": "", "project_url": "https://pypi.org/project/aspose-words-cloud/", "project_urls": { "Homepage": "https://github.com/aspose-words-cloud/aspose-words-cloud-python" }, "release_url": "https://pypi.org/project/aspose-words-cloud/19.9.2/", "requires_dist": [ "urllib3 (>=1.16)", "six (>=1.10)", "certifi", "python-dateutil" ], "requires_python": "", "summary": "Aspose.Words for Cloud API Reference", "version": "19.9.2" }, "last_serial": 5936252, "releases": { "18.9.0": [ { "comment_text": "", "digests": { "md5": "e8a6b65282072e7c2502857257bae507", "sha256": "3f821b439fdbebf161c0630f648e6118231a2325bed7f1a18d34a31bac748bf7" }, "downloads": -1, "filename": "aspose_words_cloud-18.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e8a6b65282072e7c2502857257bae507", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 723190, "upload_time": "2019-03-06T08:57:00", "url": "https://files.pythonhosted.org/packages/19/7a/91b3c85ebbe5ff92c5eff219b0c46532fea8d47596a7cb3937728c456ea2/aspose_words_cloud-18.9.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f97dcc6bf1373891dfbc84eca2bcaa2", "sha256": "72d778d5869a3e79e6be360d8407167e9cc2b1259dc998d3360b7d35c8a02d2d" }, "downloads": -1, "filename": "aspose-words-cloud-18.9.0.tar.gz", "has_sig": false, "md5_digest": "4f97dcc6bf1373891dfbc84eca2bcaa2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 253122, "upload_time": "2019-03-06T08:57:03", "url": "https://files.pythonhosted.org/packages/27/f4/d4a6c8236d37af2f59ce2f583f7b209b2b9368198f4526c0799f5faa7d1c/aspose-words-cloud-18.9.0.tar.gz" } ], "19.8.0": [ { "comment_text": "", "digests": { "md5": "f9dc10f688de41740c265aabab832734", "sha256": "3f4834775d6c9f9546786c96ba1383c53a7dff08f28111ea1df4b564bbbba98d" }, "downloads": -1, "filename": "aspose_words_cloud-19.8.0-py2-none-any.whl", "has_sig": false, "md5_digest": "f9dc10f688de41740c265aabab832734", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 724195, "upload_time": "2019-08-07T13:16:01", "url": "https://files.pythonhosted.org/packages/a1/3c/b70817552cc00dcd4232cf1055698537c83ee84a602417d670d69d7b12ff/aspose_words_cloud-19.8.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b26d4cb8f2a78290d9210094e587905", "sha256": "b8ba8994dd9cc5cd685137a878ba1474fcece1c505dcde326c770c57ac4ebee2" }, "downloads": -1, "filename": "aspose-words-cloud-19.8.0.tar.gz", "has_sig": false, "md5_digest": "4b26d4cb8f2a78290d9210094e587905", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 253016, "upload_time": "2019-08-07T13:16:04", "url": "https://files.pythonhosted.org/packages/c4/88/751420052701839d19c3128d9528193a03d6cf2d4b20b2717f45f342b8e8/aspose-words-cloud-19.8.0.tar.gz" } ], "19.9.2": [ { "comment_text": "", "digests": { "md5": "ad81c09279c976b0c32f540893f1f8be", "sha256": "6814f2f8987efb2c103f4fb1d9be42ba257f388e2ca0b39f95bf3b79d95701b2" }, "downloads": -1, "filename": "aspose_words_cloud-19.9.2-py2-none-any.whl", "has_sig": false, "md5_digest": "ad81c09279c976b0c32f540893f1f8be", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 805122, "upload_time": "2019-10-04T13:08:13", "url": "https://files.pythonhosted.org/packages/f6/3f/1a15c0c9352548f4167732e575e0f439f8df0589b4ce6976bbb20fbf2d50/aspose_words_cloud-19.9.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3dbdbc8585fa1abfd2fe121fb158da12", "sha256": "f5e8b0a99b5e969013097f383ec6d70e02e641b81cd26f3dfc472c524881ab5a" }, "downloads": -1, "filename": "aspose-words-cloud-19.9.2.tar.gz", "has_sig": false, "md5_digest": "3dbdbc8585fa1abfd2fe121fb158da12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 273649, "upload_time": "2019-10-04T13:08:16", "url": "https://files.pythonhosted.org/packages/7c/99/4bbd7017b1c882aa1abb9072ea082530eeed1ff587846b07d2c6bfd4cb22/aspose-words-cloud-19.9.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ad81c09279c976b0c32f540893f1f8be", "sha256": "6814f2f8987efb2c103f4fb1d9be42ba257f388e2ca0b39f95bf3b79d95701b2" }, "downloads": -1, "filename": "aspose_words_cloud-19.9.2-py2-none-any.whl", "has_sig": false, "md5_digest": "ad81c09279c976b0c32f540893f1f8be", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 805122, "upload_time": "2019-10-04T13:08:13", "url": "https://files.pythonhosted.org/packages/f6/3f/1a15c0c9352548f4167732e575e0f439f8df0589b4ce6976bbb20fbf2d50/aspose_words_cloud-19.9.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3dbdbc8585fa1abfd2fe121fb158da12", "sha256": "f5e8b0a99b5e969013097f383ec6d70e02e641b81cd26f3dfc472c524881ab5a" }, "downloads": -1, "filename": "aspose-words-cloud-19.9.2.tar.gz", "has_sig": false, "md5_digest": "3dbdbc8585fa1abfd2fe121fb158da12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 273649, "upload_time": "2019-10-04T13:08:16", "url": "https://files.pythonhosted.org/packages/7c/99/4bbd7017b1c882aa1abb9072ea082530eeed1ff587846b07d2c6bfd4cb22/aspose-words-cloud-19.9.2.tar.gz" } ] }