1 ;;; ob-python.el --- Babel Functions for Python -*- lexical-binding: t; -*-
3 ;; Copyright (C) 2009-2017 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.
32 (declare-function org-remove-indentation
"org" )
33 (declare-function org-trim
"org" (s &optional keep-lead
))
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" (&optional cmd 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 (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 (defcustom org-babel-python-hline-to
"None"
60 "Replace hlines in incoming tables with this when translating to python."
63 :package-version
'(Org .
"8.0")
66 (defcustom org-babel-python-None-to
'hline
67 "Replace `None' in python tables with this before returning."
70 :package-version
'(Org .
"8.0")
73 (defun org-babel-execute:python
(body params
)
74 "Execute a block of Python code with Babel.
75 This function is called by `org-babel-execute-src-block'."
76 (let* ((org-babel-python-command
77 (or (cdr (assq :python params
))
78 org-babel-python-command
))
79 (session (org-babel-python-initiate-session
80 (cdr (assq :session params
))))
81 (result-params (cdr (assq :result-params params
)))
82 (result-type (cdr (assq :result-type params
)))
83 (return-val (when (and (eq result-type
'value
) (not session
))
84 (cdr (assq :return params
))))
85 (preamble (cdr (assq :preamble params
)))
87 (org-babel-expand-body:generic
88 (concat body
(if return-val
(format "\nreturn %s" return-val
) ""))
89 params
(org-babel-variable-assignments:python params
)))
90 (result (org-babel-python-evaluate
91 session full-body result-type result-params preamble
)))
92 (org-babel-reassemble-table
94 (org-babel-pick-name (cdr (assq :colname-names params
))
95 (cdr (assq :colnames params
)))
96 (org-babel-pick-name (cdr (assq :rowname-names params
))
97 (cdr (assq :rownames params
))))))
99 (defun org-babel-prep-session:python
(session params
)
100 "Prepare SESSION according to the header arguments in PARAMS.
101 VARS contains resolved variable references"
102 (let* ((session (org-babel-python-initiate-session session
))
104 (org-babel-variable-assignments:python params
)))
105 (org-babel-comint-in-buffer session
107 (end-of-line 1) (insert var
) (comint-send-input)
108 (org-babel-comint-wait-for-output session
)) var-lines
))
111 (defun org-babel-load-session:python
(session body params
)
112 "Load BODY into SESSION."
113 (save-window-excursion
114 (let ((buffer (org-babel-prep-session:python session params
)))
115 (with-current-buffer buffer
116 (goto-char (process-mark (get-buffer-process (current-buffer))))
117 (insert (org-babel-chomp body
)))
122 (defun org-babel-variable-assignments:python
(params)
123 "Return a list of Python statements assigning the block's variables."
128 (org-babel-python-var-to-python (cdr pair
))))
129 (org-babel--get-vars params
)))
131 (defun org-babel-python-var-to-python (var)
132 "Convert an elisp value to a python variable.
133 Convert an elisp value, VAR, into a string of python source code
134 specifying a variable of the same value."
136 (concat "[" (mapconcat #'org-babel-python-var-to-python var
", ") "]")
138 org-babel-python-hline-to
140 (if (and (stringp var
) (string-match "[\n\r]" var
)) "\"\"%S\"\"" "%S")
141 (if (stringp var
) (substring-no-properties var
) var
)))))
143 (defun org-babel-python-table-or-string (results)
144 "Convert RESULTS into an appropriate elisp value.
145 If the results look like a list or tuple, then convert them into an
146 Emacs-lisp table, otherwise return the results as a string."
147 (let ((res (org-babel-script-escape results
)))
149 (mapcar (lambda (el) (if (eq el
'None
)
150 org-babel-python-None-to el
))
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-earmuffs (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-earmuffs (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 (defvar py-which-bufname
)
176 (defvar python-shell-buffer-name
)
177 (defun org-babel-python-initiate-session-by-key (&optional session
)
178 "Initiate a python session.
179 If there is not a current inferior-process-buffer in SESSION
180 then create. Return the initialized session."
181 (require org-babel-python-mode
)
182 (save-window-excursion
183 (let* ((session (if session
(intern session
) :default
))
184 (python-buffer (org-babel-python-session-buffer session
))
185 (cmd (if (member system-type
'(cygwin windows-nt ms-dos
))
186 (concat org-babel-python-command
" -i")
187 org-babel-python-command
)))
189 ((and (eq 'python org-babel-python-mode
)
190 (fboundp 'run-python
)) ; python.el
191 (if (not (version< "24.1" emacs-version
))
193 (unless python-buffer
194 (setq python-buffer
(org-babel-python-with-earmuffs session
)))
195 (let ((python-shell-buffer-name
196 (org-babel-python-without-earmuffs python-buffer
)))
198 ((and (eq 'python-mode org-babel-python-mode
)
199 (fboundp 'py-shell
)) ; python-mode.el
200 ;; Make sure that py-which-bufname is initialized, as otherwise
201 ;; it will be overwritten the first time a Python buffer is
203 (py-toggle-shells py-default-interpreter
)
204 ;; `py-shell' creates a buffer whose name is the value of
205 ;; `py-which-bufname' with '*'s at the beginning and end
206 (let* ((bufname (if (and python-buffer
(buffer-live-p python-buffer
))
207 (replace-regexp-in-string ;; zap surrounding *
208 "^\\*\\([^*]+\\)\\*$" "\\1" python-buffer
)
209 (concat "Python-" (symbol-name session
))))
210 (py-which-bufname bufname
))
212 (setq python-buffer
(org-babel-python-with-earmuffs bufname
))))
214 (error "No function available for running an inferior Python")))
215 (setq org-babel-python-buffers
216 (cons (cons session python-buffer
)
217 (assq-delete-all session org-babel-python-buffers
)))
220 (defun org-babel-python-initiate-session (&optional session _params
)
221 "Create a session named SESSION according to PARAMS."
222 (unless (string= session
"none")
223 (org-babel-python-session-buffer
224 (org-babel-python-initiate-session-by-key session
))))
226 (defvar org-babel-python-eoe-indicator
"'org_babel_python_eoe'"
227 "A string to indicate that evaluation has completed.")
228 (defconst org-babel-python-wrapper-method
233 open('%s', 'w').write( str(main()) )")
234 (defconst org-babel-python-pp-wrapper-method
240 open('%s', 'w').write( pprint.pformat(main()) )")
242 (defun org-babel-python-evaluate
243 (session body
&optional result-type result-params preamble
)
244 "Evaluate BODY as Python code."
246 (org-babel-python-evaluate-session
247 session body result-type result-params
)
248 (org-babel-python-evaluate-external-process
249 body result-type result-params preamble
)))
251 (defun org-babel-python-evaluate-external-process
252 (body &optional result-type result-params preamble
)
253 "Evaluate BODY in external python process.
254 If RESULT-TYPE equals `output' then return standard output as a
255 string. If RESULT-TYPE equals `value' then return the value of the
256 last statement in BODY, as elisp."
259 (`output
(org-babel-eval org-babel-python-command
260 (concat (if preamble
(concat preamble
"\n"))
262 (`value
(let ((tmp-file (org-babel-temp-file "python-")))
264 org-babel-python-command
266 (if preamble
(concat preamble
"\n") "")
268 (if (member "pp" result-params
)
269 org-babel-python-pp-wrapper-method
270 org-babel-python-wrapper-method
)
272 (lambda (line) (format "\t%s" line
))
273 (split-string (org-remove-indentation (org-trim body
))
276 (org-babel-process-file-name tmp-file
'noquote
))))
277 (org-babel-eval-read-file tmp-file
))))))
278 (org-babel-result-cond result-params
280 (org-babel-python-table-or-string (org-trim raw
)))))
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
302 (input-body (lambda (body)
303 (mapc (lambda (line) (insert line
) (funcall send-wait
))
304 (split-string body
"[\r\n]"))
305 (funcall send-wait
)))
312 (org-babel-comint-with-output
313 (session org-babel-python-eoe-indicator t body
)
314 (funcall input-body body
)
315 (funcall send-wait
) (funcall send-wait
)
316 (insert org-babel-python-eoe-indicator
)
320 (let ((tmp-file (org-babel-temp-file "python-")))
321 (org-babel-comint-with-output
322 (session org-babel-python-eoe-indicator nil body
)
323 (let ((comint-process-echoes nil
))
324 (funcall input-body body
)
325 (funcall dump-last-value tmp-file
326 (member "pp" result-params
))
327 (funcall send-wait
) (funcall send-wait
)
328 (insert org-babel-python-eoe-indicator
)
329 (funcall send-wait
)))
330 (org-babel-eval-read-file tmp-file
))))))
331 (unless (string= (substring org-babel-python-eoe-indicator
1 -
1) results
)
332 (org-babel-result-cond result-params
334 (org-babel-python-table-or-string results
)))))
336 (defun org-babel-python-read-string (string)
337 "Strip \\='s from around Python string."
338 (if (and (string-prefix-p "'" string
)
339 (string-suffix-p "'" string
))
340 (substring string
1 -
1)
347 ;;; ob-python.el ends here