ipython-auto-import
ipython-auto-import copied to clipboard
:inbox_tray: Automatically import a Python library in IPython when you forget to import it
Using ipython version 7.5.0, python 3.7.3, anaconda 1.7.2, Ubuntu 18.04, Linux 4.15.0-51-generic, I cloned the git repository and ran python install.py. Then I ran ipython (it warned me to move...
Personally, if I get a NameError with `foo` and `foo` is not a module, it is way more likely that this was because I forgot to do `from foobar import...
I'm not sure if automated unit tests are really possible for this sort of project, but at the very least we could have something like: ``` Input: pandas Result: pandas...