摘要:
xpath //td[text()='xxx']/../followingsibling::tr//tbody//td[contains(@class, p15)]/table/tbody 阅读全文
摘要:
import json import httpx # 注意要安装 pip install h2 data = { 'page': '2' } headers={ 'method': 'POST', 'authority': '', 'scheme': 'https', 'path': '/api/c 阅读全文
摘要:
安装homebrew 国内的方式 /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 阅读全文
摘要:
在admin.py中注册可以通过后台操作的模型 from django.contrib import admin# Register your models here.from user.models import BookInfo, HeroInfo## 子类TabularInline:以表格的形 阅读全文
摘要:
1. 修改原始查询集,重写all()方法。 a)打开models.py文件,定义类BookInfoManager #图书管理器 class BookInfoManager(models.Manager): def all(self): #默认查询未删除的图书信息 #调用父类的成员语法为:super( 阅读全文
摘要:
批量替换请求头 (.*?):(.*) '$1':'$2', # 用法 #*kwargs demo(a=(Exception, RequestHandler), name={"age": "12"}) demo(**kwargs): #结果为 a name print(*kwargs) #调用父类方式 def _handle_request_exception(self, e: BaseExcept 阅读全文
摘要:
pip install tensorflow-gpu # stablepip install tf-nightly # preview 阅读全文
摘要:
#偏函数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 阅读全文