摘要:
pip install pycryptodome==3.14.1 import base64 # AES CBC加密 from Crypto.Cipher import AES BLOCK_SIZE = 16 # Bytes vi = '0102030405060708' def pad(s): r 阅读全文
摘要:
``` import tempfile _file_data = bytes('文件数据') _temp_file = tempfile.NamedTemporaryFile() _temp_file.write(_file_data) # 保存 _temp_file.flush() # 指针指向文 阅读全文
摘要:
operators = { 'exact': '= %s', 'iexact': 'LIKE %s', 'contains': 'LIKE BINARY %s', 'icontains': 'LIKE %s', 'regex': 'REGEXP BINARY %s', 'iregex': 'REGE 阅读全文