python pipeline初体验
背景
python学习笔记记录
运行另一个python
%run方式
先写一个 sleep.py
如下,来验证是在前台还是后台运行的。
import time
print(time.time())
time.sleep(10)
print(time.time())
运行结果如下,自然是在前台运行的。
python3 sleep.py
1593138633.5690382
1593138643.573932
通过ipython3运行如下,直接调用了刚刚编写的sleep脚本。
ipython3
Python 3.7.3 (default, Dec 13 2019, 19:58:14)
Type 'copyright', 'credits' or 'license' for more information
IPython 7.13.0 -- An enhanced Interactive Python. Type '?' for help.
In [1]: %run sleep
1593138650.750031
1593138660.75358
导出jupyter notebook结果为html
% pip3 install nbconvert
% jupyter nbconvert --to html --execute graph.ipynb