Description
weppy is a full-stack python web framework designed with simplicity in mind.
It takes some components from web2py and has a syntax inspired by Flask.
The aim of weppy is to be clearly understandable, easy to be learned and to be
used, so you can focus completely on your product's features:
weppy alternatives and similar packages
Based on the "Web Frameworks" category.
Alternatively, view weppy alternatives based on common mentions on social networks and blogs.
-
Tornado
Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. -
HS-Sanic
DISCONTINUED. Async Python 3.6+ web server/framework | Build fast. Run fast. [Moved to: https://github.com/sanic-org/sanic] -
web2py
Free and open source full-stack enterprise framework for agile development of secure database-driven web-based applications, written and programmable in Python. -
Masonite
The Modern And Developer Centric Python Web Framework. Be sure to read the documentation and join the Discord channel for questions: https://discord.gg/TwKeFahmPZ -
TurboGears
Python web framework with full-stack layer implemented on top of a microframework core with support for SQL DBMS, MongoDB and Pluggable Applications -
Websauna
Websauna is a full stack Python web framework for building web services and back offices with admin interface and sign up process -
django-jinja-knockout
Django datatables and widgets, both AJAX and traditional. Display-only ModelForms. ModelForms / inline formsets with AJAX submit and validation. Works with Django templates. -
domonic
Create HTML with python 3 using a standard DOM API. Includes a python port of JavaScript for interoperability and tons of other cool features. A fast prototyping library. -
tartiflette-aiohttp
tartiflette-aiohttp is a wrapper of aiohttp which includes the Tartiflette GraphQL Engine, do not hesitate to take a look of the Tartiflette project.
Judoscale - Save 47% on cloud hosting with autoscaling that just works

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of weppy or a related project?
Popular Comparisons
README
Emmett is a full-stack Python web framework designed with simplicity in mind.
The aim of Emmett is to be clearly understandable, easy to be learned and to be used, so you can focus completely on your product's features:
from emmett import App, request, response
from emmett.orm import Database, Model, Field
from emmett.tools import service, requires
class Task(Model):
name = Field.string()
is_completed = Field.bool(default=False)
app = App(__name__)
app.config.db.uri = "postgres://user:password@localhost/foo"
db = Database(app)
db.define_models(Task)
app.pipeline = [db.pipe]
def is_authenticated():
return request.headers["Api-Key"] == "foobar"
def not_authorized():
response.status = 401
return {'error': 'not authorized'}
@app.route(methods='get')
@service.json
@requires(is_authenticated, otherwise=not_authorized)
async def todo():
page = request.query_params.page or 1
tasks = Task.where(
lambda t: t.is_completed == False
).select(paginate=(page, 20))
return {'tasks': tasks}
Documentation
The documentation is available at https://emmett.sh/docs. The sources are available under the docs folder.
Examples
The bloggy example described in the Tutorial is available under the examples folder.
Status of the project
Emmett is production ready and is compatible with Python 3.7 and above versions.
Emmett follows a semantic versioning for its releases, with a {major}.{minor}.{patch}
scheme for versions numbers, where:
- major versions might introduce breaking changes
- minor versions usually introduce new features and might introduce deprecations
- patch versions only introduce bug fixes
Deprecations are kept in place for at least 3 minor versions, and the drop is always communicated in the upgrade guide.
How can I help?
We would be very glad if you contributed to the project in one or all of these ways:
- Talking about Emmett with friends and on the web
- Adding issues and features requests here on GitHub
- Participating in discussions about new features and issues here on GitHub
- Improving the documentation
- Forking the project and writing beautiful code
License
Emmmett is released under the BSD License.
However, due to original license limitations, some components are included in Emmett under their original licenses. Please check the LICENSE file for more details.
*Note that all licence references and agreements mentioned in the weppy README section above
are relevant to that project's source code only.