appier
Appier Framework
What it is and what it does
Appier is a web framework that lets you build HTTP applications by defining handler methods as class members and decorating them with route specifications. It sits between minimal frameworks and full-featured ones—you get request routing, HTTP method handling, and basic app lifecycle management without the overhead of larger frameworks.
The framework uses a simple decorator pattern (@appier.route) to bind URLs and HTTP methods to handler functions, then serves them via a built-in WSGI server. It has no external runtime dependencies, making it quick to install and deploy. The trade-off is that you're responsible for most application logic—templating, database integration, and middleware are not built in.
Use it for:
- Build simple REST APIs or microservices that need HTTP routing without a heavy framework
- Prototype web applications quickly when you want decorator-based routing without framework complexity
- Create WSGI-compatible applications for deployment in standard Python hosting environments
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Appier is a lightweight Python web framework for building HTTP applications with minimal boilerplate, using decorators and class-based routing.
Yes, if you need a minimal web framework with zero dependencies and straightforward routing. The permissive license and active maintenance make it safe to use. Not recommended if you need built-in templating, ORM, or middleware—reach for a larger framework instead.
Install
appier on PyPI
pip
pip install appieruv
uv add appierpoetry
poetry add appierInstalling appier
Before you install
Installation is straightforward with no runtime dependencies. The package is marked active with a recent release.
License in practice
Licensed under Apache License, Version 2.0 (permissive), allowing commercial and private use with minimal restrictions.
Quickstart
pip install appier
import appier
class HelloApp(appier.App):
@appier.route("/", "GET")
def hello(self):
return "Hello World"
HelloApp().serve()
Verify before relying
- Current state of repository maintenance and community activity beyond release date
- Whether Python 2.6–3.0 support claims are actively maintained or legacy classifiers
Package facts
| License | Apache License, Version 2.0 (permissive) |
| Python support | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | actively maintained — 75 days since the last release |
| First released | |
| Downloads | 4,424,390/month — #2,306 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: appier-1.46.0-py2.py3-none-any.whl
Keywords: appier, framework, web, json, wsgi
Tags
More Utilities packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
charset-normalizerDetects and normalizes text encoding from…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
pluggyPluggy provides a plugin system that lets you…
permissive · top 100 on PyPI
PygmentsPygments is a syntax highlighter that colorizes…
permissive · top 100 on PyPI
sixSix provides utility functions to write Python…
permissive · top 100 on PyPI
google_apiProvides a Python wrapper for interacting with…
permissive · top 5,000 on PyPI
web-pyweb.py is a lightweight Python web framework…
permissive · top 15,000 on PyPI
pecanPecan is a WSGI web framework that routes HTTP…
permissive · top 15,000 on PyPI
bottleBottle is a lightweight WSGI microframework for…
permissive · top 5,000 on PyPI
FlaskFlask is a lightweight WSGI web application…
permissive · top 1,000 on PyPI
pyramidPyramid is a Python web framework for building…
permissive · top 5,000 on PyPI
toolA compact modular framework for building WSGI…
copyleft · top 15,000 on PyPI
webapp2A lightweight Python web framework designed for…
permissive · top 15,000 on PyPI
CherryPyCherryPy is an object-oriented HTTP framework…
permissive · top 5,000 on PyPI
hughug is a Python framework for building REST…
permissive · top 15,000 on PyPI