احفظ ملف XLTX بتنسيق XLS في Python
API
POST
https://api.aspose.cloud/v3.0/cells/{name}/SaveAs
يعد حفظ تنسيقات الملفات من XLTX بتنسيق XLS مهمة معقدة. يتم تنفيذ جميع عمليات النقل من تنسيق XLTX إلى XLS بواسطة Python SDK الخاص بنا مع الحفاظ على المحتوى الهيكلي والمنطقي الرئيسي لجدول بيانات XLTX المصدر. تعد مكتبتنا Python حلاً احترافيًا لحفظ XLTX كملفات XLS عبر الإنترنت. يوفر Cloud SDK هذا لمطوري Python وظائف قوية ومخرجات XLS مثالية.
Python مثال على الكود لحفظ XLTX كـ XLS باستخدام REST API
# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-python/
cells_api = CellsApi(os.getenv('ProductClientId'),os.getenv('ProductClientSecret'))
name ='Book1.xltx'
saveOptions = None
newfilename = "Book1Saveas.xls"
isAutoFitRows= True
isAutoFitColumns= True
folder = "PythonTest"
saveResponse = cells_api.cells_save_as_post_document_save_as(name,save_options=saveOptions, newfilename=(folder +'/' + newfilename),folder=folder)
كيفية حفظ XLTX كـ XLS باستخدام مكتبة Cells Cloud Python.
- تسجيل حساب فيلوحة القيادة للحصول على تفاصيل الحصص والترخيص API مجانًا
- قم بتثبيت مكتبة Python وأضف المرجع (استيراد المكتبة) إلى مشروعك.
- افتح الملف المصدر في Python.
- استخدم طريقة `post_workbook_save_as` لاسترداد الدفق الناتج.
متطلبات النظام
- Python 2.7 أو أحدث
- Python 3.10 أو أحدث