Python

Create an Excel workbook with Cygwin:

Install PIP in console if not present…

easy_install-a.b pip # replace a.b with version of python

Install openpyxl…

pip3 install openpyxl

Create a workbook in Python3…

>>> from openpyxl import Workbook
>>> wb = Workbook()

>>> ws = wb.active

Saving to a file…

>>> wb = Workbook()
>>> wb.save(‘balances.xlsx’)

 

http://openpyxl.readthedocs.io/en/stable/usage.html

 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s