diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-31 03:11:00 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-31 03:11:00 +0000 |
commit | 6026ae1e85ea0afa9fa3859393b3d41bd7ffde53 (patch) | |
tree | 62690260aae1126855a6da7cb8cb50e765fadf27 | |
parent | c306b7e2353f524d5dcc87506923fad196efc161 (diff) |
automatic import of python-asposeslidescloud
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-asposeslidescloud.spec | 381 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 383 insertions, 0 deletions
@@ -0,0 +1 @@ +/asposeslidescloud-23.4.0.tar.gz diff --git a/python-asposeslidescloud.spec b/python-asposeslidescloud.spec new file mode 100644 index 0000000..4852ff6 --- /dev/null +++ b/python-asposeslidescloud.spec @@ -0,0 +1,381 @@ +%global _empty_manifest_terminate_build 0 +Name: python-asposeslidescloud +Version: 23.4.0 +Release: 1 +Summary: Aspose.Slides Cloud SDK for Python +License: MIT License +URL: https://pypi.org/project/asposeslidescloud/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/3b/29/74eed77b72c300dbed1284679a739acaa6cbf7b75442669a67224d10c2a1/asposeslidescloud-23.4.0.tar.gz +BuildArch: noarch + +Requires: python3-urllib3 +Requires: python3-six +Requires: python3-certifi + +%description +     [](https://github.com/aspose-slides-cloud/aspose-slides-cloud-python/blob/master/LICENSE) + +# Python REST API to Process Presentation in Cloud +This repository contains Aspose.Slides Cloud SDK for Python source code. This SDK allows you to [process & manipulate PPT, PPTX, ODP, OTP](https://products.aspose.cloud/slides/python) using Aspose.slides Cloud REST APIs in your Python applications. + +You may want to check out Aspose free [Powerpoint to PDF](https://products.aspose.app/slides/conversion), [Powerpoint to Word](https://products.aspose.app/slides/conversion/ppt-to-word), [Powerpoint to JPG](https://products.aspose.app/slides/conversion/ppt-to-jpg), [Powerpoint to PNG](https://products.aspose.app/slides/conversion/ppt-to-png), [PDF to Powerpoint](https://products.aspose.app/slides/import/pdf-to-powerpoint), [JPG to Powerpoint](https://products.aspose.app/slides/import/jpg-to-ppt), and [PNG to Powerpoint](https://products.aspose.app/slides/import/png-to-ppt) converters because they are live implementations of popular conversion processes. + +## Presentation Processing Features + +- Fetch presentation images in any of the supported file formats. +- Copy the layout side or clone the master slide from the source presentation. +- Process slides shapes, slides notes, placeholders, colors & font theme info. +- Programmatically create a presentation from HTML & export it to various formats. +- Merge multiple presentations or split the single presentation into multiple ones. +- Extract and replace text from a specific slide or an entire presentation. + +## Read & Write Presentation Formats + +**Microsoft PowerPoint:** PPT, PPTX, PPS, PPSX, PPTM, PPSM, POTX, POTM +**OpenOffice:** ODP, OTP, FODP +**Other**: PDF, PDF/A + +## Save Presentation As + +**Fixed Layout:** XPS +**Images:** JPEG, PNG, BMP, TIFF, GIF, SVG +**Web:** HTML/HTML5 +**Other:** MPEG4, SWF (export whole presentations) + +## Enhancements in Version 23.4 + +* Added **CreateTableRow**, **UpdateTableRow** and **DeleteTableRow** methods to add, update and delete table rows. +* Added **UpdateTableCell** method to update table cells. +* Added **MergeTableCells** and **SplitTableCell** methods to merge & split table cells. +* Added methods to get, add, modify and delete paragraphs & portions within table cells: **GetTableCellParagraph**, **GetTableCellParagraphs**, **GetTableCellPortion**, **GetTableCellPortions**, **CreateTableCellParagraph**, **CreateTableCellPortion**, **UpdateTableCellPortion**, **UpdateTableCellParagraph**, **DeleteTableCellParagraph**, **DeleteTableCellPortion**. +* New **TextFrameFormat** property in **TableCell** class allows to specify text format for table cells. + +## Enhancements in Version 23.3 + +* Added **options** parameter to **SplitOnline** and **SplitAndSaveOnline** methods. Those options are the same as for other split & convert methods. +* Added **ShowHiddenSlides** boolean property to **ImageExportOptions** class. + +## Enhancements in Version 23.2 + +* New **DownloadShapeFromDto** method allows to convert charts and other shapes from DTO to SVG and other formats without creating and storing presentation files. +* Added **SoundBase64** property to **Hyperlink** class to support getting and setting hyperlink sounds. +* Added **BulletFillFormat** property to **Paragraph** class. +* Added **StopPreviousSound** property to animation **Effect** class. +* Added a number of properties to **TextFrameFormat** that enable formatting shape text: **MarginLeft**, **MarginRight**, **MarginTop**, **MarginBottom**, **WrapText**, **AnchoringType**, **CenterText**, **TextVerticalType**, **AutofitType**, **ColumnCount**, **ColumnSpacing**, **KeepTextFlat**, **RotationAngle**, **DefaultParagraphFormat**. +* Added **Pdf16**, **Pdf17**, **PdfA2b**, **PdfA2a**, **PdfA2u**, **PdfA3a**, **PdfA3b** to the list of allowed values for **PdfExportOptions.Compliance** property. + +## Enhancements in Version 23.1 + +* New **CompressEmbeddedFonts** and **CompressEmbeddedFontsOnline** methods allow to reduce the size taken by embedded fonts by excluding unused characters. + +## 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 + + configuration = Configuration() + configuration.app_sid = 'MyClientId' + configuration.app_key = 'MyClientSecret' + api = SlidesApi(configuration) + + with open("MyPresentation.pptx", 'rb') as f: + document = f.read() + + response = api.convert(document, ExportFormat.PDF) + print('My PDF was saved to ' + response) +``` + +You can check more [Examples](Examples) of using the SDK. + +## Aspose.Slides Cloud SDKs in Popular Languages + +| .NET | Java | PHP | Python | Ruby | Node.js | Android | Swift|Perl|Go| +|---|---|---|---|---|---|---|--|--|--| +| [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-dotnet) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-java) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-php) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-python) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-ruby) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-nodejs) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-android) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-swift)|[GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-perl) |[GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-go) | +| [NuGet](https://www.nuget.org/packages/Aspose.slides-Cloud/) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-slides-cloud) | [Composer](https://packagist.org/packages/aspose/slides-sdk-php) | [PIP](https://pypi.org/project/asposeslidescloud/) | [GEM](https://rubygems.org/gems/aspose_slides_cloud) | [NPM](https://www.npmjs.com/package/asposeslidescloud) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-slides-cloud) | [Cocoapods](https://cocoapods.org/pods/AsposeslidesCloud)|[Meta Cpan](https://metacpan.org/release/AsposeSlidesCloud-SlidesApi) | [Go.Dev](https://pkg.go.dev/github.com/aspose-slides-cloud/aspose-slides-cloud-go/) | + +[Product Page](https://products.aspose.cloud/slides/python) | [Documentation](https://docs.aspose.cloud/display/slidescloud/Home) | [API Reference](https://apireference.aspose.cloud/slides/) | [Code Samples](https://github.com/aspose-slides-cloud/aspose-slides-cloud-python) | [Blog](https://blog.aspose.cloud/category/slides/) | [Free Support](https://forum.aspose.cloud/c/slides) | [Free Trial](https://dashboard.aspose.cloud/#/apps) + + +%package -n python3-asposeslidescloud +Summary: Aspose.Slides Cloud SDK for Python +Provides: python-asposeslidescloud +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-asposeslidescloud +     [](https://github.com/aspose-slides-cloud/aspose-slides-cloud-python/blob/master/LICENSE) + +# Python REST API to Process Presentation in Cloud +This repository contains Aspose.Slides Cloud SDK for Python source code. This SDK allows you to [process & manipulate PPT, PPTX, ODP, OTP](https://products.aspose.cloud/slides/python) using Aspose.slides Cloud REST APIs in your Python applications. + +You may want to check out Aspose free [Powerpoint to PDF](https://products.aspose.app/slides/conversion), [Powerpoint to Word](https://products.aspose.app/slides/conversion/ppt-to-word), [Powerpoint to JPG](https://products.aspose.app/slides/conversion/ppt-to-jpg), [Powerpoint to PNG](https://products.aspose.app/slides/conversion/ppt-to-png), [PDF to Powerpoint](https://products.aspose.app/slides/import/pdf-to-powerpoint), [JPG to Powerpoint](https://products.aspose.app/slides/import/jpg-to-ppt), and [PNG to Powerpoint](https://products.aspose.app/slides/import/png-to-ppt) converters because they are live implementations of popular conversion processes. + +## Presentation Processing Features + +- Fetch presentation images in any of the supported file formats. +- Copy the layout side or clone the master slide from the source presentation. +- Process slides shapes, slides notes, placeholders, colors & font theme info. +- Programmatically create a presentation from HTML & export it to various formats. +- Merge multiple presentations or split the single presentation into multiple ones. +- Extract and replace text from a specific slide or an entire presentation. + +## Read & Write Presentation Formats + +**Microsoft PowerPoint:** PPT, PPTX, PPS, PPSX, PPTM, PPSM, POTX, POTM +**OpenOffice:** ODP, OTP, FODP +**Other**: PDF, PDF/A + +## Save Presentation As + +**Fixed Layout:** XPS +**Images:** JPEG, PNG, BMP, TIFF, GIF, SVG +**Web:** HTML/HTML5 +**Other:** MPEG4, SWF (export whole presentations) + +## Enhancements in Version 23.4 + +* Added **CreateTableRow**, **UpdateTableRow** and **DeleteTableRow** methods to add, update and delete table rows. +* Added **UpdateTableCell** method to update table cells. +* Added **MergeTableCells** and **SplitTableCell** methods to merge & split table cells. +* Added methods to get, add, modify and delete paragraphs & portions within table cells: **GetTableCellParagraph**, **GetTableCellParagraphs**, **GetTableCellPortion**, **GetTableCellPortions**, **CreateTableCellParagraph**, **CreateTableCellPortion**, **UpdateTableCellPortion**, **UpdateTableCellParagraph**, **DeleteTableCellParagraph**, **DeleteTableCellPortion**. +* New **TextFrameFormat** property in **TableCell** class allows to specify text format for table cells. + +## Enhancements in Version 23.3 + +* Added **options** parameter to **SplitOnline** and **SplitAndSaveOnline** methods. Those options are the same as for other split & convert methods. +* Added **ShowHiddenSlides** boolean property to **ImageExportOptions** class. + +## Enhancements in Version 23.2 + +* New **DownloadShapeFromDto** method allows to convert charts and other shapes from DTO to SVG and other formats without creating and storing presentation files. +* Added **SoundBase64** property to **Hyperlink** class to support getting and setting hyperlink sounds. +* Added **BulletFillFormat** property to **Paragraph** class. +* Added **StopPreviousSound** property to animation **Effect** class. +* Added a number of properties to **TextFrameFormat** that enable formatting shape text: **MarginLeft**, **MarginRight**, **MarginTop**, **MarginBottom**, **WrapText**, **AnchoringType**, **CenterText**, **TextVerticalType**, **AutofitType**, **ColumnCount**, **ColumnSpacing**, **KeepTextFlat**, **RotationAngle**, **DefaultParagraphFormat**. +* Added **Pdf16**, **Pdf17**, **PdfA2b**, **PdfA2a**, **PdfA2u**, **PdfA3a**, **PdfA3b** to the list of allowed values for **PdfExportOptions.Compliance** property. + +## Enhancements in Version 23.1 + +* New **CompressEmbeddedFonts** and **CompressEmbeddedFontsOnline** methods allow to reduce the size taken by embedded fonts by excluding unused characters. + +## 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 + + configuration = Configuration() + configuration.app_sid = 'MyClientId' + configuration.app_key = 'MyClientSecret' + api = SlidesApi(configuration) + + with open("MyPresentation.pptx", 'rb') as f: + document = f.read() + + response = api.convert(document, ExportFormat.PDF) + print('My PDF was saved to ' + response) +``` + +You can check more [Examples](Examples) of using the SDK. + +## Aspose.Slides Cloud SDKs in Popular Languages + +| .NET | Java | PHP | Python | Ruby | Node.js | Android | Swift|Perl|Go| +|---|---|---|---|---|---|---|--|--|--| +| [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-dotnet) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-java) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-php) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-python) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-ruby) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-nodejs) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-android) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-swift)|[GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-perl) |[GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-go) | +| [NuGet](https://www.nuget.org/packages/Aspose.slides-Cloud/) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-slides-cloud) | [Composer](https://packagist.org/packages/aspose/slides-sdk-php) | [PIP](https://pypi.org/project/asposeslidescloud/) | [GEM](https://rubygems.org/gems/aspose_slides_cloud) | [NPM](https://www.npmjs.com/package/asposeslidescloud) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-slides-cloud) | [Cocoapods](https://cocoapods.org/pods/AsposeslidesCloud)|[Meta Cpan](https://metacpan.org/release/AsposeSlidesCloud-SlidesApi) | [Go.Dev](https://pkg.go.dev/github.com/aspose-slides-cloud/aspose-slides-cloud-go/) | + +[Product Page](https://products.aspose.cloud/slides/python) | [Documentation](https://docs.aspose.cloud/display/slidescloud/Home) | [API Reference](https://apireference.aspose.cloud/slides/) | [Code Samples](https://github.com/aspose-slides-cloud/aspose-slides-cloud-python) | [Blog](https://blog.aspose.cloud/category/slides/) | [Free Support](https://forum.aspose.cloud/c/slides) | [Free Trial](https://dashboard.aspose.cloud/#/apps) + + +%package help +Summary: Development documents and examples for asposeslidescloud +Provides: python3-asposeslidescloud-doc +%description help +     [](https://github.com/aspose-slides-cloud/aspose-slides-cloud-python/blob/master/LICENSE) + +# Python REST API to Process Presentation in Cloud +This repository contains Aspose.Slides Cloud SDK for Python source code. This SDK allows you to [process & manipulate PPT, PPTX, ODP, OTP](https://products.aspose.cloud/slides/python) using Aspose.slides Cloud REST APIs in your Python applications. + +You may want to check out Aspose free [Powerpoint to PDF](https://products.aspose.app/slides/conversion), [Powerpoint to Word](https://products.aspose.app/slides/conversion/ppt-to-word), [Powerpoint to JPG](https://products.aspose.app/slides/conversion/ppt-to-jpg), [Powerpoint to PNG](https://products.aspose.app/slides/conversion/ppt-to-png), [PDF to Powerpoint](https://products.aspose.app/slides/import/pdf-to-powerpoint), [JPG to Powerpoint](https://products.aspose.app/slides/import/jpg-to-ppt), and [PNG to Powerpoint](https://products.aspose.app/slides/import/png-to-ppt) converters because they are live implementations of popular conversion processes. + +## Presentation Processing Features + +- Fetch presentation images in any of the supported file formats. +- Copy the layout side or clone the master slide from the source presentation. +- Process slides shapes, slides notes, placeholders, colors & font theme info. +- Programmatically create a presentation from HTML & export it to various formats. +- Merge multiple presentations or split the single presentation into multiple ones. +- Extract and replace text from a specific slide or an entire presentation. + +## Read & Write Presentation Formats + +**Microsoft PowerPoint:** PPT, PPTX, PPS, PPSX, PPTM, PPSM, POTX, POTM +**OpenOffice:** ODP, OTP, FODP +**Other**: PDF, PDF/A + +## Save Presentation As + +**Fixed Layout:** XPS +**Images:** JPEG, PNG, BMP, TIFF, GIF, SVG +**Web:** HTML/HTML5 +**Other:** MPEG4, SWF (export whole presentations) + +## Enhancements in Version 23.4 + +* Added **CreateTableRow**, **UpdateTableRow** and **DeleteTableRow** methods to add, update and delete table rows. +* Added **UpdateTableCell** method to update table cells. +* Added **MergeTableCells** and **SplitTableCell** methods to merge & split table cells. +* Added methods to get, add, modify and delete paragraphs & portions within table cells: **GetTableCellParagraph**, **GetTableCellParagraphs**, **GetTableCellPortion**, **GetTableCellPortions**, **CreateTableCellParagraph**, **CreateTableCellPortion**, **UpdateTableCellPortion**, **UpdateTableCellParagraph**, **DeleteTableCellParagraph**, **DeleteTableCellPortion**. +* New **TextFrameFormat** property in **TableCell** class allows to specify text format for table cells. + +## Enhancements in Version 23.3 + +* Added **options** parameter to **SplitOnline** and **SplitAndSaveOnline** methods. Those options are the same as for other split & convert methods. +* Added **ShowHiddenSlides** boolean property to **ImageExportOptions** class. + +## Enhancements in Version 23.2 + +* New **DownloadShapeFromDto** method allows to convert charts and other shapes from DTO to SVG and other formats without creating and storing presentation files. +* Added **SoundBase64** property to **Hyperlink** class to support getting and setting hyperlink sounds. +* Added **BulletFillFormat** property to **Paragraph** class. +* Added **StopPreviousSound** property to animation **Effect** class. +* Added a number of properties to **TextFrameFormat** that enable formatting shape text: **MarginLeft**, **MarginRight**, **MarginTop**, **MarginBottom**, **WrapText**, **AnchoringType**, **CenterText**, **TextVerticalType**, **AutofitType**, **ColumnCount**, **ColumnSpacing**, **KeepTextFlat**, **RotationAngle**, **DefaultParagraphFormat**. +* Added **Pdf16**, **Pdf17**, **PdfA2b**, **PdfA2a**, **PdfA2u**, **PdfA3a**, **PdfA3b** to the list of allowed values for **PdfExportOptions.Compliance** property. + +## Enhancements in Version 23.1 + +* New **CompressEmbeddedFonts** and **CompressEmbeddedFontsOnline** methods allow to reduce the size taken by embedded fonts by excluding unused characters. + +## 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 + + configuration = Configuration() + configuration.app_sid = 'MyClientId' + configuration.app_key = 'MyClientSecret' + api = SlidesApi(configuration) + + with open("MyPresentation.pptx", 'rb') as f: + document = f.read() + + response = api.convert(document, ExportFormat.PDF) + print('My PDF was saved to ' + response) +``` + +You can check more [Examples](Examples) of using the SDK. + +## Aspose.Slides Cloud SDKs in Popular Languages + +| .NET | Java | PHP | Python | Ruby | Node.js | Android | Swift|Perl|Go| +|---|---|---|---|---|---|---|--|--|--| +| [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-dotnet) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-java) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-php) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-python) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-ruby) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-nodejs) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-android) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-swift)|[GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-perl) |[GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-go) | +| [NuGet](https://www.nuget.org/packages/Aspose.slides-Cloud/) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-slides-cloud) | [Composer](https://packagist.org/packages/aspose/slides-sdk-php) | [PIP](https://pypi.org/project/asposeslidescloud/) | [GEM](https://rubygems.org/gems/aspose_slides_cloud) | [NPM](https://www.npmjs.com/package/asposeslidescloud) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-slides-cloud) | [Cocoapods](https://cocoapods.org/pods/AsposeslidesCloud)|[Meta Cpan](https://metacpan.org/release/AsposeSlidesCloud-SlidesApi) | [Go.Dev](https://pkg.go.dev/github.com/aspose-slides-cloud/aspose-slides-cloud-go/) | + +[Product Page](https://products.aspose.cloud/slides/python) | [Documentation](https://docs.aspose.cloud/display/slidescloud/Home) | [API Reference](https://apireference.aspose.cloud/slides/) | [Code Samples](https://github.com/aspose-slides-cloud/aspose-slides-cloud-python) | [Blog](https://blog.aspose.cloud/category/slides/) | [Free Support](https://forum.aspose.cloud/c/slides) | [Free Trial](https://dashboard.aspose.cloud/#/apps) + + +%prep +%autosetup -n asposeslidescloud-23.4.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-asposeslidescloud -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 23.4.0-1 +- Package Spec generated @@ -0,0 +1 @@ +7a0f6bbc02fc45a8471bdbaa5b029a30 asposeslidescloud-23.4.0.tar.gz |