import django.apps django.apps.apps.get_models() On Wed, Jan 17, 2018 at 8:31 PM, Tom Tanner <[email protected]> wrote: > I've got the following in `management/commands/my_command.py`: > > from django.core.management.base import BaseCommand, CommandError > from django.conf import settings > > import os.path, csv > > from theme.models import * > > class Command(BaseCommand): > def handle(self, *args, **options): > modelName= raw_input("Enter model name: ") > print "you entered", modelName > > > I want to show the user a list of all model names. I want to take the user's > input and see if's an existing model. How do I do this?
-- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CACwCsY5-v2mgVtfY9%3DGOXOzcdm9zg68uRJExvCOPWrw54wgcog%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

