Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
A powerful library for manipulating and converting Excel (XLS, XLSX, XLSB), CSV, ODS, PDF, JSON, JPG, PNG, BMP, EMF, SVG and HTML files.
Product Page <https://products.aspose.com/cells/python-net>
_ | Docs <https://docs.aspose.com/cells/python-net/>
_ | API Reference <https://reference.aspose.com/cells/python-net/>
_ | Demos <https://products.aspose.app/cells/family/>
_ | Blog <https://blog.aspose.com/category/cells/>
_ | Code Samples <https://github.com/aspose-cells/Aspose.Cells-for-Python-via-.NET>
_ | Free Support <https://forum.aspose.com/c/cells>
_ | Temporary License <https://purchase.aspose.com/temporary-license>
_ | EULA <https://company.aspose.com/legal/eula>
_
Try our free online apps <https://products.aspose.app/cells/family>
_ demonstrating some of the most popular Aspose.Cells functionality.
A powerful library for manipulating and converting Excel (XLS, XLSX, XLSB), CSV, ODS, PDF, JSON, JPG, PNG, BMP, SVG, EMF and HTML files.
Aspose.Cells offers a wide arrange of features for creating, reading, manipulating and saving Excel® files:
.. code-block:: python
import aspose.cells from aspose.cells import License, Workbook, FileFormatType
workbook = Workbook()
worksheet = workbook.worksheets[0]
cells = worksheet.cells cell = cells.get("A1")
cell.put_value("Hello World!")
workbook.save("HelloWorld.xlsx")
.. code-block:: python
import aspose.cells from aspose.cells import License, Workbook, FileFormatType
workbook = Workbook("HelloWorld.xlsx")
workbook.save("HelloWorld.pdf");
.. code-block:: python
from aspose.cells import Workbook from aspose.cells.pivot import PivotFieldType
workbook = Workbook()
sheet = workbook.worksheets[0] cells = sheet.cells
cell = cells.get("A1") cell.put_value("Sport") cell = cells.get("B1") cell.put_value("Quarter") cell = cells.get("C1") cell.put_value("Sales") cell = cells.get("A2") cell.put_value("Golf") cell = cells.get("A3") cell.put_value("Golf") cell = cells.get("A4") cell.put_value("Tennis") cell = cells.get("A5") cell.put_value("Tennis") cell = cells.get("A6") cell.put_value("Tennis") cell = cells.get("A7") cell.put_value("Tennis") cell = cells.get("A8") cell.put_value("Golf") cell = cells.get("B2") cell.put_value("Qtr3") cell = cells.get("B3") cell.put_value("Qtr4") cell = cells.get("B4") cell.put_value("Qtr3") cell = cells.get("B5") cell.put_value("Qtr4") cell = cells.get("B6") cell.put_value("Qtr3") cell = cells.get("B7") cell.put_value("Qtr4") cell = cells.get("B8") cell.put_value("Qtr3") cell = cells.get("C2") cell.put_value(1500) cell = cells.get("C3") cell.put_value(2000) cell = cells.get("C4") cell.put_value(600) cell = cells.get("C5") cell.put_value(1500) cell = cells.get("C6") cell.put_value(4070) cell = cells.get("C7") cell.put_value(5000) cell = cells.get("C8") cell.put_value(6430) pivotTables = sheet.pivot_tables
index = pivotTables.add("=A1:C8", "E3", "PivotTable2")
pivotTable = pivotTables[index]
pivotTable.row_grand = False
pivotTable.add_field_to_area(PivotFieldType.ROW, 0)
pivotTable.add_field_to_area(PivotFieldType.COLUMN, 1)
pivotTable.add_field_to_area(PivotFieldType.DATA, 2)
workbook.save("pivotTable_test_out.xls")
.. code-block:: python
from aspose.cells import Workbook
workbook = Workbook()
sheet = workbook.worksheets[0] cells = sheet.cells
cell = cells.get("A1") cell.put_value("First name") cell = cells.get("A2") cell.put_value("Simon") cell = cells.get("A3") cell.put_value("Kevin") cell = cells.get("A4") cell.put_value("Leo") cell = cells.get("A5") cell.put_value("Johnson") cell = cells.get("B1") cell.put_value("Age") cell = cells.get("C1") cell.put_value("Value") cell = cells.get("B2") cell.put_value(32) cell = cells.get("B3") cell.put_value(33) cell = cells.get("B4") cell.put_value(34) cell = cells.get("B5") cell.put_value(35) cell = cells.get("C2") cell.put_value(123.546) cell = cells.get("C3") cell.put_value(56.78) cell = cells.get("C4") cell.put_value(34) cell = cells.get("C5") cell.put_value(9)
workbook.save("Out.json")
Product Page <https://products.aspose.com/cells/python-net>
_ | Docs <https://docs.aspose.com/cells/python-net/>
_ | API Reference <https://reference.aspose.com/cells/python-net/>
_ | Demos <https://products.aspose.app/cells/family/>
_ | Blog <https://blog.aspose.com/category/cells/>
_ | Free Support <https://forum.aspose.com/c/cells>
_ | Temporary License <https://purchase.aspose.com/temporary-license>
_ | EULA <https://company.aspose.com/legal/eula>
_
FAQs
A powerful library for manipulating and converting Excel (XLS, XLSX, XLSB), CSV, ODS, PDF, JSON, JPG, PNG, BMP, EMF, SVG and HTML files.
We found that aspose-cells-python demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.