After starting my app using dev_appserver.py --enable_console true my_app/
, I go to localhost:8000
, select the interactive console, and then run a Python script that initializes the datastore.
Is there a way to run this init script from the command line?
I looked at --python_startup_script my_init_script.py
, but that is called before the app is started, and so it doesn't make sense.