摘要: xpath //td[text()='xxx']/../followingsibling::tr//tbody//td[contains(@class, p15)]/table/tbody 阅读全文
posted @ 2022-01-11 15:22 Mr_Smith 阅读(23) 评论(0) 推荐(0) 编辑
摘要: import json import httpx # 注意要安装 pip install h2 data = { 'page': '2' } headers={ 'method': 'POST', 'authority': '', 'scheme': 'https', 'path': '/api/c 阅读全文
posted @ 2021-10-18 15:14 Mr_Smith 阅读(527) 评论(0) 推荐(0) 编辑
摘要: 安装homebrew 国内的方式 /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 阅读全文
posted @ 2020-07-10 10:46 Mr_Smith 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 在admin.py中注册可以通过后台操作的模型 from django.contrib import admin# Register your models here.from user.models import BookInfo, HeroInfo## 子类TabularInline:以表格的形 阅读全文
posted @ 2020-04-19 22:42 Mr_Smith 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1. 修改原始查询集,重写all()方法。 a)打开models.py文件,定义类BookInfoManager #图书管理器 class BookInfoManager(models.Manager): def all(self): #默认查询未删除的图书信息 #调用父类的成员语法为:super( 阅读全文
posted @ 2020-04-19 21:25 Mr_Smith 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 批量替换请求头 (.*?):(.*) '$1':'$2', # 用法 #*kwargs demo(a=(Exception, RequestHandler), name={"age": "12"}) demo(**kwargs): #结果为 a name print(*kwargs) #调用父类方式 def _handle_request_exception(self, e: BaseExcept 阅读全文
posted @ 2019-10-29 11:22 Mr_Smith 阅读(225) 评论(0) 推荐(0) 编辑
摘要: pip install tensorflow-gpu # stablepip install tf-nightly # preview 阅读全文
posted @ 2019-10-20 19:17 Mr_Smith 阅读(183) 评论(0) 推荐(0) 编辑
摘要: #偏函数from functools import partialdef demo(a,*args): print(a) print(args)par_fun = partial(demo,1)par_fun(3,3,4,5)线程安全(local)空间换时间 from threading impor 阅读全文
posted @ 2019-10-08 23:05 Mr_Smith 阅读(154) 评论(0) 推荐(0) 编辑
摘要: COOKIES_ENABLED 默认: True 是否启用cookiesmiddleware。如果关闭,cookies将不会发送给web server。 COOKIES_DEBUG 默认: False 如果启用,Scrapy将记录所有在request(cookie 请求头)发送的cookies及re 阅读全文
posted @ 2019-08-26 19:30 Mr_Smith 阅读(357) 评论(0) 推荐(0) 编辑
摘要: C:\Windows\System32\drivers\etc 修改host 阅读全文
posted @ 2019-08-26 15:51 Mr_Smith 阅读(114) 评论(0) 推荐(0) 编辑