Add method imports to shell_plus
Asked Answered
C

2

12

In shell_plus, is there a way to automatically import selected helper methods, like the models are?

I often open the shell to type:

proj = Project.objects.get(project_id="asdf")

I want to replace that with:

proj = getproj("asdf")
Craigie answered 7/10, 2013 at 23:53 Comment(0)
C
21

Found it in the docs. Quoted from there:

Additional Imports

In addition to importing the models you can specify other items to import by default. These are specified in SHELL_PLUS_PRE_IMPORTS and SHELL_PLUS_POST_IMPORTS. The former is imported before any other imports (such as the default models import) and the latter is imported after any other imports. Both have similar syntax. So in your settings.py file:

SHELL_PLUS_PRE_IMPORTS = (
    ('module.submodule1', ('class1', 'function2')),
    ('module.submodule2', 'function3'),
    ('module.submodule3', '*'),
    'module.submodule4'
)

The above example would directly translate to the following python code which would be executed before the automatic imports:

from module.submodule1 import class1, function2
from module.submodule2 import function3
from module.submodule3 import *
import module.submodule4

These symbols will be available as soon as the shell starts.

Craigie answered 9/10, 2013 at 11:24 Comment(5)
I had to change SHELL_PLUS_PRE_IMPORTS from a tuple to a list to get it working.Backfield
Don't forget the comma if you are importing one item: SHELL_PLUS_PRE_IMPORTS = ('haystack',)Thiazine
Where do you define SHELL_PLUS_PRE_IMPORTS? Settings.py?Carbonaceous
@Carbonaceous yesSocinian
is there a mechanism to include some imports with aliases? A good use-case would be for the very-common aliases for data science related, like: import numpy as np, import pandas as pd, import matplotlib.pyplot as plt. EDIT: Sry, should have first looked in the docs: github.com/django-extensions/django-extensions/blob/main/docs/…Myra
G
0

ok, two ways:

1) using PYTHONSTARTUP variable (see this Docs)

#in some file. (here, I'll call it "~/path/to/foo.py"

def getproj(p_od):
    #I'm importing here because this script run in any python shell session
    from some_app.models import Project
    return Project.objects.get(project_id="asdf")

#in your .bashrc
export PYTHONSTARTUP="~/path/to/foo.py"

2) using ipython startup (my favourite) (See this Docs,this issue and this Docs ):

$ pip install ipython
$ ipython profile create
# put the foo.py script in  your profile_default/startup directory.
# django run ipython if it's installed. 

$ django-admin.py shell_plus 
Grobe answered 8/10, 2013 at 2:53 Comment(1)
Both great - but I want to include this in source control, and as it happens this config is built in - see my answer belowCraigie

© 2022 - 2024 — McMap. All rights reserved.