ucsschool.http_api.import_api.management.commands package#

Submodules#

ucsschool.http_api.import_api.management.commands.superuserexists module#

Django manage.py command to check if a specified superuser account already exists.

python3 -m ucsschool.http_api.manage superuserexists

class ucsschool.http_api.import_api.management.commands.superuserexists.Command(stdout=None, stderr=None, no_color=False, force_color=False)[source]#

Bases: BaseCommand

add_arguments(parser)[source]#

Entry point for subclassed commands to add custom arguments.

handle(*args, **options)[source]#

The actual logic of the command. Subclasses must implement this method.

ucsschool.http_api.import_api.management.commands.updateschools module#

Django manage.py command to update one/some/all School object(s).

python3 -m ucsschool.http_api.manage updateschools –all

class ucsschool.http_api.import_api.management.commands.updateschools.Command(stdout=None, stderr=None, no_color=False, force_color=False)[source]#

Bases: BaseCommand

add_arguments(parser)[source]#

Entry point for subclassed commands to add custom arguments.

handle(*args, **options)[source]#

The actual logic of the command. Subclasses must implement this method.