Skip to content

Instantly share code, notes, and snippets.

@jockerxlj
Last active January 23, 2018 02:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jockerxlj/a7f2db3ff38eebeba35426a77a4e100d to your computer and use it in GitHub Desktop.
Save jockerxlj/a7f2db3ff38eebeba35426a77a4e100d to your computer and use it in GitHub Desktop.

python learn

  1. 编程语言近年排行榜: https://www.tiobe.com/tiobe-index/

  2. 安装python环境, 推荐python3 (下载地址: https://www.python.org/downloads/)

  3. 安装python 开发环境 pycharm (下载地址: https://www.jetbrains.com/pycharm/download/#section=windows 激活:http://idea.liyang.io)

  4. 安装ipython: pip uninstall ipython; pip install ipython

  5. 入门AI,装anaconda(下载地址: https://www.anaconda.com/download/#windows)

  6. 学习专用-编辑器ipython notebook安装 (参看链接http://www.cnblogs.com/bicoffee/p/4233122.html) easy_install pyzmq easy_install jinja2 pip install tornado pip install ipython[notebook]

  7. 基础教程 https://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000

  8. python爬虫教程(https://zhuanlan.zhihu.com/p/21479334), 内容包括有爬虫涉及到的基础知识(网络请求库,正则表达式,cookie等), 爬虫实战、爬虫第三方库 和 更为强大的爬虫框架。 爬虫基本流程: 请求对应的url获取网页的html –--> 分析html提取出想要的文本 –> 将文本保存在数据库中 –-> 请求下一个url

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