1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
#
# __init__.py
# ooliteConsoleServer
#
# Created by Jens Ayton on 2007-11-29.
# Copyright (c) 2007 Jens Ayton. All rights reserved.
#
"""
Module to handle details of communicating with Oolite.
"""
try:
import twisted
except ImportError:
raise ImportError("ooliteConsoleServer requires Twisted (http://twistedmatrix.com/)")
try:
import plistlib
except ImportError:
raise ImportError("ooliteConsoleServer requires plistlib")
from _protocol import defaultPort as defaultOoliteConsolePort
from OoliteDebugConsoleProtocol import OoliteDebugConsoleProtocol
__author__ = "Jens Ayton <jens@ayton.se>"
__version__ = "1.0"
__all__ = ["PropertyListPacketProtocol", "OoliteDebugConsoleProtocol", "defaultOoliteConsolePort"]
|