摘要: 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 阅读全文
posted @ 2022-06-30 13:30 太晓 阅读(246) 评论(0) 推荐(0) 编辑
摘要: ``` import tempfile _file_data = bytes('文件数据') _temp_file = tempfile.NamedTemporaryFile() _temp_file.write(_file_data) # 保存 _temp_file.flush() # 指针指向文 阅读全文
posted @ 2022-06-30 13:21 太晓 阅读(50) 评论(0) 推荐(0) 编辑
摘要: operators = { 'exact': '= %s', 'iexact': 'LIKE %s', 'contains': 'LIKE BINARY %s', 'icontains': 'LIKE %s', 'regex': 'REGEXP BINARY %s', 'iregex': 'REGE 阅读全文
posted @ 2022-06-30 09:30 太晓 阅读(22) 评论(0) 推荐(0) 编辑