I'm using Django 3.2, Python 3.9 and bpython==0.21 for a more useable shell. However, I notice when I start using my shell, I always have to run the same import commands
$ python manage.py shell
>>> from cbapp.models import *
>>> from cbapp.services import *
I like the bpython shell and would prefer to continue to use it, but is there a way that the imports can be run prior to the shell loading so I don't have to type (or scroll to) them each time?