博客是我工作的好帮手,遇到困难就来博客找资料
发布时间:2017-03-14 21:56:43
1.将字符串的时间转换为时间戳 方法: a = "2013-10-10 23:40:00" 将其转换为时间数组 import time timeArray = time.strptime(a, "%Y-%m-%d %H:%M:%S")转换为时.........【阅读全文】
发布时间:2017-03-14 19:01:19
import 作用: 导入/引入一个Python标准模块,其中包括.py文件、带有__init__.py文件的目录。e.g:[python] view plaincopy import module_name[,module1,...] from module import *|child[,child1,...] 说明:多次重复使用import语句时,不会重新加载被指定的模块,只是把.........【阅读全文】
发布时间:2017-03-14 17:37:39
#encoding=utf-8# -*- coding:utf-8 -*- import osimport calendarimport datetimeimport MySQLdbimport os, sys, re,stringimport time, tarfile,getoptimport socketimport structreload(sys)sys.setdefaultencoding('utf-8')optmap = { 'dbuser': 'tongji', 'dbpass'.........【阅读全文】
发布时间:2017-03-13 20:53:29
1.安装openssl[root@c6 ~]# yum install -y openssl openssl-devel___________________________________________________________ yum安装方式http://www.openssl.org/source/ #下载openssl[root@Web_server src]# tar xf openssl-1.0.1s.tar.gz[root@Web_server src.........【阅读全文】
发布时间:2017-03-13 20:23:56
自制ssl凭证建立凭证文件[root@bird certs]# cd /etc/pki/tls/certs/[root@bird certs]# make xxx.key[root@bird certs]# mv xxx.key xxx.key.raw[root@bird certs]# openssl rsa -in xxx.key.raw -out xxx.key[root@bird certs]# rm -f xxx.key.raw[root@bird.........【阅读全文】