摘要: 将curl解析次字典形式,代码如下: # coding:utf-8 import argparse import warnings from shlex import split from http.cookies import SimpleCookie from urllib.parse impo 阅读全文
posted @ 2021-08-10 14:35 aaronthon 阅读(1436) 评论(0) 推荐(0) 编辑
摘要: 一、在项目根目录下(和.git在同一级目录下),增加.gitignore文件。 #开头 #注释,被git忽略 *.class #忽略所有.class结尾的文件 !Test.class #Test.class除外 /bin/ #忽略bin目录下的所有文件 /conf/*.txt #忽略/conf/1. 阅读全文
posted @ 2021-08-10 10:10 aaronthon 阅读(433) 评论(0) 推荐(0) 编辑