chenxj1101
1/8/2019 - 9:20 AM

放代码片

放代码片

代码片

utf头注释

    "utf file header": {
        "prefix": "utf",
        "body": [
          "# -*- coding: utf-8 -*-",
            "",
            "$0"
        ],
        "description": "utf file header"
        },

获取soup对象

    "get soup": {
        "prefix": "gsoup",
        "body": [
            "res = requests.get(url)",
            "res.encoding = 'utf-8'",
            "html = res.text",
            "page = BeautifulSoup(html, 'lxml')",
            "$1"
        ],
        "description": "get BeautifulSoup"
    }