Skip to content

Instantly share code, notes, and snippets.

@fodra
Last active June 20, 2018 07:36
Show Gist options
  • Save fodra/74b5b48d6b0249ded777d2d70a5105ab to your computer and use it in GitHub Desktop.
Save fodra/74b5b48d6b0249ded777d2d70a5105ab to your computer and use it in GitHub Desktop.
Some useful notes on working with python.
  1. Using ipdb, when in ipdb.set_trace() mode use s command to step into the function.
  1. Simple http server to transfer files from your computer. This will enable users in the same network access the files in your server directory by http://<local_ip>:8000.

python -m http.server 8000

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment