Metadata-Version: 2.1
Name: asposeslidescloud
Version: 21.1.0
Summary: Aspose.Slides Cloud SDK for Python
Home-page: UNKNOWN
Author: Victor Putrov
Author-email: vistor.putrov@aspose.com
License: UNKNOWN
Description: # Aspose.Slides Cloud SDK for Python
        This repository contains Aspose.Slides Cloud SDK for Python source code. This SDK allows you to work with Aspose.Slides Cloud REST APIs in your Python applications.
        
        ## Key Features
        * Conversion between various document-related formats (20+ formats supported), including PDF<->PowerPoint conversion
        * Download slides and shapes in various formats, including PDF and SVG
        * Merge and split PowerPoint presentations
        * Access PowerPoint presentation metadata and statistics
        * Find and replace
        * Full read & write access to Document Object Model, including slides, shapes, paragraphs, portions and many others
        * Support of Aspose.Storage API
        
        ## Licensing
        All Aspose.Slides Cloud SDKs are licensed under MIT License.
        
        ## How to use the SDK?
        The complete source code is available in this repository folder. You can either directly use it in your project via source code or get [PuPi module](https://pypi.org/project/asposeslidescloud) (recommended).
        
        ## Prerequisites
        To use Aspose Slides Cloud SDK for Python 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).
        
        ### Installation
        
        ```sh
        python -m pip install asposeslidescloud
        ```
        
        ### Sample usage
        
        The example code below converts a PowerPoint document to PDF format using asposeslidescloud library:
        ```python
        	import asposeslidescloud
        
        	from asposeslidescloud.configuration import Configuration
        	from asposeslidescloud.apis.slides_api import SlidesApi
        	from asposeslidescloud.models.export_format import ExportFormat
        	from asposeslidescloud.models.requests.slides_api_requests import PostSlidesConvertRequest
        
        	configuration = Configuration()
        	configuration.app_sid = 'MyClientId'
        	configuration.app_key = 'MyClientSecret'
        	api = SlidesApi(configuration)
        
        	with open("MyPresentation.pptx", 'rb') as f:
        		document = f.read()
        
        	request = PostSlidesConvertRequest(ExportFormat.PDF, document)
        	response = api.post_slides_convert(request)
        	print('My PDF was saved to ' + response)
        ```
        
        You can check more [Examples](Examples) of using the SDK.
        
        ## Contact Us
        
        Your feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.aspose.cloud/c/slides).
        
        ## Resources
         
        [Website](https://www.aspose.cloud/)  
        [Product Home](https://products.aspose.cloud/slides/family)  
        [API Reference](https://apireference.aspose.cloud/slides/)  
        [Documentation](https://docs.aspose.cloud/slides/)  
        [Blog](https://blog.aspose.cloud/category/slides/)  
         
        ## Other languages
        
        We generate our SDKs in different languages so you may check if yours is available in our [list](https://github.com/aspose-slides-cloud).
         
        If 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/slides/curl).
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
