django def name code example
Example 1: django create model from dictionary
# create instance of model
m = MyModel(**data_dict)
# don't forget to save to database!
m.save()
Example 2: extra import on django
### addiotnal imports
SHELL_PLUS_PRE_IMPORTS = [
('module.filename', '*'),
]