码迷,mamicode.com
首页 >  
搜索关键字:zen coding    ( 13130个结果
python获取windows的硬件信息
# -*- coding: UTF-8 -*- ''' @Project -> File :CMDB -> collect_windows_info.py @IDE :PyCharm @Author :XuMou @Date :2020/7/30 12:57 ''' import platform ...
分类:编程语言   时间:2020-07-30 14:20:21    阅读次数:80
Python+Selenium键盘的几种操作:send_keys(Keys.CONTROL,'a')
1 # #!/usr/bin/python3 2 # -*- coding: utf-8 -*- 3 # @Time : 2020/7/30 9:07 4 # @Author : Gengwu 5 # @FileName: Keys_Option.py 6 # @Software: PyCharm ...
分类:编程语言   时间:2020-07-30 10:48:30    阅读次数:124
gai ip
# coding=utf-8 # This script is uesd to modify Agent IP at the first time of machine started. import requests import json import time import os import ...
分类:其他好文   时间:2020-07-29 17:54:47    阅读次数:80
flask项目搭建
config 配置 1 # -*- coding = utf-8 -*- 2 # @Time : 2020/7/28 17:51 3 # @Author : 贾伟文 4 # @File : config.py 5 # @Software : PyCharm 6 7 DB_URI = 'mysql:/ ...
分类:其他好文   时间:2020-07-29 10:28:10    阅读次数:67
06 图书管理系统(SSM+LayUi)
整合spring和springmvc 1、在web.xml中添加spring监听器 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http:/ ...
分类:其他好文   时间:2020-07-29 10:18:29    阅读次数:53
<Socket>Socket网络编程
Socket层 Socket有一个缓冲区,缓冲区是一个流,先进先出,发送和取出的可自定义大小的,如果取出的数据未取完缓冲区,则可能存在数据怠慢。造成粘包的问题 黏包问题:文件大小和文件内容,一起在缓冲区发送给服务端,就会产生粘包的现象 Socket发送两条连续数据时,可能最终会拼接成一条进行发送 解 ...
分类:其他好文   时间:2020-07-28 22:26:39    阅读次数:69
Servlet[jsp]的Servlet.service()引发了具有根本原因的异常无法在web.xml或使用此应用程序部署的jar文件中解析绝对uri:[http://java.sun.com/jsp/jstl/core]
28-Jul-2020 11:44:56.960 严重 [http-nio-8080-exec-1] org.apache.catalina.core.StandardWrapperValve.invoke 在路径为的上下文中,Servlet[jsp]的Servlet.service()引发了具有根 ...
分类:编程语言   时间:2020-07-28 14:45:05    阅读次数:609
shutil文件去重模块
使用文档 # -*- coding:utf-8 -*- #! python2 import shutil a=0 readDir = r"D:\pycharm-project\my-project\test\thefile2018-11-27.sh" writeDir = r"D:\pycharm- ...
分类:其他好文   时间:2020-07-28 14:00:53    阅读次数:62
configparser 配置文件模块
#!-*-coding:utf-8-*- from configparser import ConfigParser cfg = ConfigParser() cfg.read('config.ini') # 获取指定section 的option值 #第一参数是section 第二个参数是opti ...
分类:其他好文   时间:2020-07-28 13:58:54    阅读次数:57
requests模块使用
#!/usr/bin/python import requests if __name__ == "__main__": url = 'https://sogou.com' response = requests.get(url=url) page_text = response.text prin ...
分类:其他好文   时间:2020-07-28 10:18:26    阅读次数:68
13130条   上一页 1 ... 34 35 36 37 38 ... 1313 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!