摘要: 从B站学习了一段时间,使用urllib方式爬取豆瓣电影Top250保存到excel 话不多说贴上代码,亲测可用 补充保存到爬取数据到数据库中 # -*- coding: utf-8 -*-# @Time : 2021/7/17 21:49# @Author :liuw# @File : get_do 阅读全文
posted @ 2021-07-24 17:19 smartwen 阅读(149) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-# @Time : 2021/7/18 11:40# @Author :liuw# @File : testUrllib.py# @Software: PyCharmimport urllib.requestimport urllib.parse# 获取 阅读全文
posted @ 2021-07-18 20:36 smartwen 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 写这个作业碰到一个问题,就是开始写入文件时,文件流没有关闭,导致后来read一直为null,特此记录 # -*- coding: utf-8 -*-# @Time : 2021/7/17 15:47# @Author :liuw# @File : try_catch_file.py# @Softwa 阅读全文
posted @ 2021-07-17 20:38 smartwen 阅读(4351) 评论(0) 推荐(0) 编辑
摘要: 最终工程build.gradle信息如下 个人电脑环境 apply plugin: 'com.android.application'android { compileSdkVersion 26 defaultConfig { applicationId "com.liuw.demo1" minSd 阅读全文
posted @ 2020-11-02 10:17 smartwen 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 小马激活工具(oem7)提示“Cannot open file 'C:\OEMSF',拒绝访问"怎么办 以下操作步骤亲测win7_64位有效 1. 激活系统管理员帐号(administrator) (1)点击”开始“按钮, (2)在“搜索程序和文件“中输入”cmd”打开命令行, (3)在命令提示符中 阅读全文
posted @ 2020-11-01 22:18 smartwen 阅读(498) 评论(0) 推荐(0) 编辑
摘要: 安装Scrapy 1.https://www.lfd.uci.edu/~gohlke/pythonlibs/下载 Twisted 安装 Twisted-19.10.0-cp37-cp37m-win_amd64.whl 这里有许多坑 需要分别从https://pypi.org/project/zope 阅读全文
posted @ 2019-12-15 10:00 smartwen 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 个人PC环境 ANDROID_HOME:F:\1Study\Andriod\51zxw_2018-0102\Sdk ANT_HOME:D:\ant\apache-ant-1.10.5\ CLASSPATH: .;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.jar;D: 阅读全文
posted @ 2019-09-15 10:00 smartwen 阅读(888) 评论(0) 推荐(0) 编辑
摘要: 转载于:静觅 » Python爬虫入门基本使用 Python爬虫入门一之综述 根据我的经验,要学习Python爬虫,我们要学习的共有以下几点: Python基础知识 Python中urllib和urllib2库的用法 Python正则表达式 Python爬虫框架Scrapy Python爬虫更高级的 阅读全文
posted @ 2019-03-16 15:42 smartwen 阅读(116) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python# -*- coding: UTF-8 -*-import urllibimport re文章来源:https://www.cnblogs.com/Axi8/p/5757270.htmlclass Spilder01(object): # page = urllib 阅读全文
posted @ 2019-03-10 21:53 smartwen 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 1.1 必备条件 整理用到的安装包 1.Eclipse是解压缩包:eclipse-jee-mars-2-win32-x86_64; 2.Android-sdk是解压缩包:android-sdk_r24.0.2-windows.zip; 3.Ant是解压缩包:apache-ant-1.9.7-bin. 阅读全文
posted @ 2019-03-09 21:23 smartwen 阅读(796) 评论(0) 推荐(0) 编辑