source: tags/asap-4.1.0/bin/asap@ 2747

Last change on this file since 2747 was 2651, checked in by Malte Marquarding, 12 years ago

Make asap ipython work under ipython 0.10

File size: 1.4 KB
Line 
1#!/usr/bin/env python
2import os
3
4def main10():
5 from IPython.Shell import IPShellEmbed
6
7 banner = welcome()
8 exit_msg = ''
9 args = ['-colors','Linux','-noconfirm_exit', '-readline',
10 '-xmode', 'Plain', '-autocall', '2', '-autoindent',
11 '-pi1', 'ASAP> ', '-po', 'asap>: ', '-pprint']
12 ipshell = IPShellEmbed(args,banner,exit_msg)
13 return ipshell
14
15
16def main11():
17 from IPython.config.loader import Config
18 cfg = Config()
19 prompt_config = cfg.PromptManager
20 prompt_config.in_template = 'ASAP> '
21 prompt_config.out_template = 'asap>: '
22 cfg.InteractiveShell.autoindent = True
23 cfg.InteractiveShell.autocall = 2
24 cfg.InteractiveShell.magic_pprint = True
25 cfg.InteractiveShell.use_readline=True
26 cfg.InteractiveShell.confirm_exit=False
27 cfg.InteractiveShell.xmode='Plain'
28
29 from IPython.frontend.terminal.embed import InteractiveShellEmbed
30 ipshell = InteractiveShellEmbed(config=cfg,
31 banner1 = welcome(),
32 exit_msg = '')
33 return ipshell
34
35try:
36 os.system('clear')
37 import IPython
38 from asap import *
39 vers = int(IPython.__version__.split(".")[1])
40 if vers >= 11:
41 ipshell = main11()
42 else:
43 ipshell = main10()
44 ipshell()
45
46except ImportError:
47 banner = "No ipython found. Running standard python"
48 import code
49 from asap import *
50 del main
51 code.interact(banner, local=locals())
Note: See TracBrowser for help on using the repository browser.