coalition.regions.management.commands.import_tiger_data ======================================================= .. py:module:: coalition.regions.management.commands.import_tiger_data Attributes ---------- .. autoapisummary:: coalition.regions.management.commands.import_tiger_data.DataSource Classes ------- .. autoapisummary:: coalition.regions.management.commands.import_tiger_data.Command Module Contents --------------- .. py:data:: DataSource :value: None .. py:class:: Command(stdout=None, stderr=None, no_color=False, force_color=False) Bases: :py:obj:`django.core.management.base.BaseCommand` Management command to import TIGER/Line shapefiles for legislative districts Usage: python manage.py import_tiger_data --type congressional --year 2024 --state MD python manage.py import_tiger_data --type state_senate --year 2024 --state MD python manage.py import_tiger_data --type state_house --year 2024 --state MD .. py:attribute:: help :value: 'Import TIGER/Line shapefiles for congressional and state legislative districts' .. py:attribute:: TIGER_URLS .. py:attribute:: CARTO_URLS .. py:method:: add_arguments(parser: Any) -> None Entry point for subclassed commands to add custom arguments. .. py:method:: handle(**options: Any) -> None The actual logic of the command. Subclasses must implement this method.