Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)



The Python Development Server

The App Engine Python SDK includes a web server application you can run on your computer that simulates your application running in the App Engine Python runtime environment. The simulated environment enforces some sandbox restrictions, such as restricted system functions and Python module imports, but not others, like request time-outs or quotas. The server also simulates the services by performing their tasks locally.

  1. Running the development web server
  2. Application IDs in the development web server
  3. Using the Datastore
  4. The Users service in the development web server
  5. Using Mail
  6. Using URL Fetch
  7. The Development Console
  8. The Interactive Console
  9. Debugging with PDB
  10. Command-line arguments

Running the development web server

Once you have a directory for your application and an app.yaml configuration file, you can start the development web server with the dev_appserver.py command:

dev_appserver.py myapp

The web server listens on port 8080 by default. You can visit the application at this URL: http://localhost:8080/ .

To change which port the web server uses, use the --port option:

dev_appserver.py --port=9999 myapp

To stop the web server: with Mac OS X or Unix, press Control-C or with Windows, press Control-Break in your command prompt window.

dev_appserver.py only runs Python 2.7 apps. For help migrating, see Migrating to Python 2.7 .

Application IDs in the development web server

If you need to access your App ID, for example to spoof an email address, use the get_application_id() function. To get the hostname of the running app, use the get_default_version_hostname() function.

Using the Datastore

The development web server simulates the App Engine datastore using a file on your computer. This file persists between invocations of the web server, so data you store will still be available the next time you run the web server.

To clear the local datastore for an application, use the --clear_datastore=yes option when you start the web server:

dev_appserver.py --clear_datastore=yes myapp

The web server prints the location of the datastore file it is using to the terminal when it starts up. You can make a copy of the file, then restore it later to reset the datastore to a known state. Be sure to restart the web server after replacing the datastore file.

To change the location used for the datastore file, use the --datastore_path option:

dev_appserver.py --datastore_path=/tmp/myapp_datastore myapp

When your application performs a query on the datastore, the development web server checks that the query is supported by the application's index.yaml file. If the query requires that its index be mentioned in the file, the server generates one and adds it to the file. You may want to edit this file if your application may attempt queries that are not exercised by your tests.

index.yaml is generated from every query made since the datastore file was created or last cleared. The query history is stored in a separate file.

For more information on indexes and index.yaml , see the Datastore Indexes and Datastore Index Configuration pages.

Specifying the automatic ID allocation policy

You can configure how the local datastore assigns automatic entity IDs . The following automatic ID allocation policies are supported in the development server:

  • sequential : IDs are assigned from the sequence of consecutive integers.
  • scattered : IDs are assigned from a non-repeating sequence of approximately uniformly distributed integers.

In the file-backed local datastore, the automatic IDs of all entities are drawn from a single ID sequence. In the SQLite-backed local datastore and the production datastore, a separate ID sequence is maintained for each entity group.

The default policy in the local datastore is scattered .

To specify the automatic ID assignment policy, use the --auto_id_policy option.

dev_appserver.py --auto_id_policy=scattered

The Users service in the development web server

App Engine provides a Users Service to simplify authentication and authorization for your application. The development web server simulates the behavior of Google Accounts with its own sign-in and sign-out pages. While running under the development web server, the users.create_login_url and users.create_logout_url functions return URLs for /_ah/login and /_ah/logout on the local server.

Using Mail

The development web server can send email for calls to the App Engine mail service. To enable email support, the web server must be given options that specify a mail server to use. The web server can use an SMTP server, or it can use a local installation of Sendmail .

To enable mail support with an SMTP server, use the --smtp_host , --smtp_port , --smtp_user and --smtp_password options with the appropriate values.

dev_appserver.py --smtp_host=smtp.example.com --smtp_port=25 \
    --smtp_user=ajohnson --smtp_password=k1tt3ns myapp

To enable mail support with Sendmail, use the --enable_sendmail option with a value of yes . The web server will use the sendmail command to send email messages with your installation's default configuration.

dev_appserver.py --enable_sendmail=yes

If mail is not enabled with either SMTP or Sendmail, then attempts to send email from the application will do nothing, and appear successful in the application.

Using URL Fetch

When your application uses the URL fetch API to make an HTTP request, the development web server makes the request directly from your computer. The behavior may differ from when your application runs on App Engine if you use a proxy server for accessing websites.

The Development Console

The development web server includes a console web application. With the console, you can browse the local datastore, and interact with the application by submitting Python code to a web form.

To access the console, visit the URL http://localhost:8000 on your server.

The Interactive Console

The Interactive Console allows developers to enter arbitrary Python code into a web form and execute it inside their app's environment.

To access the Interactive Console, go to the Development Console for your application, then click the Interactive Console link on the left navigation. A form with a single text area will display. Enter any arbitrary Python code you like in the text area, then submit the form to execute it.

Debugging with PDB

To use PDB, add a line such as:

import pdb; pdb.set_trace();

into your code, and dev_appserver will break at this point, and drop into the PDB REPL, allowing you to debug your code from the command line.

Warning : If you make multiple simultaneous requests that invoke pdb.set_trace() , then multiple debugging sessions will start concurrently and both will send output to STDOUT. This can lead to unpredictable debugging experiences.

To help prevent this, you can also disable some of the dev_appserver 's multi-threading and multi-processing support.

Using these techniques you can serialize your requests. Note that, if you are using App Engine modules in your application, the dev_appserver will still serve multiple requests simultaneously for different modules.

Command-line arguments

The dev_appserver.py command supports the following command-line arguments:

--admin_host=ADMIN_HOST

Host name to which the local Development Console should bind (default: localhost).

--admin_port=ADMIN_PORT

Port to which the local Development Console should bind (default: 8000).

--enable_sendmail

Uses the local computer's Sendmail installation for sending email messages.

--help

Prints a helpful message then quits.

--host=...

The host address to use for the server. You may need to set this to be able to access the development server from another computer on your network. An address of 0.0.0.0 allows both localhost access and hostname access. Default is localhost .

--log_level=...

The lowest logging level at which logging messages will be written to the console; messages of the specified logging level or higher will be output. Possible values are debug , info , warning , error , and critical .

--port=...

The port number to use for the server. Default is 8080 . If multiple servers are launched, they will be assigned subsequent ports (e.g. 8081 , 8082 , etc).

--logs_path=LOGS_FILE

By default, development server logs are stored in memory only. This option turns on disk storage of logs at the location specified by LOGS_FILE, making the logs available across server restarts. For example,

dev_appserver.py --logs_path=/home/logs/boglogs bog

--require_indexes=yes|no

Disables automatic generation of entries in the index.yaml file. Instead, when the application makes a query that requires that its index be defined in the file and the index definition is not found, an exception will be raised, similar to what would happen when running on App Engine. The default value is no .

--smtp_host=...

The hostname of the SMTP server to use for sending email messages.

--smtp_port=...

The port number of the SMTP server to use for sending email messages.

--smtp_user=...

The username to use with the SMTP server for sending email messages.

--smtp_password=...

The password to use with the SMTP server for sending email messages.

--storage_path=...

Path at which all local files (such as the Datastore, Blobstore files, Google Cloud Storage Files, logs, etc) will be stored, unless overridden by --datastore_path , --blobstore_path , --logs_path , etc.

Authentication required

You need to be signed in with Google+ to do that.

Signing you in...

Google Developers needs your permission to do that.