摘要:
基于类实现 1,基于类实现 2,类基于__new__方法实现,在实例化之前创建一个对象 3,类基于metaclass创建单例模式 4,数据库连接池单例模式 创建数据连接池 调用数据连接池 阅读全文
摘要:
1,__slots__ 2,__getattr__ 3,__setattr__属性. 4,partial 5,__enter__ 和 __exit__ 6,__new__ 7,__call__方法 阅读全文
摘要:
定义: 创建一个连接池(10个链接),为所有线程提供链接,使用时来进行获取,使用完毕时,再次放回到连接池。 等待下次其他线程的调用 单例模式使用连接池 调用时 from pool import SingletonDBPool def run(): pool = SingletonDBPool() c 阅读全文
摘要:
1,防止Xss攻击 阅读全文
摘要:
CBV样式 to_dict 取值 模板语法 session相关 app.config 阅读全文