WeizhongDai / excelpython

An open source, easy to use interface for calling Python code from Excel

Home Page:http://ericremoreynolds.github.io/excelpython

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ExcelPython v2

Write Excel user-defined functions and macros in Python!

from xlpython import *

@xlfunc
@xlarg("x", "nparray", 2)
@xlarg("y", "nparray", 2)
def matrixmult(x, y):
    return x.dot(y)

image

Check out the tutorials to get started! The only prerequisites are Excel and Python (2.6 - 3.x) with PyWin32 installed.

About ExcelPython

ExcelPython is a lightweight, easily distributable library for interfacing Excel and Python. It enables easy access to Python scripts from Excel VBA, allowing you to substitute VBA with Python for complex automation tasks which would be facilitated by Python's extensive standard library while sparing you the complexities of Python COM programming.

Do you like ExcelPython and find it useful? If so please consider donating something to support its continued development and get your name on the donor list!

Click here to lend your support to: ExcelPython and make a donation at pledgie.com !

Help me!

Check out the docs folder for tutorials to help you get started and links to other resources. Failing that, try the issues section or the discussion forum on SourceForge.

If you still don't find your answer, need more help, find a bug, think of a useful new feature, or just want to give some feedback by letting us know what you're doing with ExcelPython, please go ahead and create an issue ticket!

About

An open source, easy to use interface for calling Python code from Excel

http://ericremoreynolds.github.io/excelpython

License:BSD 2-Clause "Simplified" License


Languages

Language:C++ 46.6%Language:Visual Basic 29.9%Language:Python 15.8%Language:Inno Setup 7.7%