Title Text

WSGI

Web Server Gateway Interface

def application(environ, start_response):
    result = RPC(environ).get_result()
    status, header, value = result.values()
    start_response(status, headers)
    return [value] 

Batteries included

  • Django ORM,
  • Middlewares,
  • Authentication,
  • HTTP libraries,
  • Multi-site support,
  • i18n,
  • Django Admin,
  • template engine
  • security in the box

PEP 333

venv

python3 -m venv /path/to/virtual/environment

Lunch z pythonem

By Dominik Wronski

Lunch z pythonem

  • 424