AttributeError:'_socketobject'对象没有属性'bind'

时间:2013-07-29 08:36:32

标签: python sockets

这是我的代码:

import sae
import socket, sys
host = ''
port = 5005
def app(environ, start_response):
    status = '200 OK'
    response_headers = [('Content-type', 'text/plain')]
    start_response(status, response_headers)
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    s.bind((host, port))
    s.listen(2)
    while 1:
        client, addr = s.accept();
        print("Got connection from ", addr);
        while 1:
            print("the word you want to send:")
            buf = sys.stdin.readline().strip()
            if not buf:
                break
            client.send(bytes(buf, 'UTF-8'))
            data = client.recv(1024);
            if data:
                print(data)
    return ['Hello, world!']

application = sae.create_wsgi_app(app)

但是我收到的属性错误说:

Traceback (most recent call last):
  File "/usr/local/sae/python/lib/python2.7/site-packages/sae/__init__.py", line 18, in
   new_app
    return app(environ, start_response)
  File "/data1/www/htdocs/850/love2note/1/index.wsgi", line 11, in app
    s.bind((host, port))
AttributeError: '_socketobject' object has no attribute 'bind'

我真的不明白我需要做些什么来解决这个问题。如果有人能帮助我,我将非常感激。

1 个答案:

答案 0 :(得分:0)

import sae你的意思是Sina App Engine

如果为True:   SAE不允许绑定。 API