Files
IronCalc/bindings/python
Nicolás Hatcher ffe5d1a158 UPDATE: Adds bindings to update timezone and locale
UPDATE: Update "generate locale" utility

FIX: Minor fixes to UI and proper support for locales/timezones

UPDATE: Adds "display language" setting to core
2025-12-13 08:12:11 +01:00
..
ugh
2024-12-12 05:49:25 +01:00
ugh
2024-12-12 05:49:25 +01:00

IronCalc python bindings

With IronCalc you can create, read and manipulate xlsx files. You can manage sheets, add, remove, delete rename. You can add cell values, retrieve them and most importantly you can evaluate spreadsheets.

Installation

pip install ironcalc

Compile and test

To compile this and test it:

$ python3 -m venv venv
$ source venv/bin/activate
$ pip install maturin
$ maturin develop
$ cd examples
examples $ python example.py

From there if you use python you can import ironcalc. You can either create a new file, read it from a JSON string or import from Excel.

Hopefully the API is straightforward.

Creating documentation

We use sphinx

python -m venv venv
source venv/bin/activate
pip install maturin
pip install sphinx
maturin develop
sphinx-build -M html docs html
python -m http.server --directory html/html/