settler.management.commands package

Submodules

settler.management.commands.add_transaction module

class settler.management.commands.add_transaction.Command(stdout=None, stderr=None, no_color=False, force_color=False)[source]

Bases: django.core.management.base.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.

help = 'Add a single transaction'
success(message)[source]

settler.management.commands.dump_accounts module

class settler.management.commands.dump_accounts.Command(stdout=None, stderr=None, no_color=False, force_color=False)[source]

Bases: django.core.management.base.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.

help = 'Dump the balance of all accounts'
success(message)[source]