Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Rpyc/__init__.py
blob: 6a495efb7d0ad176d07e2ff1b7d80b89ca7ce31e (plain)
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
"""
RPyC -- Remote Python Call
http://rpyc.sourceforge.net
by Tomer Filiba (tomerfiliba at gmail dot com)
"""
import sys
from Lib import rpyc_excepthook
from Utils import *


#
# API
#
__all__ = [
    # Factories
    "SocketConnection", "PipeConnection", "SecSocketConnection", "Async",
    # Builtins
    "dir", "getattr", "hasattr", "reload", "help", "isinstance", "issubclass",
    # Helpers
    "obtain", "deliver", "isproxy", "getconn",
    # Files
    "upload", "download",
    # Discovery
    "discover_servers",
]

__version__ = (2, 60)


#
# install custom exception hook
#
sys.excepthook = rpyc_excepthook