Created
December 14, 2018 10:08
-
-
Save wwwins/dcb55ffda1138345387741136e149516 to your computer and use it in GitHub Desktop.
ipython tips
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# load a python file | |
%load teeth-whitening.py | |
# setup sys args for argparse | |
sys.argv = ["teeth-whitening.py", "data/shape_predictor_68_face_landmarks.dat", "faces/Cara_Delevingne.png"] | |
# debug | |
%debug main() | |
ipdb> s | |
ipdb> n | |
ipdb> n | |
ipdb> n | |
... | |
ipdb> l | |
ipdb> p d | |
ipdb> pinfo d | |
ipdb> pinfo faces |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment