1 ;;; ob-python.el --- org-babel functions for python evaluation
3 ;; Copyright (C) 2009-2013 Free Software Foundation, Inc.
5 ;; Authors: Eric Schulte
7 ;; Keywords: literate programming, reproducible research
8 ;; Homepage: http://orgmode.org
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; Org-Babel support for evaluating python source code.
31 (eval-when-compile (require 'cl
))
33 (declare-function org-remove-indentation
"org" )
34 (declare-function py-shell
"ext:python-mode" (&optional argprompt
))
35 (declare-function py-toggle-shells
"ext:python-mode" (arg))
36 (declare-function run-python
"ext:python" (cmd &optional dedicated show
))
38 (defvar org-babel-tangle-lang-exts
)
39 (add-to-list 'org-babel-tangle-lang-exts
'("python" .
"py"))
41 (defvar org-babel-default-header-args
:python
'())
43 (defcustom org-babel-python-command
"python"
44 "Name of the command for executing Python code."
46 :package-version
'(Org .
"8.0")
50 (defcustom org-babel-python-mode
51 (if (or (featurep 'xemacs
) (featurep 'python-mode
)) 'python-mode
'python
)
52 "Preferred python mode for use in running python interactively.
53 This will typically be either 'python or 'python-mode."
56 :package-version
'(Org .
"8.0")
59 (defvar org-src-preserve-indentation
)
61 (defcustom org-babel-python-hline-to
"None"
62 "Replace hlines in incoming tables with this when translating to python."
65 :package-version
'(Org .
"8.0")
68 (defcustom org-babel-python-None-to
'hline
69 "Replace 'None' in python tables with this before returning."
72 :package-version
'(Org .
"8.0")
75 (defun org-babel-execute:python
(body params
)
76 "Execute a block of Python code with Babel.
77 This function is called by `org-babel-execute-src-block'."
78 (let* ((session (org-babel-python-initiate-session
79 (cdr (assoc :session params
))))
80 (result-params (cdr (assoc :result-params params
)))
81 (result-type (cdr (assoc :result-type params
)))
82 (return-val (when (and (eq result-type
'value
) (not session
))
83 (cdr (assoc :return params
))))
84 (preamble (cdr (assoc :preamble params
)))
86 (org-babel-expand-body:generic
87 (concat body
(if return-val
(format "\nreturn %s" return-val
) ""))
88 params
(org-babel-variable-assignments:python params
)))
89 (result (org-babel-python-evaluate
90 session full-body result-type result-params preamble
)))
91 (org-babel-reassemble-table
93 (org-babel-pick-name (cdr (assoc :colname-names params
))
94 (cdr (assoc :colnames params
)))
95 (org-babel-pick-name (cdr (assoc :rowname-names params
))
96 (cdr (assoc :rownames params
))))))
98 (defun org-babel-prep-session:python
(session params
)
99 "Prepare SESSION according to the header arguments in PARAMS.
100 VARS contains resolved variable references"
101 (let* ((session (org-babel-python-initiate-session session
))
103 (org-babel-variable-assignments:python params
)))
104 (org-babel-comint-in-buffer session
106 (end-of-line 1) (insert var
) (comint-send-input)
107 (org-babel-comint-wait-for-output session
)) var-lines
))
110 (defun org-babel-load-session:python
(session body params
)
111 "Load BODY into SESSION."
112 (save-window-excursion
113 (let ((buffer (org-babel-prep-session:python session params
)))
114 (with-current-buffer buffer
115 (goto-char (process-mark (get-buffer-process (current-buffer))))
116 (insert (org-babel-chomp body
)))
121 (defun org-babel-variable-assignments:python
(params)
122 "Return a list of Python statements assigning the block's variables."
127 (org-babel-python-var-to-python (cdr pair
))))
128 (mapcar #'cdr
(org-babel-get-header params
:var
))))
130 (defun org-babel-python-var-to-python (var)
131 "Convert an elisp value to a python variable.
132 Convert an elisp value, VAR, into a string of python source code
133 specifying a variable of the same value."
135 (concat "[" (mapconcat #'org-babel-python-var-to-python var
", ") "]")
136 (if (equal var
'hline
)
137 org-babel-python-hline-to
139 (if (and (stringp var
) (string-match "[\n\r]" var
)) "\"\"%S\"\"" "%S")
142 (defun org-babel-python-table-or-string (results)
143 "Convert RESULTS into an appropriate elisp value.
144 If the results look like a list or tuple, then convert them into an
145 Emacs-lisp table, otherwise return the results as a string."
148 (mapcar (lambda (el) (if (equal el
'None
)
149 org-babel-python-None-to el
))
152 (org-babel-script-escape results
)))
154 (defvar org-babel-python-buffers
'((:default .
"*Python*")))
156 (defun org-babel-python-session-buffer (session)
157 "Return the buffer associated with SESSION."
158 (cdr (assoc session org-babel-python-buffers
)))
160 (defun org-babel-python-with-earmufs (session)
161 (let ((name (if (stringp session
) session
(format "%s" session
))))
162 (if (and (string= "*" (substring name
0 1))
163 (string= "*" (substring name
(- (length name
) 1))))
165 (format "*%s*" name
))))
167 (defun org-babel-python-without-earmufs (session)
168 (let ((name (if (stringp session
) session
(format "%s" session
))))
169 (if (and (string= "*" (substring name
0 1))
170 (string= "*" (substring name
(- (length name
) 1))))
171 (substring name
1 (- (length name
) 1))
174 (defvar py-default-interpreter
)
175 (defun org-babel-python-initiate-session-by-key (&optional session
)
176 "Initiate a python session.
177 If there is not a current inferior-process-buffer in SESSION
178 then create. Return the initialized session."
179 (require org-babel-python-mode
)
180 (save-window-excursion
181 (let* ((session (if session
(intern session
) :default
))
182 (python-buffer (org-babel-python-session-buffer session
)))
184 ((and (eq 'python org-babel-python-mode
)
185 (fboundp 'run-python
)) ; python.el
186 (if (version< "24.1" emacs-version
)
188 (unless python-buffer
189 (setq python-buffer
(org-babel-python-with-earmufs session
)))
190 (let ((python-shell-buffer-name
191 (org-babel-python-without-earmufs python-buffer
)))
193 (if (member system-type
'(cygwin windows-nt ms-dos
))
194 (concat org-babel-python-command
" -i")
195 org-babel-python-command
))))
197 ((and (eq 'python-mode org-babel-python-mode
)
198 (fboundp 'py-shell
)) ; python-mode.el
199 ;; Make sure that py-which-bufname is initialized, as otherwise
200 ;; it will be overwritten the first time a Python buffer is
202 (py-toggle-shells py-default-interpreter
)
203 ;; `py-shell' creates a buffer whose name is the value of
204 ;; `py-which-bufname' with '*'s at the beginning and end
205 (let* ((bufname (if (and python-buffer
(buffer-live-p python-buffer
))
206 (replace-regexp-in-string ;; zap surrounding *
207 "^\\*\\([^*]+\\)\\*$" "\\1" python-buffer
)
208 (concat "Python-" (symbol-name session
))))
209 (py-which-bufname bufname
))
211 (setq python-buffer
(org-babel-python-with-earmufs bufname
))))
213 (error "No function available for running an inferior Python")))
214 (setq org-babel-python-buffers
215 (cons (cons session python-buffer
)
216 (assq-delete-all session org-babel-python-buffers
)))
219 (defun org-babel-python-initiate-session (&optional session params
)
220 "Create a session named SESSION according to PARAMS."
221 (unless (string= session
"none")
222 (org-babel-python-session-buffer
223 (org-babel-python-initiate-session-by-key session
))))
225 (defvar org-babel-python-eoe-indicator
"'org_babel_python_eoe'"
226 "A string to indicate that evaluation has completed.")
227 (defvar org-babel-python-wrapper-method
232 open('%s', 'w').write( str(main()) )")
233 (defvar org-babel-python-pp-wrapper-method
239 open('%s', 'w').write( pprint.pformat(main()) )")
241 (defun org-babel-python-evaluate
242 (session body
&optional result-type result-params preamble
)
243 "Evaluate BODY as Python code."
245 (org-babel-python-evaluate-session
246 session body result-type result-params
)
247 (org-babel-python-evaluate-external-process
248 body result-type result-params preamble
)))
250 (defun org-babel-python-evaluate-external-process
251 (body &optional result-type result-params preamble
)
252 "Evaluate BODY in external python process.
253 If RESULT-TYPE equals 'output then return standard output as a
254 string. If RESULT-TYPE equals 'value then return the value of the
255 last statement in BODY, as elisp."
257 (org-babel-result-cond result-params
259 (org-babel-python-table-or-string (org-babel-trim raw
))))
261 (output (org-babel-eval org-babel-python-command
262 (concat (if preamble
(concat preamble
"\n") "")
264 (value (let ((tmp-file (org-babel-temp-file "python-")))
266 org-babel-python-command
268 (if preamble
(concat preamble
"\n") "")
270 (if (member "pp" result-params
)
271 org-babel-python-pp-wrapper-method
272 org-babel-python-wrapper-method
)
274 (lambda (line) (format "\t%s" line
))
276 (org-remove-indentation
277 (org-babel-trim body
))
279 (org-babel-process-file-name tmp-file
'noquote
))))
280 (org-babel-eval-read-file tmp-file
))))))
282 (defun org-babel-python-evaluate-session
283 (session body
&optional result-type result-params
)
284 "Pass BODY to the Python process in SESSION.
285 If RESULT-TYPE equals 'output then return standard output as a
286 string. If RESULT-TYPE equals 'value then return the value of the
287 last statement in BODY, as elisp."
288 (let* ((send-wait (lambda () (comint-send-input nil t
) (sleep-for 0 5)))
293 (lambda (statement) (insert statement
) (funcall send-wait
))
297 (format "open('%s', 'w').write(pprint.pformat(_))"
298 (org-babel-process-file-name tmp-file
'noquote
)))
299 (list (format "open('%s', 'w').write(str(_))"
300 (org-babel-process-file-name tmp-file
'noquote
)))))))
301 (input-body (lambda (body)
302 (mapc (lambda (line) (insert line
) (funcall send-wait
))
303 (split-string body
"[\r\n]"))
304 (funcall send-wait
))))
306 (unless (string= (substring org-babel-python-eoe-indicator
1 -
1) results
)
307 (org-babel-result-cond result-params
309 (org-babel-python-table-or-string results
))))
315 (org-babel-comint-with-output
316 (session org-babel-python-eoe-indicator t body
)
317 (funcall input-body body
)
318 (funcall send-wait
) (funcall send-wait
)
319 (insert org-babel-python-eoe-indicator
)
323 (let ((tmp-file (org-babel-temp-file "python-")))
324 (org-babel-comint-with-output
325 (session org-babel-python-eoe-indicator nil body
)
326 (let ((comint-process-echoes nil
))
327 (funcall input-body body
)
328 (funcall dump-last-value tmp-file
(member "pp" result-params
))
329 (funcall send-wait
) (funcall send-wait
)
330 (insert org-babel-python-eoe-indicator
)
331 (funcall send-wait
)))
332 (org-babel-eval-read-file tmp-file
)))))))
334 (defun org-babel-python-read-string (string)
335 "Strip 's from around Python string."
336 (if (string-match "^'\\([^\000]+\\)'$" string
)
337 (match-string 1 string
)
344 ;;; ob-python.el ends here