auth模块 + 插拔式思想 一、auth模块 ? django为方便实现用户功能,包括登陆注册注销修改信息等,提供了auth模块,实现操作简单化。 1.1 常用方法 ? 超级用户: ? authenticate():用户认证,认证成功会返回User对象,不成功返回None ? login(Http ...
分类:
其他好文 时间:
2019-10-31 23:32:21
阅读次数:
94
Python中标准模块importlib详解 模块简介 Python提供了importlib包作为标准库的一部分。目的就是提供Python中import语句的实现(以及 函数)。另外,importlib允许程序员创建他们自定义的对象,可用于引入过程(也称为importer)。 什么是imp? 另外有 ...
分类:
编程语言 时间:
2019-10-25 10:00:56
阅读次数:
106
错误信息: 解决方法: 找到对应文件 找到出错语句: 去掉末尾那个逗号即可。 ...
分类:
其他好文 时间:
2019-10-13 23:30:40
阅读次数:
101
创建一个文件夹notify __init__.py import settings import importlib def send_all(content): for path_str in settings.NOTIFY_LIST: # 1.拿出一个个的字符串 'notify.email.Em ...
分类:
其他好文 时间:
2019-10-04 13:17:21
阅读次数:
70
安装socketio出现module 'importlib._bootstrap' has no attribute 'SourceFileLoader' 错误 执行: pip install --upgrade --ignore-installed setuptools 后再执行 pip inst ...
分类:
其他好文 时间:
2019-09-23 22:45:09
阅读次数:
126
如果你的程序是死循环,不停歇的代码,下列是需要注意内存的问题。第一、pillow库的隐患 第二、使用importlib.reload重载模块后带来使用全局变量带来的隐患假如采取不重启程序方式,自动重新载入修改后的文件,所以需要进行重载模块 上述就会发生一种隐患,以前我觉得垃圾回收机制很靠谱。但是当每 ...
分类:
编程语言 时间:
2019-09-13 15:47:34
阅读次数:
108
#-*- coding:utf-8 -*-from socketserver import ThreadingTCPServer, BaseRequestHandlerimport importlibimport tracebackimport timeimport logginglogging.b ...
分类:
编程语言 时间:
2019-08-25 12:02:59
阅读次数:
221
[TOC] 内置函数 一、内置函数 更多内置函数:https://docs.python.org/3/library/functions.html?highlight=built ascii 1.1 掌握 1. bytes() 解码字符。 2. chr()/ord() chr()参考ASCII码表将 ...
分类:
编程语言 时间:
2019-08-14 21:28:01
阅读次数:
97
1 # -*- coding:utf-8 -*- 2 import os 3 import sys 4 import requests 5 import datetime 6 from Crypto.Cipher import AES 7 from binascii import b2a_hex, ... ...
分类:
编程语言 时间:
2019-08-12 00:50:33
阅读次数:
973
>>> <module 'study' from '/Users/miaowu/PycharmProjects/untitled/study/__init__.py'>执行 test1<module 'test1' from '/Users/miaowu/PycharmProjects/untitl ...
分类:
其他好文 时间:
2019-08-10 21:50:50
阅读次数:
123