会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Tarzen
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
24
25
26
27
28
29
30
31
32
···
43
下一页
2021年1月4日
远程文件到本地
摘要: 连接到远程服务器ssh -p port name@ip (小写p) 本地上传到服务器 scp -P port 本地文件 name@ip:上传路径 (大写P) 例如:scp -P 22 ./log.txt tarzan@1.1.1.1:/home/tarzan/log/log.txt服务器到本地scp
阅读全文
posted @ 2021-01-04 20:37 Tarzen
阅读(110)
评论(0)
推荐(0)
编辑
linux系统后台运行python脚本
摘要: nohup python3 webhook.py >> ./log.txt 2>&1 &
阅读全文
posted @ 2021-01-04 20:26 Tarzen
阅读(126)
评论(0)
推荐(0)
编辑
2020年12月25日
UOS V20 无法打开窗口特效
摘要: 不打开窗口特效无法使用录屏(快捷ctrl+alt+r) 在商店中搜索显卡 重启
阅读全文
posted @ 2020-12-25 11:36 Tarzen
阅读(976)
评论(0)
推荐(0)
编辑
2020年12月22日
Python中requests请求超时后自动重发
摘要: # 最终代码 import requests from requests.adapters import HTTPAdapter s = requests.session() s.mount('http://', HTTPAdapter(max_retries=3)) s.mount('https:
阅读全文
posted @ 2020-12-22 09:35 Tarzen
阅读(986)
评论(0)
推荐(0)
编辑
2020年12月8日
Python并发请求requeste
摘要: import grequests #这个包要放到文件最顶部的导入 req_list = [] for x in range(100): headers = {"Content-Type": "application/json", 'Connection': 'close'} url = "http:
阅读全文
posted @ 2020-12-08 16:26 Tarzen
阅读(928)
评论(0)
推荐(0)
编辑
2020年12月3日
Linux-UOS如何在终端启动谷歌浏览器
摘要: # tarzan @ tarzan3w in ~ [8:48:41] $ nohup google-chrome & #后台挂起启动chrome [1] 10651 nohup: 忽略输入并把输出追加到'nohup.out'
阅读全文
posted @ 2020-12-03 08:57 Tarzen
阅读(1208)
评论(0)
推荐(0)
编辑
2020年12月1日
UOS修改应用图标和应用名称
摘要: 1.先看效果(小熊) 教程 先找到你要修改的应用程序(谷歌浏览器) 确保有sudo权限哦 # tarzan @ tarzan3w in ~/Desktop [13:30:37] $ cd /usr/share/applications/ # tarzan @ tarzan3w in /usr/sha
阅读全文
posted @ 2020-12-01 14:42 Tarzen
阅读(2139)
评论(0)
推荐(0)
编辑
2020年10月30日
unittest使用的时候,print的东西可以在html详情里面显示,但是又想打印在日志中,那就修logging模块中的info方法,使用装饰器
摘要: def print_msg(fun): def innfun_(self,msg,*args,**kwargs): print(msg) return fun(self,msg,*args,**kwargs) class Logger(Filterer): def __init__(self, na
阅读全文
posted @ 2020-10-30 17:56 Tarzen
阅读(204)
评论(0)
推荐(0)
编辑
默认端口
摘要: 默认的意思就是你不传端口,自动给你加个默认端口 http 请求默认是80 https 请求默认端口是443
阅读全文
posted @ 2020-10-30 12:43 Tarzen
阅读(133)
评论(0)
推荐(0)
编辑
2020年9月16日
PyCharm使用技巧:列模式,统一添加
摘要: 快捷 键键Alt + Shift + Insert
阅读全文
posted @ 2020-09-16 15:18 Tarzen
阅读(1086)
评论(0)
推荐(0)
编辑
上一页
1
···
24
25
26
27
28
29
30
31
32
···
43
下一页
公告