All Projects → gaojiuli → Xweb

gaojiuli / Xweb

Licence: mit
High performance async web framework.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Xweb

Tango
This is only a mirror and Moved to https://gitea.com/lunny/tango
Stars: ✭ 837 (+166.56%)
Mutual labels:  middleware, webframework
Silicon
A high performance, middleware oriented C++14 http web framework please use matt-42/lithium instead
Stars: ✭ 1,721 (+448.09%)
Mutual labels:  middleware, webframework
Chubbyphp Framework
A based PSR-15 microframework that also sets maximum flexibility with minimum complexity and easy replaceability of the individual components, but also of the framework.
Stars: ✭ 69 (-78.03%)
Mutual labels:  middleware, microframework
Muffin
Muffin is a fast, simple and asyncronous web-framework for Python 3
Stars: ✭ 538 (+71.34%)
Mutual labels:  asyncio, webframework
trellio
Python3 asyncio based microframework for microservice architecture
Stars: ✭ 19 (-93.95%)
Mutual labels:  asyncio, microframework
Lux
Asynchronous web toolkit for python - alpha
Stars: ✭ 20 (-93.63%)
Mutual labels:  asyncio, webframework
Dotweb
Simple and easy go web micro framework
Stars: ✭ 1,354 (+331.21%)
Mutual labels:  middleware, webframework
Twig
Twig - less is more's web server for golang
Stars: ✭ 98 (-68.79%)
Mutual labels:  middleware, webframework
Golf
⛳️ The Golf web framework
Stars: ✭ 248 (-21.02%)
Mutual labels:  middleware, webframework
Vkbottle
Homogenic! Customizable asynchronous VK API framework
Stars: ✭ 191 (-39.17%)
Mutual labels:  middleware, asyncio
Jooby
The modular web framework for Java and Kotlin
Stars: ✭ 1,309 (+316.88%)
Mutual labels:  webframework, microframework
waspy
WASP framework for Python
Stars: ✭ 43 (-86.31%)
Mutual labels:  asyncio, webframework
Tg2
Python web framework with full-stack layer implemented on top of a microframework core with support for MongoDB, Pluggable Applications and autogenerated Admin
Stars: ✭ 756 (+140.76%)
Mutual labels:  webframework, microframework
Zend Expressive
PSR-15 middleware in minutes!
Stars: ✭ 740 (+135.67%)
Mutual labels:  middleware, microframework
Webgo
A minimal framework to build web apps; with handler chaining, middleware support; and most of all standard library compliant HTTP handlers(i.e. http.HandlerFunc).
Stars: ✭ 165 (-47.45%)
Mutual labels:  middleware, webframework
tomodachi
💻 Microservice library / framework using Python's asyncio event loop with full support for HTTP + WebSockets, AWS SNS+SQS, RabbitMQ / AMQP, middleware, etc. Extendable for GraphQL, protobuf, gRPC, among other technologies.
Stars: ✭ 170 (-45.86%)
Mutual labels:  asyncio, microframework
polix
🚀 Node.js Web Framework
Stars: ✭ 32 (-89.81%)
Mutual labels:  middleware, webframework
Ring Json
Ring middleware for handling JSON
Stars: ✭ 290 (-7.64%)
Mutual labels:  middleware
Async Timeout
asyncio-compatible timeout class
Stars: ✭ 306 (-2.55%)
Mutual labels:  asyncio
Ring Defaults
A library to provide sensible Ring middleware defaults
Stars: ✭ 289 (-7.96%)
Mutual labels:  middleware

logo

Build License Pypi Python

High performance web framework.

Installation

pip install xweb

Usage

from xweb import App, RESTController


class IndexController(RESTController):
    async def get(self):
        self.ctx.body = {"Hello": "World"}


app = App()
app.routes = {
    '/': IndexController
}

app.listen()
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].