Last active
August 29, 2015 14:00
-
-
Save nfaggian/11395643 to your computer and use it in GitHub Desktop.
extension_hello_world.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Test the template from the IPython docs. | |
""" | |
def load_ipython_extension(ipython): | |
ipython.write('hello world') | |
def unload_ipython_extension(ipython): | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment