I'd like to be able to include python code snippets in Excel (ideally, in a nice format -- all colors/formats should be kept the same).

What would be the best way to go about it?

EDIT: I just want to store python code in an Excel spreadsheet for an easy overview -- I am not going to run it -- just want it to be nicely visible/formatted as part of an Excel worksheet.

link|improve this question

1  
Do you want to store the python code in a worksheet? – shahkalpesh Jun 2 '11 at 15:09
I don't understand what you are trying to archive, do you want run the python in excel? – Trufa Jun 2 '11 at 15:11
I just want to store the python code in a worksheet (say, in a textbox), for reference purposes and easy overview of the code. I want the code to be easy to view, with colors etc. – user3262424 Jun 2 '11 at 15:22
3  
Why? Excel seems to be an incredibly poor tool for code review. – Steven Rumbalski Jun 2 '11 at 15:34
1  
How about gist.github.com? It might be exactly what you are looking for (minus the excel.) – Eric Wilson Jun 2 '11 at 16:37
show 5 more comments
feedback

2 Answers

up vote 2 down vote accepted

I think that gist (from github) is precisely what you are looking for. From the description:

Gist is a simple way to share snippets and pastes with others. All gists are git repositories, so they are automatically versioned, forkable and usable as a git repository.

link|improve this answer
I really which things could be embedded into Excel, but if I can't find a solution, this is an alternative. – user3262424 Jun 2 '11 at 18:13
feedback

While Excel itself doesnot support other scripting Langauges than VBA, the open source OpenOffice and LibreOffice packages - which include a spreadsheet - can be scriptable with Python. Still, they won't allow Python code to be pasted on teh cells out of the box - but it is possible to write Python code which can act on the spredsheet contents (and do all the other things Python can do).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.