-
Notifications
You must be signed in to change notification settings - Fork 17
/
README.txt
35 lines (21 loc) · 981 Bytes
/
README.txt
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
Welcome to Tipfy!
=================
Tipfy is a small but powerful framework designed specifically for Google
App Engine. It is a lot like webapp::
from tipfy import RequestHandler, Response
class HelloWorldHandler(RequestHandler):
def get(self):
return Response('Hello, World!')
...but offers a lot of features (own authentication, sessions, i18n etc) and
other goodies that webapp misses. Everything in a modular, lightweight way,
tuned for App Engine. You use only what you need, when you need.
Read the documentation to learn more about it:
http://www.tipfy.org/docs
For questions and comments, join our discussion group:
http://groups.google.com/group/tipfy
And if you have any issues, open a ticket at Google Code:
http://code.google.com/p/tipfy/
Installation
============
Read the instructions in `project/README.txt` or for a more detailed
description see `installation instructions <http://www.tipfy.org/wiki/guide/installation/>`_.