• 大小:
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2022-07-07
  • 语言: Python
  • 标签: 爬虫  代码大全  

资源简介

《Python3网络爬虫开发实战代码》.zip

资源截图

代码片段和文件信息

import os

# 平台
PLATFORM = ‘Android‘

# 设备名称 通过 adb devices -l 获取
DEVICE_NAME = ‘MI_NOTE_Pro‘

# APP路径
APP = os.path.abspath(‘.‘) + ‘/weixin.apk‘

# APP包名
APP_PACKAGE = ‘com.tencent.mm‘

# 入口类名
APP_ACTIVITY = ‘.ui.LauncherUI‘

# Appium地址
DRIVER_SERVER = ‘http://localhost:4723/wd/hub‘
# 等待元素加载时间
TIMEOUT = 300

# 微信手机号密码
USERNAME = ‘‘
PASSWORD = ‘‘

# 滑动点
FLICK_START_X = 300
FLICK_START_Y = 300
FLICK_DISTANCE = 700

# MongoDB配置
MONGO_URL = ‘localhost‘
MONGO_DB = ‘moments‘
MONGO_COLLECTION = ‘moments‘

# 滑动间隔
SCROLL_SLEEP_TIME = 1

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-08-22 20:33  《Python3网络爬虫开发实战代码》\
     文件        1274  2018-04-24 22:41  《Python3网络爬虫开发实战代码》\README.md
     目录           0  2019-08-22 20:33  《Python3网络爬虫开发实战代码》\appium\
     目录           0  2019-08-22 20:33  《Python3网络爬虫开发实战代码》\appium\.git\
     文件           7  2017-08-15 01:37  《Python3网络爬虫开发实战代码》\appium\.git\COMMIT_EDITMSG
     文件          97  2017-08-05 20:46  《Python3网络爬虫开发实战代码》\appium\.git\FETCH_HEAD
     文件          23  2017-08-05 20:45  《Python3网络爬虫开发实战代码》\appium\.git\HEAD
     文件          41  2017-08-05 20:46  《Python3网络爬虫开发实战代码》\appium\.git\ORIG_HEAD
     目录           0  2019-08-22 20:35  《Python3网络爬虫开发实战代码》\appium\.git\branches\
     文件         251  2017-08-05 20:45  《Python3网络爬虫开发实战代码》\appium\.git\config
     文件          73  2017-08-05 20:45  《Python3网络爬虫开发实战代码》\appium\.git\description
     目录           0  2019-08-22 20:33  《Python3网络爬虫开发实战代码》\appium\.git\hooks\
     文件         478  2017-08-05 20:45  《Python3网络爬虫开发实战代码》\appium\.git\hooks\applypatch-msg.sample
     文件         896  2017-08-05 20:45  《Python3网络爬虫开发实战代码》\appium\.git\hooks\commit-msg.sample
     文件         189  2017-08-05 20:45  《Python3网络爬虫开发实战代码》\appium\.git\hooks\post-update.sample
     文件         424  2017-08-05 20:45  《Python3网络爬虫开发实战代码》\appium\.git\hooks\pre-applypatch.sample
     文件        1642  2017-08-05 20:45  《Python3网络爬虫开发实战代码》\appium\.git\hooks\pre-commit.sample
     文件        1348  2017-08-05 20:45  《Python3网络爬虫开发实战代码》\appium\.git\hooks\pre-push.sample
     文件        4951  2017-08-05 20:45  《Python3网络爬虫开发实战代码》\appium\.git\hooks\pre-rebase.sample
     文件        1239  2017-08-05 20:45  《Python3网络爬虫开发实战代码》\appium\.git\hooks\prepare-commit-msg.sample
     文件        3611  2017-08-05 20:45  《Python3网络爬虫开发实战代码》\appium\.git\hooks\update.sample
     文件         601  2017-08-15 01:37  《Python3网络爬虫开发实战代码》\appium\.git\index
     目录           0  2019-08-22 20:33  《Python3网络爬虫开发实战代码》\appium\.git\info\
     文件         250  2017-08-05 20:45  《Python3网络爬虫开发实战代码》\appium\.git\info\exclude
     目录           0  2019-08-22 20:33  《Python3网络爬虫开发实战代码》\appium\.git\logs\
     文件         480  2017-08-15 01:37  《Python3网络爬虫开发实战代码》\appium\.git\logs\HEAD
     目录           0  2019-08-22 20:33  《Python3网络爬虫开发实战代码》\appium\.git\logs\refs\
     目录           0  2019-08-22 20:33  《Python3网络爬虫开发实战代码》\appium\.git\logs\refs\heads\
     文件         480  2017-08-15 01:37  《Python3网络爬虫开发实战代码》\appium\.git\logs\refs\heads\master
     目录           0  2019-08-22 20:33  《Python3网络爬虫开发实战代码》\appium\.git\logs\refs\remotes\
     目录           0  2019-08-22 20:33  《Python3网络爬虫开发实战代码》\appium\.git\logs\refs\remotes\origin\
............此处省略682个文件信息

评论

共有 条评论