Reputation: 1
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
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