App Engine Python SDK  v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
Public Member Functions | Static Public Attributes | List of all members
google.appengine._internal.django.core.management.commands.dumpdata.Command Class Reference
Inheritance diagram for google.appengine._internal.django.core.management.commands.dumpdata.Command:
google.appengine._internal.django.core.management.base.BaseCommand

Public Member Functions

def handle
 
- Public Member Functions inherited from google.appengine._internal.django.core.management.base.BaseCommand
def __init__
 
def get_version
 
def usage
 
def create_parser
 
def print_help
 
def run_from_argv
 
def execute
 
def validate
 
def handle
 

Static Public Attributes

tuple option_list
 
tuple help
 
string args = '[appname appname.ModelName ...]'
 
- Static Public Attributes inherited from google.appengine._internal.django.core.management.base.BaseCommand
tuple option_list
 
string help = ''
 
string args = ''
 
 can_import_settings = True
 
 requires_model_validation = True
 
 output_transaction = False
 

Additional Inherited Members

- Public Attributes inherited from google.appengine._internal.django.core.management.base.BaseCommand
 style
 
 stdout
 
 stderr
 

Member Data Documentation

tuple google.appengine._internal.django.core.management.commands.dumpdata.Command.help
static
Initial value:
1 = ("Output the contents of the database as a fixture of the given "
2  "format (using each model's default manager).")
tuple google.appengine._internal.django.core.management.commands.dumpdata.Command.option_list
static
Initial value:
1 = BaseCommand.option_list+(
2  make_option('--format', default='json', dest='format',
3  help='Specifies the output serialization format for fixtures.'),
4  make_option('--indent', default=None, dest='indent', type='int',
5  help='Specifies the indent level to use when pretty-printing output'),
6  make_option('--database', action='store', dest='database',
7  default=DEFAULT_DB_ALIAS, help='Nominates a specific database to load '
8  'fixtures into. Defaults to the "default" database.'),
9  make_option('-e', '--exclude', dest='exclude',action='append', default=[],
10  help='App to exclude (use multiple --exclude to exclude multiple apps).'),
11  make_option('-n', '--natural', action='store_true', dest='use_natural_keys', default=False,
12  help='Use natural keys if they are available.'),
13  )

The documentation for this class was generated from the following file: