配置项 为了方便的图片的保存与展示,可以在 配置文件中,指明 图片资源的路径 1 import os 2 ? 3 ? 4 class Config(object): 5 DEBUG = True 6 SQLALCHEMY_DATABASE_URI = 'mysql://root:mysql@127. ...
分类:
其他好文 时间:
2021-06-15 18:16:21
阅读次数:
0
为某些原因,需要读取d.lib后缀的文件, os.listdir() 语法:os.listdir(path) 函数用途:输出路径下所有文件的文件名 import os path = "E:/vs_code/qtVideo/lib" datanames = os.listdir(path) for i ...
分类:
编程语言 时间:
2021-06-13 10:37:18
阅读次数:
0
冲刺任务:完成用户注册功能和数据库类 RegisterActivity.java package com.example.helloworld; import android.content.Intent; import android.os.Bundle; import android.text. ...
分类:
移动开发 时间:
2021-06-11 18:08:57
阅读次数:
0
JVM (Java Virtual Machine) 基础篇 内存结构 程序计数器 定义: 当前线程所执行字节码的行号指示器,指向下一个要执行的指令代码 **一个线程的执行,是通过字节码解释器改变当前线程的计数器的值,来获取下一条需要执行的字节码指令,从而确保线程的正确执行**。 为了确保线程切换后 ...
分类:
编程语言 时间:
2021-06-10 18:12:02
阅读次数:
0
配置示例 # setting.py配置如下 ## 访问 http://IP/static/***.css STATIC_URL = '/static/' ## python manage.py collectstatic时,把所有静态文件聚集到此目录下 STATIC_ROOT = os.path.j ...
分类:
其他好文 时间:
2021-06-10 17:37:06
阅读次数:
0
#encoding=utf-8 import pandas as pd import os import csv def concat_csv(filename,dirpath): with open(filename,'w') as f: cw=csv.writer(f) cw.writerow( ...
分类:
其他好文 时间:
2021-06-09 15:30:20
阅读次数:
0
Prerequisites: Node OS IP k8s-master CentOS7 192.168.137.161 k8s-node1 CentOS7 192.168.137.162 Now we have 2 working CentOS virtual machine, which can ...
分类:
其他好文 时间:
2021-06-08 23:40:34
阅读次数:
0
import multiprocessing, time, os# def pro(name):# print('hello', name, time.ctime())## if __name__ == '__main__':# l = []# for t in range(4):# t = mul ...
分类:
系统相关 时间:
2021-06-08 23:20:39
阅读次数:
0
首先ActiveX注册: 使用regsrv32命令注册ocx文件 说明控件已被成功注册 反注册依然使用这个命令,只不过后面需要添加-u参数 如果时间过久,此ocx文件已删除,那么需要从注册表中删除 HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Classes/CLS ...
分类:
其他好文 时间:
2021-06-07 20:54:27
阅读次数:
0
@staticmethoddef unzip_file(failed_file): zip_file = zipfile.ZipFile(failed_file) print(zip_file) if os.path.isdir(failed_file[0:-20]): pass else: os. ...
分类:
编程语言 时间:
2021-06-07 20:42:48
阅读次数:
0