`
bee1314
  • 浏览: 166199 次
  • 性别: Icon_minigender_1
  • 来自: 安徽
社区版块
存档分类
最新评论

Bottle hello world

阅读更多

 

Hello World

既然环境都搞定了,那就开始吧。让我们首先开始一个hello world。

快速开始“helle world“

    emacs hello.py

    from bottle import route, run

 

    @route('/hello')

    def hello():

        return "hello world"

 

    run(host='localhost', port=3000, debug=True)

    很简单的一个hello world,ok了。

    python hello.py 

    浏览器:http://localhost:3000/hello

    但愿你看到一个大大的hello world。

 

route?

route这个装饰符呢,作用是将一小段代码绑定到一个URL的路径。在上面的例子中,我们绑定了/hello的URL到hello()方法。

这就是route(路由)并且是bottle框架中最重要的概念。你可有自定义任意多的route根据自己的需要。无论什么时候浏览器请求一个URL这个关联的函数或者方法都会被调用并且返回值被发送回浏览器。就是这样简单。

 

 

Debug mode在早期的开发过程中是非常有用的模式,但是在发布应用之后记得关闭。把这个记在心里。

当然上面的例子是一个非常简单的例子,但是已经展示了个应用只能绑定一个route这个是怎么去使用bottle创建应用的一些基本的概念。<!--EndFragment-->

 

分享到:
评论

相关推荐

    bottle开发文档

    下面是一个简单的示例,展示如何使用Bottle构建一个“Hello World”应用: ```python from bottle import route, run, template @route('/hello/:name') def index(name='World'): return template('&lt;b&gt;Hello {{...

    python bottle v0.11中文文档

    以下是一个简单的Bottle应用示例,展示了如何使用Bottle创建一个基本的“Hello World”应用: ```python from bottle import route, run @route('/hello/&lt;name&gt;') def index(name='World'): return '&lt;b&gt;Hello %s!...

    bottle-master.zip

    这个例子中,我们定义了一个路由`/`,当访问应用的根URL时,会触发`hello`函数,返回“Hello, World!”。 六、Bottle-master项目分析 由于提供的压缩包文件名为“bottle-master”,我们可以推测这可能是一个完整的...

    PyPI 官网下载 | bottle-0.11.6.tar.gz

    一个简单的Hello, World!程序只需几行代码: ```python from bottle import route, run @route('/hello') def hello(): return 'Hello, World!' run(host='localhost', port=8080) ``` 这个小程序会监听本地的...

    bottle-docs

    下面是一个简单的示例,展示了如何使用 Bottle 创建一个 “Hello World” 应用程序: ```python from bottle import route, run, template @route('/hello/&lt;name&gt;') # 定义路由 def index(name): # 定义视图函数 ...

    bottle web框架

    - **Hello World示例**: ```python from bottle import route, run @route('/hello/:name') def index(name='World'): return '&lt;b&gt;Hello %s!&lt;/b&gt;' % name run(host='localhost', port=8080) ``` 运行脚本...

    Python的Bottle框架基本知识总结

    return Hello World! run() # This starts the HTTP server 运行这个程序,访问http://localhost:8080/hello将会在浏览器里看到 “Hello World!”. GET, POST, HEAD, … 这个射装饰器有可选的关键字method默认是...

    python框架bottle使用文档

    一个简单的“Hello World”示例可以帮助我们理解Bottle的基本使用方法。从bottle模块中导入route,run,template,然后定义一个路由,该路由映射到一个函数上。在这个函数中,返回一个模板,这个模板会将传入的参数...

    bottle document

    #### 三、示例:“Hello World” 应用 ```python from bottle import route, run, template @route('/hello/&lt;name&gt;') def index(name): return template('&lt;b&gt;Hello {{name}}!', name=name) run(host='localhost'...

    基于Bottle的Python网络应用开发.zip

    创建一个简单的"Hello, World!"应用: ```python from bottle import route, run @route('/') def hello(): return 'Hello, World!' run(host='localhost', port=8080) ``` 运行此脚本,然后在浏览器中访问`...

    bottle文档PDF

    #### 三、基本示例:“Hello World”应用 ```python from bottle import route, run, template @route('/hello/:name') def index(name='World'): return template('&lt;b&gt;Hello {{name}}!', name=name) run(host='...

    Python用Bottle轻量级框架进行Web开发

    @route('/helloworld/:yourwords', methods=['GET', 'POST']) def hello(yourwords): return 'hello world. ' + yourwords run(host='0.0.0.0', port=8080) ``` 这里`@route`装饰器定义了一个URL路径,`:...

    Python轻量级web框架bottle使用方法解析

    Bottle是一个轻量级的Web框架,此框架只由一个 bottle.py 文件构成,不依赖任何第三方模块。... return Hello World # return template('&lt;b&gt;Hello {{name}}!', name=bottle) if __name__ == '__main__': app.

    Swift hello world!Swift快速入门教程

    本教程将带你快速入门 Swift,通过 "Hello, World!" 程序开始,逐步深入到语言的核心概念。 在 Swift 中,打印 "Hello, World!" 的简单程序如下: ```swift println("hello, world") ``` 与许多其他编程语言类似...

    简单介绍Python的轻便web框架Bottle

    from bottle import route, run@route('/hello')def hello(): return "Hello World!"run() # This starts the HTTP server 运行这个程序,访问http://localhost:8080/hello将会在浏览器里看到 “Hello World!”. ...

    浅谈Python使用Bottle来提供一个简单的web服务

    介绍 今天有个不正经的需求,就是要快速做一个restful api的性能测试,要求测试在海量作业数据的情况下客户端分页获取所有作业的性能。因为只是一个小的的测试工作... return "Hello World!" run(host='0.0.0.0', port=

    bottle文档

    这段代码定义了一个简单的路由,该路由会响应形如 `/hello/world` 的 URL 并返回一个 HTML 字符串,其中包含传入的名字。 ##### 1.2 配置 (DRAFT) 虽然这部分文档标有“草稿”标签,但这里我们可以推测一些基本...

Global site tag (gtag.js) - Google Analytics