File: PKG-INFO

package info (click to toggle)
flask 0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,232 kB
  • ctags: 493
  • sloc: python: 2,566; makefile: 130; pascal: 41; sql: 25
file content (57 lines) | stat: -rw-r--r-- 1,605 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Metadata-Version: 1.0
Name: Flask
Version: 0.6
Summary: A microframework based on Werkzeug, Jinja2 and good intentions
Home-page: http://github.com/mitsuhiko/flask/
Author: Armin Ronacher
Author-email: armin.ronacher@active-4.com
License: BSD
Description: 
        Flask
        -----
        
        Flask is a microframework for Python based on Werkzeug, Jinja 2 and good
        intentions. And before you ask: It's BSD licensed!
        
        Flask is Fun
        ````````````
        
        ::
        
        from flask import Flask
        app = Flask(__name__)
        
        @app.route("/")
        def hello():
        return "Hello World!"
        
        if __name__ == "__main__":
        app.run()
        
        And Easy to Setup
        `````````````````
        
        ::
        
        $ easy_install Flask
        $ python hello.py
        * Running on http://localhost:5000/
        
        Links
        `````
        
        * `website <http://flask.pocoo.org/>`_
        * `documentation <http://flask.pocoo.org/docs/>`_
        * `development version
        <http://github.com/mitsuhiko/flask/zipball/master#egg=Flask-dev>`_
        
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules