摘要: # -*- codeing: utf-8 —*— import time import threading # 线程同步 class MyThead(threading.Thread): def __init__(self, name, delay): threading.Thread.__init 阅读全文
posted @ 2021-11-30 15:45 Ccxing7 阅读(88) 评论(0) 推荐(0) 编辑
摘要: # -*- codeing: utf-8 —*— import time import threading # 使用 threading 模块创建线程 class MyThread(threading.Thread): def __init__(self, name, delay): threadi 阅读全文
posted @ 2021-11-30 15:17 Ccxing7 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 超级浏览器Webdriver自动化开发 一、概述 通过Webdriver实现对超级浏览器内的店铺进行,自动化控制以及数据抓取,主要流程分为以下两个部分 ###(一)与超级浏览器主进程通信。 这个部分是通过Socket实现与超级浏览器主进实现通讯的,主要工作是获取店铺列表以及准备店铺环境,一个店铺相当 阅读全文
posted @ 2021-06-25 01:51 Ccxing7 阅读(2007) 评论(3) 推荐(1) 编辑
摘要: 金山文档表单案例使用说明 阅读全文
posted @ 2021-06-04 11:18 Ccxing7 阅读(19752) 评论(0) 推荐(0) 编辑
摘要: import logging logging.basicConfig(level=logging.INFO, format='%(asctime)s:%(name)s:%(levelname)s: %(message)s') class Test(object): @staticmethod def 阅读全文
posted @ 2021-05-24 15:11 Ccxing7 阅读(155) 评论(0) 推荐(0) 编辑
摘要: ``` def is_today(target_date): """ 2020-03-25 17:03:55 Detects if the date is current date :param target_date: :return: Boolean """ # Get the year, month and day c_year = datetime.datetime.now().year 阅读全文
posted @ 2020-03-26 18:58 Ccxing7 阅读(1898) 评论(3) 推荐(0) 编辑
摘要: 查询指定日期,指定显示字段,排序,注释功能 规整的查询格式 阅读全文
posted @ 2019-09-20 11:28 Ccxing7 阅读(793) 评论(0) 推荐(0) 编辑
摘要: --web客户端JavaScript <body onload="checkCookie()"></body> function getYourIP() { const RTCPeerConnection = window.RTCPeerConnection || window.webkitRTCP 阅读全文
posted @ 2019-09-20 01:26 Ccxing7 阅读(821) 评论(0) 推荐(0) 编辑
摘要: 一段 jsonp 格式数据 mtopjsonpweexcb1({"api":"mtop.taobao.idle.recycle.nextspunav.get","data":{"ext":{},"items":[{"bannerFlag":false,"hasNextLevel":true,"has 阅读全文
posted @ 2019-09-20 00:56 Ccxing7 阅读(2780) 评论(0) 推荐(0) 编辑
摘要: // 定义搜索节点树结构Store const nodeStore = Ext.create('Ext.data.TreeStore', { autoLoad : true, id : 'nodeStoreTreeId', fields : ['index', 'nodeId', 'name_or_ 阅读全文
posted @ 2017-11-21 14:48 Ccxing7 阅读(1526) 评论(0) 推荐(1) 编辑