背景:gitalk需要人工访问文章页才能触发创建issue 其实有个更简便的方式,当我们push代码到github时,可以利用github action的自动化流程自动执行下面的python脚本来创建issue,在编写Github Action时,设定触发条件为push,详细的yml脚本内容为: c ...
分类:
编程语言 时间:
2021-01-26 12:36:45
阅读次数:
0
1.hashlib 摘要算法简介 Python的hashlib提供了常见的摘要算法,如MD5,SHA1等等。 什么是摘要算法呢?摘要算法又称哈希算法、散列算法。它通过一个函数,把任意长度的数据转换为一个长度固定的数据串(通常用16进制的字符串表示)。 举个例子,你写了一篇文章,内容是一个字符串'ho ...
分类:
编程语言 时间:
2021-01-06 12:09:10
阅读次数:
0
code # -*- coding:utf-8 -*- from flask import Flask from flask import request import hashlib import time import re import xml.etree.ElementTree as ET ...
分类:
微信 时间:
2020-12-29 11:45:23
阅读次数:
0
由于我的VScode出了问题就在终端里使用。 text='20201225' import hashlib m=hashlib.md5() m. update(str.encode(text))m=m.hexdigest()import uuidres=str(uuid.uuid4)print(re ...
分类:
其他好文 时间:
2020-11-01 09:57:34
阅读次数:
22
1、服务器端 1 import socket,os,hashlib 2 server=socket.socket() 3 server.bind(("localhost",9999)) # 绑定套接字 4 5 server.listen() # 服务器监听 6 """ 7 FTP 流程 8 1.读取 ...
分类:
其他好文 时间:
2020-10-29 09:20:17
阅读次数:
14
首先打开之后是一个py文件,本地跑一下,出错 显示说, 源码为: import hashlib for i in range(32,127): for j in range(32,127): for k in range(32,127): m=hashlib.md5() m.update('TASC ...
分类:
其他好文 时间:
2020-10-18 16:43:26
阅读次数:
33
import hashlib md5 = hashlib.md5() #hashlib.sha..... md5.update(b'密码‘) print ( md5.hexdigest()) #打印出哈希值 md5 = hashlib.md5(bytes('salt', encoding = 'ut ...
分类:
其他好文 时间:
2020-09-03 17:02:07
阅读次数:
47
import hashlib sign_msg = "password" #可以拼接id,时间和key等信息 sign_svr = hashlib.sha1(sign_msg.encode(encoding='utf-8')).hexdigest() ...
分类:
其他好文 时间:
2020-08-07 18:05:09
阅读次数:
75
import datetime import time import json import hashlib import base64 import requests import pandas import browsercookie from collections import Counte ...
分类:
编程语言 时间:
2020-07-29 09:54:19
阅读次数:
69
import struct,sys from socket import * from contextlib import closing import hashlib,os from functools import partial from prettytable import PrettyTa ...
分类:
数据库 时间:
2020-07-28 00:00:14
阅读次数:
92