
python
小乙先生
这个作者很懒,什么都没留下…
展开
-
mysql python 自动备份
代码很简单,实现方式不止一种,这里我给个小例子, python3.5 间隔多久备份一次mysql 数据库 import time import os from apscheduler.schedulers.blocking import BlockingScheduler class BackUpDatabase: def __init__(self,option): ...原创 2018-10-25 14:46:59 · 615 阅读 · 0 评论 -
python 连接 oracle
//环境window python3.6 安装过plsql #!/usr/bin/python # -*- coding: UTF-8 -*- import cx_Oracle as oracle import sys import os import io sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8') o...原创 2018-10-24 15:41:19 · 1631 阅读 · 0 评论 -
python3导出oracle表信息到表格
#!/usr/bin/python # -*- coding: UTF-8 -*- #author xiaoyi import cx_Oracle as oracle import sys import os import io import xlwt sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8') os.en...原创 2018-11-10 11:04:34 · 1362 阅读 · 0 评论 -
whl下载网站
https://www.lfd.uci.edu/~gohlke/pythonlibs/#pandas原创 2019-06-25 08:32:50 · 7215 阅读 · 1 评论 -
python多维数组切片
详见原创地址转载 2019-06-22 11:31:14 · 1987 阅读 · 0 评论