]> git.phdru.name Git - dotfiles.git/blob - lib/python/init.py
init.py: pass options '-F', '-R' and '-X' to 'less'
[dotfiles.git] / lib / python / init.py
1 # This is startup file for interactive python.
2 # It is not automatically loaded by python interpreter.
3 # To instruct the interpreter to load it insert the following commands
4 # into your .profile (use whatever syntax and initialization file
5 # is appropriate for your shell):
6 #
7 # PYTHONSTARTUP=$HOME/init.py  # or where you really put it
8 # export PYTHONSTARTUP
9
10
11 def init():
12     import __builtin__
13     import os
14     import sys
15
16     # readline/pyreadline
17
18     pyreadlinew32_startup = os.path.join(
19         sys.prefix, 'lib', 'site-packages',
20         'pyreadline', 'configuration', 'startup.py')
21
22     if os.path.exists(pyreadlinew32_startup):
23         execfile(pyreadlinew32_startup)
24
25     else:
26         # From Bruce Edge:
27         # https://mail.python.org/pipermail/python-list/2001-March/062888.html
28
29         try:
30             import rlcompleter  # noqa: need for completion
31             import readline
32             initfile = os.environ.get('INPUTRC') \
33                 or os.path.expanduser('~/.inputrc')
34             readline.read_init_file(initfile)
35
36             histfile = os.path.expanduser('~/.python-history')
37             try:
38                 readline.read_history_file(histfile)
39             except IOError:
40                 pass  # No such file
41
42             def savehist():
43                 histfilesize = os.environ.get('HISTFILESIZE') \
44                     or os.environ.get('HISTSIZE')
45                 if histfilesize:
46                     try:
47                         histfilesize = int(histfilesize)
48                     except ValueError:
49                         pass
50                     else:
51                         readline.set_history_length(histfilesize)
52                 readline.write_history_file(histfile)
53
54             import atexit
55             atexit.register(savehist)
56
57         except (ImportError, AttributeError):
58             # no readline or atexit, or readline doesn't have
59             # {read,write}_history_file - ignore the error
60             pass
61
62     # terminal
63
64     term = os.environ.get('TERM', '')
65     if 'linux' in term:
66         background = 'dark'
67     else:
68         background = os.environ.get('BACKGROUND', 'light').lower()
69
70     # From Randall Hopper:
71     # https://mail.python.org/pipermail/python-list/2001-March/112696.html
72
73     for _term in ['linux', 'rxvt', 'screen', 'term', 'vt100']:
74         if _term not in term:
75             continue
76
77         if background == 'dark':
78             ps1_color = '3'  # yellow
79             stdout_color = '7'  # bold white
80         else:
81             ps1_color = '4'  # blue
82             stdout_color = '0'  # bold black
83
84         sys.ps1 = '\001\033[3%sm\002>>>\001\033[0m\002 ' % ps1_color
85         sys.ps2 = '\001\033[1;32m\002...\001\033[0m\002 '  # bold green
86
87         # From Denis Otkidach
88
89         class ColoredFile:
90             def __init__(self, fp, begin,
91                          end='\033[0m'):  # reset all attributes
92                 self.__fp = fp
93                 self.__begin = begin
94                 self.__end = end
95
96             def write(self, s):
97                 self.__fp.write(self.__begin+s+self.__end)
98
99             def writelines(self, lines):
100                 map(self.write, lines)
101
102             def __getattr__(self, attr):
103                 return getattr(self.__fp, attr)
104
105         sys.stdout = ColoredFile(sys.stdout, '\033[1;3%sm' % stdout_color)
106         sys.stderr = ColoredFile(sys.stderr, '\033[31m')  # red
107
108         break
109
110     try:
111         import locale
112     except ImportError:
113         pass  # locale was not compiled
114     else:
115         try:
116             locale.setlocale(locale.LC_ALL, '')
117         except (ImportError, locale.Error):
118             pass  # no locale support or unsupported locale
119
120     # set displayhook and excepthook
121
122     from pprint import pprint
123     pager = os.environ.get("PAGER") or 'more'
124
125     # if your pager is 'less', options '-F' and '-R' must be passed to it,
126     # and option '-X' is very much recommended
127     if pager == 'less':
128         less = os.environ.get("LESS") or ''
129         for opt in 'X', 'R', 'F':
130             if opt not in less:
131                 less = opt + less
132         os.environ["LESS"] = less
133
134     class BasePager:
135         def write(self, value):
136             self.stdin.write(value)
137
138         def pprint(self, value):
139             pprint(value, stream=self.stdin)
140
141         def close(self):
142             self.stdin.close()
143
144     try:
145         from subprocess import Popen, PIPE
146     except ImportError:
147         class Pager(BasePager):
148             def __init__(self):
149                 self.pipe = Popen(pager, shell=True, stdin=PIPE)
150                 self.stdin = self.pipe.stdin
151
152             def close(self):
153                 BasePager.close(self)
154                 self.pipe.wait()
155     else:
156         class Pager(BasePager):
157             def __init__(self):
158                 self.stdin = os.popen(pager, 'w')
159
160     def displayhook(value):
161         if value is not None:
162             __builtin__._ = value
163         pager = Pager()
164         pager.pprint(value)
165         pager.close()
166
167     sys.displayhook = displayhook
168
169     from traceback import format_exception
170
171     def excepthook(etype, evalue, etraceback):
172         lines = format_exception(etype, evalue, etraceback)
173         pager = Pager()
174         for line in lines:
175             pager.write(
176                 '\033[31m' + line.rstrip('\n') + '\033[0m\n')  # red, reset
177         pager.close()
178
179     sys.excepthook = excepthook
180
181     # From Thomas Heller:
182     # https://mail.python.org/pipermail/python-list/2001-April/099020.html
183
184     # import pdb
185     #
186     # def info(*args):
187     #    pdb.pm()
188     # sys.excepthook = info
189
190     # utilities
191
192     # From: Paul Magwene:
193     # https://mail.python.org/pipermail/python-list/2001-March/086191.html
194     # With a lot of my fixes:
195
196     class DirLister:
197         def __getitem__(self, key):
198             s = os.listdir(os.curdir)
199             return s[key]
200
201         def __getslice__(self, i, j):
202             s = os.listdir(os.curdir)
203             return s[i:j]
204
205         def __repr__(self):
206             return str(os.listdir(os.curdir))
207
208         def __call__(self, path=None):
209             if path:
210                 path = os.path.expanduser(os.path.expandvars(path))
211             else:
212                 path = os.curdir
213             return os.listdir(path)
214
215     class DirChanger:
216         def __repr__(self):
217             self()
218             return os.getcwd()
219
220         def __call__(self, path=None):
221             path = os.path.expanduser(os.path.expandvars(path or '~'))
222             os.chdir(path)
223
224     __builtin__.ls = DirLister()
225     __builtin__.cd = DirChanger()
226
227     # print working directory
228
229     class Pwd:
230         def __repr__(self):
231             return os.getcwd()
232
233         def __call__(self):
234             return repr(self)
235
236     __builtin__.pwd = Pwd()
237
238     # exit REPL with 'exit', 'quit' or simple 'x'
239
240     class _Exit:
241         def __repr__(self):
242             sys.exit()
243
244         def __call__(self, msg=None):
245             sys.exit(msg)
246
247     __builtin__.x = _Exit()
248
249     # In Python 2.5+ exit and quit are objects
250     if isinstance(__builtin__.exit, str):
251         __builtin__.exit = __builtin__.quit = x  # noqa: x is defined as _Exit
252
253     # print conten of a file
254
255     class _Cat:
256         def __repr__(self):
257             return "Usage: cat('filename')"
258
259         def __call__(self, filename):
260             fp = open(filename, 'rU')
261             text = fp.read()
262             fp.close()
263             print text
264
265     __builtin__.cat = _Cat()
266
267     # call shell
268
269     class _Sh:
270         def __repr__(self):
271             os.system(os.environ["SHELL"])
272             return ''
273
274         def __call__(self, cmdline):
275             os.system(cmdline)
276
277     __builtin__.sh = _Sh()
278
279     # paginate a file
280
281     class _Pager:
282         def __repr__(self):
283             return "Usage: pager('filename')"
284
285         def __call__(self, filename):
286             os.system("%s '%s'" % (pager, filename.replace("'", '"\'"')))
287
288     __builtin__.pager = _Pager()
289
290     # edit a file
291
292     class _Editor:
293         def __repr__(self):
294             return "Usage: edit('filename')"
295
296         def __call__(self, filename):
297             editor = os.environ.get("VISUAL") \
298                 or os.environ.get("EDITOR") or 'vi'
299             os.system("%s '%s'" % (editor, filename.replace("'", '"\'"')))
300
301     __builtin__.edit = __builtin__.editor = _Editor()
302
303
304 init()
305 del init