forked from prompt-toolkit/ptpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_ptpython.py
More file actions
65 lines (51 loc) · 1.82 KB
/
run_ptpython.py
File metadata and controls
65 lines (51 loc) · 1.82 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
"""
ptpython: Interactive Python shell.
Usage:
ptpython [ --vi ] [ --history=<filename> ] [ --no-colors ]
[ --autocompletion=<type> ] [ --always-multiline ]
[ --interactive=<filename> ] [--] [ <file> <arg>... ]
ptpython -h | --help
Options:
--vi : Use Vi keybindings instead of Emacs bindings.
--history=<filename> : Path to history file.
--interactive=<filename> : Start interactive shell after executing this file.
Other environment variables:
PYTHONSTARTUP: file executed on interactive startup (no default)
"""
from __future__ import absolute_import, unicode_literals
import docopt
import os
import six
import sys
from ptpython.repl import embed
def run():
a = docopt.docopt(__doc__)
vi_mode = bool(a['--vi'])
no_colors = bool(a['--no-colors'])
# Create globals/locals dict.
globals_, locals_ = {}, {}
# Log history
if a['--history']:
history_filename = os.path.expanduser(a['--history'])
else:
history_filename = os.path.expanduser('~/.ptpython_history')
# Startup path
startup_paths = []
if 'PYTHONSTARTUP' in os.environ:
startup_paths.append(os.environ['PYTHONSTARTUP'])
# --interactive
if a['--interactive']:
startup_paths.append(a['--interactive'])
# Add the current directory to `sys.path`.
sys.path.append('.')
# When a file has been given, run that, otherwise start the shell.
if a['<file>']:
sys.argv = [a['<file>']] + a['<arg>']
six.exec_(compile(open(a['<file>'], "rb").read(), a['<file>'], 'exec'))
else:
# Run interactive shell.
embed(globals_, locals_, vi_mode=vi_mode, history_filename=history_filename,
no_colors=no_colors, startup_paths=startup_paths)
if __name__ == '__main__':
run()