摘要:
https://www.cnblogs.com/413xiaol/p/6504856.html 阅读全文
摘要:
1、彩虹屁 https://chp.shadiao.app/ 2、情话 https://api.lovelive.tools/api/SweetNothings/:count/Serialization/:serializationType 3、git地址 https://github.com/MZ 阅读全文
摘要:
1、安装 Django # 大于2.0,小于2.1.5 dwebsocket paramiko 2、视图 from dwebsocket.decorators import accept_websocket import paramiko @accept_websocket def show_log 阅读全文
摘要:
1、分页器 class Pagination(object): def __init__(self, page_num, total_count, url_prefix, per_page=10, max_page=11): """ :param page_num: 当前页码数 :param tot 阅读全文
摘要:
测试,尚未开发完成 from __future__ import unicode_literals from threading import Timer from wxpy import * import requests from lxml import etree # 登录微信 bot = B 阅读全文
摘要:
1、setting.py 注意:创建log文件夹 # 存放Log的目录 LOGGING_DIR = os.path.join(BASE_DIR, 'log') LOGGING = { 'version': 1, 'disable_existing_loggers': True, 'formatter 阅读全文
摘要:
1、开启baidu-api的文字识别 2、查看官方文档 3、例子 import time import pymysql import requests from aip import AipOcr from config import dev_db from config import APP_ID 阅读全文
摘要:
1、安装 pip install opencv_python 2、具体代码(借鉴) import cv2 import numpy as np # 均值哈希算法 def aHash(img): # 缩放为8*8 img = cv2.resize(img, (8, 8), interpolation= 阅读全文
摘要:
1、镜像 https://elasticsearch.thans.cn/downloads/elasticsearch/elasticsearch-7.3.2-windows-x86_64.zip 2、安装(参考) http://www.pianshen.com/article/1577447535 阅读全文
摘要:
1、获取系统当前的时间(毫秒) 与Date类中getTime()方法相似 package cn.wt.day12; import java.util.Date; public class Demon03 { public static void main(String[] args) { long 阅读全文