Dennis Ploenges
Dennis Ploenges

Reputation: 1

Python to Excel basics using xlwings

I am new to xlwings and only have a basic knowledge of Python, I use excel for club statistics and graphs and can see how Python will help speed up these tasks. I am however, struggling with the basics of the Python to Excel process. "Instantiate" a workbook for example, Is there a primer for a dunce like me?

Upvotes: 0

Views: 1163

Answers (1)

schoolie
schoolie

Reputation: 462

If you've got xlwings installed correctly, you should be able to use the xlwings command line client to create the quickstart workbook like so:

xlwings quickstart myproject

Once you've done that, working through the quickstart tutorial should get you started interacting with excel using a python script.

Upvotes: 1

Related Questions