Skip to main content

kpages is helper for you web app ,active on tornado, pymongo,redis

Project description

kpages
======

kpages is mini helper for tornado,Contains the address routing management,tornado and app config management, mongodb, redis connection management and other functions; these things can help you quickly build a web application.

router
------

restful/index.py(add @url to class , kpages will route url to this handler)
---------------------------------------------------------------------------

from kpages import url

@url(r'/',0)
@url(r'/home',2)
class HomeHandler(RequestHandler):
def get(self):
self.write('hello word')


setting.py(config for tornado and you app, use __conf__.xxxx to get you config value )
--------------------------------------------------------------------------------------

ACTION_DIR = 'restful'
DEBUG = True
PORT= 8989


app.py
------
from kpages import run

if __name__ == '__main__':
run()


How to use mongo and redis context?
-----------------------------------
from kpages import get_context, LogicContext,mongo_conv

with LogicContext():
db = get_context().get_mongo()
cache = get_context().get_cache()
lst = list(db['table'].find().limit(10))
lst = mongo_conv(lst)

How to use context in hander?
-----------------------------
from kpages import ContextHandler

@url(r'/context/demo')
class DemoHandler(ContextHandler):
def get(self):
db = get_context().get_mongo('dbname')

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kpages-0.4.1.dev.tar.gz (5.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page