Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
epc_server.py | |
""" | |
from epc.server import EPCServer | |
from epc.server import ThreadingEPCServer | |
import threading | |
__version__ = "0.1" | |
def load_ipython_extension(ipython): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'epc) | |
(defvar py-epc nil) | |
(defun py-epc:connect (port) | |
(interactive "nEnter py-epc port : ") | |
(setq py-epc (epc:start-epc-debug port)) | |
) | |
(defun py-epc:run-cell-region (start end) | |
(interactive "r") |
NewerOlder