-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Deboguer_du_code_Python_depuis_Notebook_Jupyter.py
75 lines (44 loc) · 1.41 KB
/
Deboguer_du_code_Python_depuis_Notebook_Jupyter.py
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
#!/usr/bin/env python
# coding: utf-8
# # Débugguer du code Python depuis Notebook Jupyter
# ## Avec `pdb` ou `ipdb`
#
# - <https://docs.python.org/3/library/pdb.html>
# - <https://pypi.org/project/ipdb/>
# In[8]:
get_ipython().run_line_magic('debug', '')
def print_endline(i: int) -> None:
print(1.0 / i)
def main() -> None:
for i in range(10, -10, -1):
print_endline(i)o
main()
# ## Avec PixieDebugger - nouveau!
#
# - <https://pixiedust.github.io/pixiedust/1-1-8.html>
# - <https://medium.com/codait/the-visual-python-debugger-for-jupyter-notebooks-youve-always-wanted-761713babc62>
#
# In[11]:
import pixiedust
# In[10]:
pixiedust.optOut()
# In[ ]:
get_ipython().run_cell_magic('pixie_debugger', '', '\ndef print_endline(i: int) -> None:\n print(1.0 / i)\n\ndef main() -> None:\n for i in range(10, -10, -1):\n print_endline(i)\n\nmain()')
# **Ca ne marche pas chez moi, ça affiche des codes couleurs ANSI non interprétés (16/02/2021).**
# ## Avec le nouveau débuggueur visuel de Jupyter Lab - new!
#
# TODO!
#
# - <https://github.com/jupyterlab/debugger>
# - See <https://blog.jupyter.org/a-visual-debugger-for-jupyter-914e61716559>
# - And <https://stackoverflow.com/a/61120586/5889533>
# In[14]:
def print_endline(i: int) -> None:
print(1.0 / i)
def main() -> None:
for i in range(10, -10, -1):
print_endline(i)
main()
# ## Conclusion
#
# C'est cool !