選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

9 行
268 B

  1. #!/usr/bin/python
  2. # -*- coding: utf-8; tab-width: 4; indent-tabs-mode: nil; -*-
  3. #
  4. # esempio minimo di controller WSGI
  5. #
  6. def application( environ, start_response ):
  7. start_response( '200 OK', [('content-type', 'text/html')] )
  8. return [ 'Greetings from pippero' ]