摘要:
一.安装使用virtualenvwrapper (virtualenvwrapper是virtualenv的进阶版,可更方便使用虚拟环境,要在virtualenv安装完成后再安装) pip install virtualenv pip install -i https://pypi.doubanio 阅读全文
摘要:
pip install beautifulsoup4 bs4解析网页时报错:bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: html_parser. Do you need to i 阅读全文
摘要:
首先打开cmd: 输入 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 直接一步到位,不用费劲巴拉的创文件之类的。 然后贴几个国内源: 阿里云 http://mirrors.aliyun.com/pyp 阅读全文
摘要:
https://www.cnblogs.com/linchenguang/p/14872067.html def crawler(): # 设置cookie cookie = '''cisession=19dfd70a27ec0e t_f805f7762a9a237a0deac37015e9f6d9 阅读全文
摘要:
<!-- 1. 使用v-model(双向数据绑定)自动收集数据 text/textarea checkbox radio select --> <div id="demo"> <form action="/xxx" @submit.prevent="handleSubmit"> <span>用户名: 阅读全文
摘要:
{ "keys": ["ctrl+shift+/"], "command": "reindent" } 阅读全文
摘要:
执行如下命令即可 git rm -r --cached ' ' 阅读全文
摘要:
设置——设置——在打开的标签(Preferences.sublime-settings-Uer)最下面加上以下两行: // The number of spaces a tab is considered equal to "tab_size": 2, // Set to true to inser 阅读全文
摘要:
JavaScript中的对象转数组Array.prototype.slice.call()方法详解 JavaScript中的Array.prototype.slice.call(arguments)能将有length属性的对象转换为数组(特别注意: 这个对象一定要有length属性). 但有一个例外 阅读全文
摘要:
首先安装nodejs,cmd运行 node -v 查看是否安装成功 然后:工具——编译系统——新建编译系统,在出来的文件内输入如下代码,最后保存,名字js或随便什么都可,位置默认即可 最后运行:ctrl+b即可出现结果 { "cmd": ["node", "$file"], "selector": 阅读全文