Skip to content

Instantly share code, notes, and snippets.

@toloco
Last active February 21, 2023 15:00
Show Gist options
  • Save toloco/164dd684c1e0d5ad95789d7b3104e183 to your computer and use it in GitHub Desktop.
Save toloco/164dd684c1e0d5ad95789d7b3104e183 to your computer and use it in GitHub Desktop.
My VSCode python snippeds
{
"PDB set trace": {
"prefix": "pdb",
"body": ["import pdb; pdb.set_trace()$0"]
},
"iPDB set trace": {
"prefix": "ipdb",
"body": ["import ipdb; ipdb.set_trace()$0"]
},
"Header for python file": {
"prefix": "env",
"body": ["#!/usr/bin/env python$0"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment