Skip to main content
PyCon US is happening May 14th-22nd in Pittsburgh, PA USA.  Learn more

A Web/WSGI micro-framework

Project description

The fresco web framework is:

  • Fast, simple and powerful, with sophisticated URL routing, request and response objects.

  • Lightweight and open to integration: you pick the templating and database libraries you want.

  • WSGI compliant: easy integration with your choice of web server, apps and middleware.

A minimal fresco web framework application:

from fresco import FrescoApp, GET, Response

def helloworld():
    return Response("<h1>Hello World!</h1>")

app = FrescoApp()
app.route('/', GET, helloworld)

Read the fresco web framework documentation for more about the framework, or visit the source repo.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page