Metadata-Version: 2.1
Name: aspose-words-cloud
Version: 20.6.0
Summary: Python Cloud SDK wraps Aspose.Words Cloud API so you could seamlessly integrate Microsoft Word file generation, manipulation, conversion & inspection features into your own python applications.
Home-page: https://github.com/aspose-words-cloud/aspose-words-cloud-python
Author: Yaroslaw Ekimov
Author-email: yaroslaw.ekimov@aspose.com
License: UNKNOWN
Description: Python Cloud SDK wraps Aspose.Words Cloud API so you could seamlessly integrate Microsoft Word® file generation, manipulation, conversion & inspection features into your own python applications.
        
        [Aspose.Words Cloud SDK for Python](https://products.aspose.cloud/words/python) allows to work with Word document headers, footers, page numbering, tables, sections, document comments, drawing objects, FormFields, fonts, hyperlinks, ranges, paragraphs, math objects, watermarks, revisions and document protection. It also assists in appending documents, splitting documents as well as converting document to other supported file formats. Please feel free to explore the [Developer's Guide](https://docs.aspose.cloud/display/wordscloud/Developer+Guide) for all possible usage scenarios. 
        
        ## Document Processing Features
        
        - Programmatically create new documents of various file formats.
        - Availability of Mail Merge and report generation features.
        - Split or merge documents on demand.
        - Manage watermarks and protection.
        - Full read & write access to Document Object Model.
        - Fetch web pages via URL and save in Microsoft Word file formats.
        - Get document information in JSON or XML representation.
        - [Fetch statistical data](https://docs.aspose.cloud/display/wordscloud/Get+Document+Statistics) of a document.
        - [Remove all macros](https://docs.aspose.cloud/display/wordscloud/Remove+all+Macros+from+Document) contained in a specific document.
        - [Convert a document to desired file format](https://docs.aspose.cloud/display/wordscloud/Convert+Document+to+Destination+Format+with+Detailed+Settings+and+Save+Result+to+Storage) along with detailed settings.
        - Convert an encrypted PDF document into Word document format.
        
        ## Enhancements in Version 20.6.0
        - Added OoxmlSaveOption CompressionLevel property
        - Added group of methods without nodePath property
          - DeleteAllParagraphTabStops
          - DeleteParagraphListFormat
          - DeleteParagraphTabStop
          - GetParagraphTabStops
          - InsertOrUpdateParagraphTabStop
          - InsertParagraph
          - UpdateParagraphFormat
          - UpdateParagraphListFormat
        - In methods InsertOrUpdateParagraphTabStop, DeleteParagraphTabStop order of parameters has changed NodePath was moved to one position next, like if it was second before, now it's third.
        
        ## Enhancements in Version 20.5.0
        - Added methods to work with Word document lists
          - GetLists
          - GetList
          - InsertList
          - UpdateList
          - UpdateListLevel
        - Added methods to work with styles
          - GetStyles
          - UpdateStyle
          - InsertStyle
          - CopyStyle
          - GetStyleFromDocumentElement
          - ApplyStyleToDocumentElement
        - Added methods to work with paragraph list format
          - GetParagraphListFormat
          - GetParagraphListFormatWithoutNodePath
          - UpdateParagraphListFormat
          - DeleteParagraphListFormat
        - Added methods to work with paragraph tab stops
          - GetParagraphTabStops
          - InsertOrUpdateParagraphTabStop
          - DeleteAllParagraphTabStops
          - DeleteParagraphTabStop
        - Added methods to build reports
          - BuildReport
          - BuildReportOnline
        - Added Shading property to ParagraphFormat
        
        ## Enhancements in Version 20.4.0
        - Added CompareOptions property to CompareData class
        - Added Password property to OdtSaveOptions class
        - Added Dml3DEffectsRenderingMode property to SaveOptions class
        - Added UpdateLastPrintedProperty property to SaveOptions class
        - Added InterpolateImages property to PdfSaveOptions class
        - Added UseTargetMachineFonts property to HtmlFixedSaveOptions class
        - Added some request data classes:
          - RunUpdate and RunInsert
          - FootnoteUpdate and FootnoteInsert
          - FieldUpdate and FieldInsert
          - CommentUpdate and CommentInsert
          - DocumentPropertyCreateOrUpdate
        
        ## Enhancements in Version 20.3.1
        - Added RtfSaveOptionsData.SaveImagesAsWmf property
        - WordsApi class now has credentials parameters
        - All methods which are used files, now operate with bytes array
        
        ## Enhancements in Version 20.1.0
        
        - Moved property `ColorMode` from `SaveOptionsData` to `FixedPageSaveOptionsData`.
        - Replaced `MemoryStream` and `byte[]` with `SixLabors.ImageSharp.IImage` in image processing.
        - Included support of `ICC` profiles and implement `ICCBased` color space.
        
        For the detailed notes, please visit [Aspose.Words Cloud 20.1 Release Notes](https://docs.aspose.cloud/display/wordscloud/Aspose.Words+Cloud+20.1+Release+Notes).
        
        ## Read & Write Document Formats
        
        **Microsoft Word:** DOC, DOCX, RTF, DOT, DOTX, DOTM, FlatOPC (XML)
        **OpenOffice:** ODT, OTT
        **WordprocessingML:** XML
        **Web:** HTML, MHTML, HtmlFixed
        **Text:** TXT
        **Fixed Layout:** PDF
        
        ## Save Document As
        
        **Fixed Layout:** PDF/A, XPS, OpenXPS, PS
        **Images:** JPEG, PNG, BMP, SVG, TIFF, EMF
        **Others:** PCL
        
        ## Platform Independence
        
        Aspose.Words Cloud’s platform independent document manipulation API is a true REST API that can be used from any platform. You can use it with any language or platform that supports REST, be it the web, desktop, mobile, or the cloud. The API integrates with other cloud services to provide you the flexibility you require for processing documents. It is suitable for the most types of businesses, documents, or content.
        
        ## Getting Started with Aspose.Words Cloud SDK for Python
        
        Firstly, create an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) to get your application information and free quota to use the API. Now execute `pip install aspose-words-cloud` from the command line to fetch the SDK. Then import the package via `import asposewordscloud`. 
        
        ### Install via Setuptools
        
        Execute `python setup.py install --user` and import the package as `import asposewordscloud`.
        
        The complete source code is available at [GitHub Repository](https://github.com/aspose-words-cloud/aspose-words-cloud-python).
        
        ## Delete Watermarks from Word Document via Python
        
        ```python
                # Start README example
        
                self.words_api = asposewordscloud.WordsApi(api_sid, api_key)
                self.words_api.api_client.configuration.host = base_url
        
                upload_request = asposewordscloud.models.requests.UploadFileRequest(
                    open(os.path.join(local_folder, filename), 'rb'), os.path.join(remote_folder, remote_name))
                self.words_api.upload_file(upload_request)
        
                request = asposewordscloud.models.requests.DeleteWatermarkRequest(remote_name, remote_folder)
                self.words_api.delete_watermark(request)
        
                # End README example
        ```
        
        [Product Page](https://products.aspose.cloud/words/python) | [Documentation](https://docs.aspose.cloud/display/wordscloud/Home) | [API Reference](https://apireference.aspose.cloud/words/) | [Code Samples](https://github.com/aspose-words-cloud/aspose-words-cloud-python) | [Blog](https://blog.aspose.cloud/category/words/) | [Free Support](https://forum.aspose.cloud/c/words) | [Free Trial](https://dashboard.aspose.cloud/#/apps)
Keywords: office,convert,word,pdf,docx,html,rtf,png,jpg,split,merge,edit,word to pdf,pdf to word,docx to pdf,pdf to docx,word to html,html to word,reporting,mailmerge,statistics,watermark,fields,generate,create,report,table,paragraph,images,text,generator,creator,maker
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Office/Business :: Office Suites
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
