Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why can't I access imported functions in Django's shell with ipython?

I have installed ipython in my virtualenv, so python manage.py shell gives my ipython. However, I can't access imports from inside function definitions:

$ python manage.py shell
Python 2.7.5 (default, Sep  6 2013, 09:55:21) 
Type "copyright", "credits" or "license" for more information.

IPython 1.1.0 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.

In [1]: from re import search

In [2]: def my_search(pattern, string):
    return search(pattern, string)
   ...: 

In [3]: my_search('x', 'y')
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
/home/wilfred/.envs/drawbridge/lib/python2.7/site-packages/django/core/management/commands/shell.pyc in <module>()
----> 1 my_search('x', 'y')

/home/wilfred/.envs/drawbridge/lib/python2.7/site-packages/django/core/management/commands/shell.pyc in my_search(pattern, string)
      1 def my_search(pattern, string):
----> 2     return search(pattern, string)
      3 

NameError: global name 'search' is not defined

This works fine if I start ipython directly. Why doesn't it work from the Django shell?

like image 451
Wilfred Hughes Avatar asked Sep 25 '13 12:09

Wilfred Hughes


1 Answers

This is a known bug that was fixed in django 1.6. There are also some workarounds for earlier versions suggested in the issue discussion, take a look.

Also see:

  • Variables scope in inline django shell, vs python shell
  • Getting NameError with Django 1.5 and IPython
like image 155
alecxe Avatar answered Oct 26 '22 22:10

alecxe