Notfellchen/src/fellchensammlung/management/commands/query_location.py

17 lines
447 B
Python
Raw Normal View History

from django.core.management import BaseCommand
2024-06-08 06:57:14 +00:00
from fellchensammlung.models import Location
class Command(BaseCommand):
help = 'Query location data to debug'
def add_arguments(self, parser):
# Named (optional) arguments
parser.add_argument(
"query",
help="The string to query",
)
def handle(self, *args, **options):
2024-06-08 06:57:14 +00:00
print(Location.get_location_from_string(options["query"]))