meta data for this page

This is an old revision of the document!


Useful links and snippets regarding Python and Jupyter notebooks

iPython/Jupyter resources

Quick and dirty

  • # py3
    from urllib import parse
    parse.unquote("""TheURLString""")
    # or in py2.7
    import urllib
    urllib.unquote("theURL").decode('utf8')
  • Installing a new module in Enthough Canopy Light's distro on Windows: I managed to install the DBF module by navigating to the unzipped content downloaded in the Python console. Then I just typed %run setup.py install and the compiled module is then installed in the Canopy's User\Lib\site-packages directory. Easy.