##// END OF EJS Templates
allow engines to wait for url_files to arrive...
allow engines to wait for url_files to arrive if connection info (url, ip, etc.) is passed explicitly, the engine will not wait for the file. If the file never arrives and the connection info was not specified manually, the app will abort. This is primarily useful in batch-systems where engines might start before the controller has a chance to write connection files. (delay does not help in these cases, because it could be hours before jobs start)

File last commit:

r2760:afe1263a
r4120:890c6020
Show More
ipythonx
11 lines | 231 B | text/plain | TextLexer
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""IPythonX -- An enhanced Interactive Python
This script starts the Wx graphical frontend. This is experimental so
far.
"""
from IPython.frontend.wx import ipythonx
ipythonx.main()