ExcelPython v2.0.4
·
44 commits
to master
since this release
- Now interacts smoothly with xlwings! Writing macros is even easier:
from xlpython import *
from xlwings import *
@xlsub(xlwings=True)
def mymacro():
Range("A1").value = [ 1, 2, 3 ]
- Fixed some compatibility issues with Python 3.x