1
我對Python有一些n00b,並且正在處理一個小項目。這是我在SRC代碼/ sock.py在Python中調用的方法
import socket
import config
class Server(socket.socket):
def __init__(self):
socket.socket.__init__(self, socket.AF_INET, socket.SOCK_STREAM)
def start(self):
self.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
self.bind((config.bind_host, config.bind_port))
self.listen(5)
while True:
pass
和我的代碼在start.py
import src
Socket = src.sock
Socket.Server()
Socket.Server.start
但服務器似乎並沒有首發。 :(
任何幫助,將不勝感激