Подключение к PostgreSQL в файле wsgi - PullRequest
0 голосов
/ 12 октября 2018

Я столкнулся с ошибкой сервера 500 при попытке подключиться к PostgreSQL из файла wsgi с помощью psycopg2.

import psycopg2

def application(environ, start_response):

try:
    conn = psycopg2.connect("database = testdb, user = postgres, password = secret")
execept:
    print "I am unable to connect to the database"

status = '200 OK'
output = 'Hello Udacity, Robert!'

response_headers = [('Content-type', 'text/plain'), ('Content-Length', str(len(output)))]
start_response(status, response_headers)

return [output]
...