奇怪的是程序居然报错了,位置是在第24行res = request.urlopen(request_url,form_data),报错的原因是这个: TypeError: can’t concat str to bytes 通过分析可以发现 data参数应该是bytes类型的,而我们创建的form_data字典是string类型的,这时候我们就需要用urllib包中的urllib.parse库,并运用其中的...
code=json.loads(re_data)print(code)exceptURLError as e:print(e.strerror) PySocks使用服务代理功能 下载 pip install PySocks 官网资料 https://pypi.org/project/PySocks/ 注意: 特别注意文章的编码格式问题 f'{len(chunk):X}\r\n'.encode('ascii') + chunk \ TypeError: can't concat str to by...