Skip to content

ExcelPython v2.0.4

Compare
Choose a tag to compare
@ericremoreynolds ericremoreynolds released this 22 Aug 11:37
· 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