forked from lowks/pythonpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__main__.py
More file actions
executable file
·208 lines (182 loc) · 7.29 KB
/
__main__.py
File metadata and controls
executable file
·208 lines (182 loc) · 7.29 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
#!/usr/bin/env python2
from __future__ import (unicode_literals, absolute_import,
print_function, division)
import sys
if sys.version_info.major == 2:
reload(sys)
sys.setdefaultencoding('utf-8')
from signal import signal, SIGPIPE, SIG_DFL
signal(SIGPIPE,SIG_DFL)
import argparse
import json
import re
from collections import Iterable
try:
from . import __version__
except (ImportError, ValueError, SystemError):
__version__ = '???' # NOQA
__version_info__ = '''Pythonpy %s
Python %s''' % (__version__, sys.version.split(' ')[0])
def import_matches(query, prefix=''):
matches = set(re.findall(r"(%s[a-zA-Z_][a-zA-Z0-9_]*)\.?" % prefix, query))
for module_name in matches:
try:
module = __import__(module_name)
globals()[module_name] = module
import_matches(query, prefix='%s.' % module_name)
except ImportError as e:
pass
def lazy_imports(*args):
query = ' '.join([x for x in args if x])
import_matches(query)
def current_list(input):
return re.split(r'[^a-zA-Z0-9_\.]', input)
def inspect_source(obj):
import inspect
import pydoc
try:
pydoc.pager(''.join(inspect.getsourcelines(obj)[0]))
return None
except:
return help(obj)
parser = argparse.ArgumentParser(
formatter_class=argparse.RawDescriptionHelpFormatter)
parser.add_argument('expression', nargs='?', default='None')
parser.add_argument('-x', dest='lines_of_stdin', action='store_const',
const=True, default=False,
help='treat each row as x')
parser.add_argument('-fx', dest='filter_result', action='store_const',
const=True, default=False,
help='keep rows satisfying condition(x)')
parser.add_argument('-l', dest='list_of_stdin', action='store_const',
const=True, default=False,
help='treat list of stdin as l')
parser.add_argument('-c', dest='pre_cmd', help='run code before expression')
parser.add_argument('-C', dest='post_cmd', help='run code after expression')
parser.add_argument('-V', '--version', action='version', version=__version_info__, help='version info')
parser.add_argument('--ji', '--json_input',
dest='json_input', action='store_const',
const=True, default=False,
help='pre-process each row with json.loads(row)')
parser.add_argument('--jo', '--json_output',
dest='json_output', action='store_const',
const=True, default=False,
help='post-process each row with json.dumps(row)')
parser.add_argument('--si', '--split_input', dest='input_delimiter',
help='pre-process each row with re.split(delimiter, row)')
parser.add_argument('--so', '--split_output', dest='output_delimiter',
help='post-process each row with delimiter.join(row)')
parser.add_argument('--i', '--ignore_exceptions',
dest='ignore_exceptions', action='store_const',
const=True, default=False,
help='Wrap try-except-pass around each row')
try:
args = parser.parse_args()
if sum([args.list_of_stdin, args.lines_of_stdin, args.filter_result]) > 1:
sys.stderr.write('Pythonpy accepts at most one of [-x, -fx, -l] flags\n')
sys.exit()
if args.json_input:
def loads(str_):
try:
return json.loads(str_.rstrip())
except Exception as ex:
if args.ignore_exceptions:
pass
else:
if sum(1 for x in sys.stdin) > 0:
sys.stderr.write(
"""Hint: --ji requies oneline json strings. Use py 'json.load(sys.stdin)'
if you have a multi-line json file and not a file with multiple lines of json.
""")
raise ex
stdin = (loads(x) for x in sys.stdin)
elif args.input_delimiter:
stdin = (re.split(args.input_delimiter, x.rstrip()) for x in sys.stdin)
else:
stdin = (x.rstrip() for x in sys.stdin)
if args.expression:
args.expression = args.expression.replace("`", "'")
if args.expression.startswith('?') or args.expression.endswith('?'):
final_atom = current_list(args.expression.rstrip('?'))[-1]
first_atom = current_list(args.expression.lstrip('?'))[0]
if args.expression.startswith('??'):
import inspect
args.expression = "inspect_source(%s)" % first_atom
elif args.expression.endswith('??'):
import inspect
args.expression = "inspect_source(%s)" % final_atom
elif args.expression.startswith('?'):
args.expression = 'help(%s)' % first_atom
else:
args.expression = 'help(%s)' % final_atom
if args.lines_of_stdin:
from itertools import islice
stdin = islice(stdin,1)
if args.pre_cmd:
args.pre_cmd = args.pre_cmd.replace("`", "'")
if args.post_cmd:
args.post_cmd = args.post_cmd.replace("`", "'")
lazy_imports(args.expression, args.pre_cmd, args.post_cmd)
if args.pre_cmd:
exec(args.pre_cmd)
def safe_eval(text, x):
try:
return eval(text)
except:
return None
if args.lines_of_stdin:
if args.ignore_exceptions:
result = (safe_eval(args.expression, x) for x in stdin)
else:
result = (eval(args.expression) for x in stdin)
elif args.filter_result:
if args.ignore_exceptions:
result = (x for x in stdin if safe_eval(args.expression, x))
else:
result = (x for x in stdin if eval(args.expression))
elif args.list_of_stdin:
l = list(stdin)
result = eval(args.expression)
else:
result = eval(args.expression)
def format(output):
if output is None:
return None
elif args.json_output:
return json.dumps(output)
elif args.output_delimiter:
return args.output_delimiter.join(output)
else:
return output
if isinstance(result, Iterable) and hasattr(result, '__iter__') and not isinstance(result, str):
for x in result:
formatted = format(x)
if formatted is not None:
try:
print(formatted)
except UnicodeEncodeError:
print(formatted.encode('utf-8'))
else:
formatted = format(result)
if formatted is not None:
try:
print(formatted)
except UnicodeEncodeError:
print(formatted.encode('utf-8'))
if args.post_cmd:
exec(args.post_cmd)
except Exception as ex:
import traceback
pyheader = 'File "{}"'.format(__file__)
exprheader = 'File "<string>"'
foundexpr = False
lines = traceback.format_exception(*sys.exc_info())
for line in lines:
if line.lstrip().startswith(pyheader):
continue
sys.stderr.write(line)
if not foundexpr and line.lstrip().startswith(exprheader) and not isinstance(ex, SyntaxError):
sys.stderr.write(' {}\n'.format(args.expression))
foundexpr = True
def main():
pass