All Projects → salamer → Jolla

salamer / Jolla

Licence: apache-2.0
Python Web Framework

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Jolla

Resty
Super easy REST API framework for Scala
Stars: ✭ 65 (-50.76%)
Mutual labels:  webframework
Twig
Twig - less is more's web server for golang
Stars: ✭ 98 (-25.76%)
Mutual labels:  webframework
Raxx kit
Get started with Raxx + Elixir
Stars: ✭ 120 (-9.09%)
Mutual labels:  webframework
Wassm
Web framework for x86_64 nasm
Stars: ✭ 71 (-46.21%)
Mutual labels:  webframework
Tinyhttp
🦄 0-legacy, tiny & fast web framework as a replacement of Express
Stars: ✭ 1,259 (+853.79%)
Mutual labels:  webframework
Luna
Yet another web framework—this time in modern C++!
Stars: ✭ 99 (-25%)
Mutual labels:  webframework
Awesome Wicket
A curated list of awesome projects powered by Apache Wicket
Stars: ✭ 56 (-57.58%)
Mutual labels:  webframework
Nim websitecreator
Nim fullstack website framework - deploy a website within minutes
Stars: ✭ 124 (-6.06%)
Mutual labels:  webframework
Jooby
The modular web framework for Java and Kotlin
Stars: ✭ 1,309 (+891.67%)
Mutual labels:  webframework
Bingo
简洁优雅的 Go Web 框架(暂不更新,预计一年后继续更新)
Stars: ✭ 119 (-9.85%)
Mutual labels:  webframework
Vox
Simple and lightweight Go web framework inspired by koa
Stars: ✭ 74 (-43.94%)
Mutual labels:  webframework
Utopian
A web framework for Common Lisp never finished.
Stars: ✭ 84 (-36.36%)
Mutual labels:  webframework
Go Web Framework Benchmark
⚡ Go web framework benchmark
Stars: ✭ 1,601 (+1112.88%)
Mutual labels:  webframework
Kelp
A web framework light, yet rich in nutrients.
Stars: ✭ 66 (-50%)
Mutual labels:  webframework
Rapidoid
Rapidoid - Extremely Fast, Simple and Powerful Java Web Framework and HTTP Server!
Stars: ✭ 1,571 (+1090.15%)
Mutual labels:  webframework
Searchlight.jl
ORM layer for Genie.jl, the highly productive Julia web framework
Stars: ✭ 65 (-50.76%)
Mutual labels:  webframework
Dotweb
Simple and easy go web micro framework
Stars: ✭ 1,354 (+925.76%)
Mutual labels:  webframework
App Turbo
A framework based on tornado for easier development, scaling up and maintenance
Stars: ✭ 131 (-0.76%)
Mutual labels:  webframework
Masonite
The Modern And Developer Centric Python Web Framework. Be sure to read the documentation and join the Slack channel questions: http://slack.masoniteproject.com
Stars: ✭ 1,681 (+1173.48%)
Mutual labels:  webframework
Nim Basolato
An asynchronous fullstack web framework for Nim.
Stars: ✭ 111 (-15.91%)
Mutual labels:  webframework

pic

Jolla

jolla is a pure API server framework,and it is based on the gevent.

When I wrote Jolla,what I want to do is a high performance API server for you to simply obey its short rule,and get your calculation result fast be sent to browser or mobile for your service.so I made Jolla as simple as possible.

Hope you guys like it.

INSTALL

pip install jolla

DOCUMENT

wanna know more,please click read more

the Tutorial and documentation is 中文版 English edition

QUICKSTART

create a app.py,and write dowm:

from jolla import server,render,render_json

def index(request):
    return render('index.html')

def data(request):
    data = {'data': request['id']}
    return render_json(data)

class app(server.WebApp):
    urls = [
        (r'/', index),
        (r'/data/<id>', data),
    ]

if __name__ == '__main__':
    server = server.jolla_server(app)
    server.run_server()

and then,run:

python app.py

and open the http://127.0.0.1:8000 on your browser

you will see the magic happen!

LICENSE

Copyright © 2016 by Aljun

Under Apache license : http://www.apache.org/licenses/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].