xgqfrms / vscode

:cn: :rocket: Visual Studio Code & VSCode Code Snippets All in One 🎉
https://vscode.xgqfrms.xyz
MIT License
3 stars 1 forks source link

Python3 Template & VSCode Code Snippets #32

Open xgqfrms opened 4 years ago

xgqfrms commented 4 years ago

Python3 Template & VSCode Code Snippets

py3


{
  "Python3 Template": {
    "prefix": "py3",
    "body": [
      "# coding: utf8",
      "",
      "__author__ = 'xgqfrms'",
      "",
      "\"\"\"",
      "",
      "/**",
      " * ",
      " * @author xgqfrms",
      " * @license MIT",
      " * @copyright xgqfrms",
      " * @created 2020-01-0$1",
      " * ",
      " * @description $2",
      " * @augments $3",
      " * @example $4",
      " * @link $5",
      " * ",
      " */",
      "",
      "\"\"\""
    ],
    "description": "Python3 Template & code snippets!"
  }
}
xgqfrms commented 4 years ago

Python3 Template

{
  "Python3 Template": {
    "prefix": "py3",
    "body": [
      "#!/usr/bin/env python3",
      "",
      "# coding: utf8",
      "",
      "__author__ = 'xgqfrms'",
      "",
      "__editor__ = 'vscode'",
      "",
      "__version__ = '1.0.1'",
      "",
      "__copyright__ = \"\"\"",
      "  Copyright (c) 2012-2050, xgqfrms; mailto:xgqfrms@xgqfrms.xyz",
      "\"\"\"",
      "",
      "\"\"\"",
      "  /**",
      "   * ",
      "   * @author xgqfrms",
      "   * @license MIT",
      "   * @copyright xgqfrms",
      "   * @created 2020-01-0$1",
      "   * ",
      "   * @description $2",
      "   * @augments $3",
      "   * @example $4",
      "   * @link $5",
      "   * ",
      "  */",
      "\"\"\"",
      ""
    ],
    "description": "Python3 Template & code snippets!"
  }
}