App.py Documentation

A comprehensive guide to developing and using your Python web application

Getting Started

Installation

Show Instructions

Install App.py using pip:

pip install app.py

Requires Python 3.9+

Quick Start

Show Example ▼
from app import App

app = App(__name__)

@app.route('/')
def index():
  return "Hello, App.py!"

if __name__ == '__main__':
  app.run()