You develop and upload applications for Google App Engine using the App Engine software development kit (SDK).
The SDK includes a web server application that simulates the App Engine environment, including a local version of the datastore, Google Accounts, and the ability to fetch URLs and send email directly from your computer using the App Engine APIs. The SDK runs on any computer with Python 2.5, and versions are available for Windows, Mac OS X and Linux.
If necessary, download and install Python 2.5 for your platform from the Python website. Mac OS X 10.5 Leopard users already have Python 2.5 installed.
Download the App Engine SDK. Follow the instructions on the download page to install the SDK on your computer.
For this tutorial, you will use two commands from the SDK:
The Windows and Mac OS X installer applications put these commands in the command path. After installation, you can run these commands from a command prompt.
If you are using the Zip archive version of the SDK, you will find these commands in the google_appengine directory.
The local development environment lets you develop and test complete App Engine applications before showing them to the world. Let's write some code.
Continue to Hello, World!