diff --git a/src/webapp/shell.py b/src/webapp/shell.py index 0d3063ee2..e86c6f327 100644 --- a/src/webapp/shell.py +++ b/src/webapp/shell.py @@ -1,3 +1,9 @@ +#### This sets up Django so you can interact with it via the Python +#### command line. +#### Start with something like: +#### $ PYTHONPATH=.. python -i shell.py +#### >>> Person.objects.all() + from django.conf import settings import webapp.settings as default_settings try: @@ -13,12 +19,13 @@ from webapp.reports import import_file from webapp.libdjango import DjangoInterface, totime, todate from gen.datehandler import displayer, parser import gen.lib +import cli.user db = DbDjango() dji = DjangoInterface() dd = displayer.display dp = parser.parse -#def Print(m): -# print m -#import_file(db, "/tmp/dblank-im_ged.ged", Print) +#import_file(db, +# "/home/dblank/gramps/trunk/example/gramps/data.gramps", +# cli.user.User())