摘要: import paramiko class My_ssh: def __init__(self,ip,username,password): self.ip=ip self.username=username self.password =password self.ssh_client = par 阅读全文
posted @ 2020-10-15 20:58 该显示昵称已被使用了 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 定义 import requests import logging # These two lines enable debugging at httplib level (requests->urllib3->http.client) # You will see the REQUEST, inc 阅读全文
posted @ 2020-10-04 17:48 该显示昵称已被使用了 阅读(346) 评论(0) 推荐(0) 编辑
摘要: 提醒用户使用了废弃的函数 def deprecated(func): """This decorator is used to mark functions as deprecated. It will result in a warning being emitted when the funct 阅读全文
posted @ 2020-10-04 16:50 该显示昵称已被使用了 阅读(778) 评论(0) 推荐(0) 编辑
摘要: import datetime import json import requests from exception import AsstException #自定义 from log import logger #自定义 class Messenger(object): def __init__ 阅读全文
posted @ 2020-10-04 12:17 该显示昵称已被使用了 阅读(709) 评论(0) 推荐(1) 编辑
摘要: 随便用用1 import logging # logging.basicConfig(level=logging.ERROR, format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s:%(message)s') logging. 阅读全文
posted @ 2020-10-04 11:15 该显示昵称已被使用了 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 定义 # -*- coding: utf-8 -*- import os import configparser class Config(object): def __init__(self, config_file='config.ini'): self._path = os.path.join 阅读全文
posted @ 2020-10-04 11:10 该显示昵称已被使用了 阅读(719) 评论(0) 推荐(0) 编辑
摘要: 看看 https://blog.csdn.net/luoluopan/article/details/99619220 类中函数的装饰器 # 装饰类中函数的装饰器第一个参数是self def connection_closed_handler(function): """Handle Connect 阅读全文
posted @ 2020-09-22 20:16 该显示昵称已被使用了 阅读(74) 评论(0) 推荐(0) 编辑
摘要: pip正常安装 pip install django1.11.4 -i https://pypi.douban.com/simple pip3 install websockets6.0 --force-reinstall pip离线安装 离线源地址 https://www.lfd.uci.edu/ 阅读全文
posted @ 2020-09-17 11:33 该显示昵称已被使用了 阅读(2226) 评论(0) 推荐(0) 编辑
摘要: @classmethod 加入这个装饰器表示第一个参数永远就是self 在stackoverflow看到的直接贴过来,有时候出现类似:required argument **cls** 可能是这个原因 @property 加入这个装饰器表示把一个方法变成属性 1 class Foo: 2 @prop 阅读全文
posted @ 2020-09-16 15:10 该显示昵称已被使用了 阅读(108) 评论(0) 推荐(0) 编辑
摘要: pip freeze > requirements.txt pip install -r requirements.txt 阅读全文
posted @ 2020-09-14 12:57 该显示昵称已被使用了 阅读(106) 评论(0) 推荐(0) 编辑