欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Mac OS X上的GAE + Python hello world

程序员文章站 2022-07-14 10:09:39
...

在本教程中,我们将向您展示如何在Mac OS X上使用Python创建一个简单的GAE hello世界网络项目,以及如何通过Google App Engine启动器运行它。

使用的工具 :

  1. 适用于Python的Google App Engine SDK(Mac OS X)– 1.7.0
  2. Mac OS X 10.8
  3. Python 2.7
注意
默认情况下,Mac OS X 10.8已安装Python 2.7,这使Google App Engine开发更加容易。

1. Google App Engine SDK

访问此适用于Python的Google App Engine SDK ,选择Mac OS X并开始下载。

1.1安装Google App Engine SDK
双击下载的GoogleAppEngineLauncher-version.dmg文件,它将解压缩“ GoogleAppEngineLauncher ”图标,并将其拖到要安装GAE SDK的文件夹中。

1.2运行Google App Engine启动器
再次双击“ GoogleAppEngineLauncher ”图标,然后按照向导指南完成安装。

图片:GoogleAppEngineLauncher –此GAE启动器可帮助您运行,部署和管理应用程序。

Mac OS X上的GAE + Python hello world

2. Python Hello World

File:hello.py –创建一个简单的python文件,以显示hello world消息。

import webapp2

class MainPage(webapp2.RequestHandler):
  def get(self):
      self.response.headers['Content-Type'] = 'text/plain'
      self.response.out.write('Hello World, GAE + Python')

app = webapp2.WSGIApplication([('/', MainPage)], debug=True)

File:app.yaml –创建一个简单的GAE配置文件。

application: helloworld
version: 1
runtime: python27
api_version: 1
threadsafe: true

handlers:
- url: /.*
  script: hello.app

做完了

3.导入,运行和演示

在GAE启动器中,两根手指单击表格网格->选择“ Add Existing… ”,找到包含以上Python文件的文件夹。

Mac OS X上的GAE + Python hello world

运行它,然后单击“ 浏览 ”以查看已部署的Web应用程序。

Mac OS X上的GAE + Python hello world

观看演示:http:// localhost:8888

Mac OS X上的GAE + Python hello world

下载源代码

下载– gae-python-hello-world.zip (3 kb)

参考文献

  1. GAE入门:Python 2.7
  2. 在Mac OS X 10.6上将Google App Engine SDK与Python 2.7结合使用

From: https://mkyong.com/google-app-engine/gae-python-hello-world-on-mac-os-x/