تصدير LISTOBJECT إلى JSON من Excel

مكتبة Python لتصدير LISTOBJECT إلى ملف JSON

استخدم تصدير API من Cells Cloud لتصدير سير عمل الكائن الداخلي للملف Excel في Python. هذا حل احترافي لتصدير LISTOBJECT إلى ملف بتنسيق JSON من جدول البيانات عبر الإنترنت باستخدام Python.

تصدير كائن LISTOBJECT إلى ملف بتنسيق JSON باستخدام Cells Cloud SDK لـ Python

API
POST
https://api.aspose.cloud/v3.0/cells/export

يعد تصدير كائن LISTOBJECT إلى ملف JSON من ملف Excel مهمة معقدة. يتم تنفيذ عمليات تصدير LISTOBJECT إلى تنسيق JSON بواسطة Python SDK الخاص بنا مع الحفاظ على المحتوى الهيكلي والمنطقي الرئيسي لجدول بيانات LISTOBJECT المصدر. تعد مكتبتنا Python حلاً احترافيًا لتصدير كائنات LISTOBJECT إلى ملفات بتنسيق JSON عبر الإنترنت. يوفر Cloud SDK هذا لمطوري Python وظائف قوية ومخرجات JSON مثالية.

مثال على الكود في Python باستخدام REST API لتصدير LISTOBJECT إلى تنسيق JSON من جدول البيانات

# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-python/
    import os
    import base64
    from asposecellscloud.apis.light_cells_api import LightCellsApi
    cells_api = LightCellsApi(os.getenv('ProductClientId'),os.getenv('ProductClientSecret'))
    files ={ 
        "myDocument.xlsx" :  "c:/myDocument.xlsx",
        "Book1.xlsx" :  "c:/Book1.xlsx" 
        }
    result = cells_api.post_export(files ,"listobject","json")
    base64_string  = result.files[0].file_content
    base64_bytes = base64_string.encode("ascii")
    sample_string_bytes = base64.b64decode(base64_bytes)
    f = open(result.files[0].filename, 'w+b')
    f.write(sample_string_bytes)
    f.close()    

كيفية استخدام Cells Cloud SDK لـ Python لتصدير الكائنات من Excel LISTOBJECT إلى JSON

  1. تسجيل حساب فيلوحة القيادة للحصول على تفاصيل الحصص والترخيص API مجانًا
  2. قم بتهيئة Cells API باستخدام معرف العميل وسر العميل وعنوان URL الأساسي وإصدار API.
  3. قم باستدعاء طريقة post_export للحصول على الدفق الناتج

متطلبات النظام

  1. Python 2.7 أو أحدث
  2. Python 3.10 أو أحدث