I have a few IPython scripts which have redundant functionality. I would like to refactor the common functionality into one module and include that modules in the existing script. The problem is it cannot be made a python module as the code uses Ipython's language extensions (!, $ etc). Is it possible to make a module having IPython code and include it in another IPython scripts?
|
|
You should not be saving the IPython extension stuff (
You can still use IPython extension features like |
||||||
|
|
|
technically if you save a script with the |
||
|
|
|
|
If you enter the commands into an interactive version of IPython and then use the hist command (with -n to remove line numbers), IPython spits out all of the commands that you ran, with the actual python code used in place of !cd !ls, etc. Here's an example.
http://ipython.scipy.org/moin/IpythonExtensionApi explains this object. This is basically what you need to do (adapted from the link):
Now all of the code you pasted from the IPython shell's hist command should work fine. |
||
|
|
|
Have you had a look at the IPython module ( |
||
|
|
