2015-02-11 2 views
5

Ho qualche codice come questo:Posso fare uscire ipython dal codice chiamante?

form IPython import embed 
for item in my_item_list: 
    embed() 

Se poi eseguito questo programma con

python my_example_program.py 

sulla prima iterazione del ciclo vengo messo in un guscio ipython e può ispezionare item e la ambiente come mi piacerebbe.

All'uscita da ipython il ciclo riprende e quindi riesco a ispezionare il prossimo item e l'ambiente come ci si aspetterebbe.

C'è un modo per me di uscire da questo codice da ipython (in modo che io torni al prompt della shell). in ogni modo, a meno di aprire un altro guscio e uccidere il processo?

risposta

7

C'è un comando %kill_embedded in IPython.
Non torna direttamente al prompt della shell, ma salta le altre istanze incorporate.

from IPython import embed 

for item in range(5): 
    print 'embedding', item 
    embed() 

Ed ecco l'output:

$ python my_example_program.py 
embedding 0 
Python 2.7.9 (default, Dec 13 2014, 22:30:33) 
Type "copyright", "credits" or "license" for more information. 

IPython 1.1.0 -- An enhanced Interactive Python. 
?   -> Introduction and overview of IPython's features. 
%quickref -> Quick reference. 
help  -> Python's own help system. 
object? -> Details about 'object', use 'object??' for extra details. 

In [1]: print item 
0 

In [2]: ^D 

embedding 1 
Python 2.7.9 (default, Dec 13 2014, 22:30:33) 
Type "copyright", "credits" or "license" for more information. 

IPython 1.1.0 -- An enhanced Interactive Python. 
?   -> Introduction and overview of IPython's features. 
%quickref -> Quick reference. 
help  -> Python's own help system. 
object? -> Details about 'object', use 'object??' for extra details. 

In [2]: %kill_embedded 
Are you sure you want to kill this embedded instance (y/n)? [y/N] y 
This embedded IPython will not reactivate anymore once you exit. 

In [3]: print item 
1 

In [4]: 

embedding 2 
embedding 3 
embedding 4 
$ 

UPD (2016/06/03): sembra che la funzione %kill_embedded è una specie di rotto in IPython 4.0; è possibile utilizzare %exit_raise che genererà un'eccezione e tornerà alla shell.

+0

saltare le altre istanze di incorporamento è esattamente quello che volevo, grazie. –

+0

@ MikeH-R Prego! –

+0

Che cosa hai fatto esattamente nell'ultimo input, solo un normale CTRL + D? Sto cercando di riprodurre questo esempio in IPython 4.0, ma devo sempre passare attraverso 'embed's nel ciclo. Sembra che '% kill_embedded' non abbia alcun effetto. – bluenote10