Files
RRBEC/gestao_raul/Lib/site-packages/django_extensions/management/notebook_extension.py

11 lines
324 B
Python

# -*- coding: utf-8 -*-
def load_ipython_extension(ipython):
from django.core.management.color import no_style
from django_extensions.management.shells import import_objects
imported_objects = import_objects(
options={'dont_load': []},
style=no_style(),
)
ipython.push(imported_objects)