
python
java爱好者
JAVA爱好者
展开
-
Python 代码段
python zip文件操作# 将zip文件写入到数据库中def read_zip(): file_path = "./data/000001.SZ.zip" with ZipFile(file_path, 'r') as zf: flen = len(zf.namelist()) index = 0 for name in zf.namelist(): index += 1 if ZipI原创 2020-08-03 22:44:05 · 225 阅读 · 0 评论 -
vscode (Visual Studio Code) 配置Python 虚拟环境
配置run 运行相关launch.json{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft....原创 2020-04-25 14:48:35 · 1677 阅读 · 0 评论 -
Centos7 安装RabbitMQ
1. rpm 签名导入rpm --import https://packagecloud.io/rabbitmq/rabbitmq-server/gpgkey2. 安装rabbitmq_erlang, 仅支持rabbitmq的erlang2.1 rabbitmq_erlang.repo 文件创建安装文档命令行执行:# 1. 创建文件touch /etc/yum.repos.d...原创 2019-08-17 02:33:45 · 321 阅读 · 0 评论 -
DataFrame 数据写入到Redis
方式1redis.hset(key_name, field, df.to_msgpack(compress='zlib'))pd.read_msgpack(redis.hget(key_name, field))方式2import zlib, pickleredis.hset(key_name, field, zlib.compress(pickle.dumps(df), 5))...原创 2019-01-08 19:23:30 · 4406 阅读 · 0 评论 -
股票K线5,15,30,60分钟数据接口
1. 新浪接口https://quotes.sina.cn/cn/api/json_v2.php/CN_MarketDataService.getKLineData?symbol=sh000300&scale=30&ma=no&datalen=1023symnol = 股票代码scale = 5,15,30,60datalen = 获取数据长度,最大1023...原创 2019-01-08 13:48:17 · 30494 阅读 · 8 评论 -
Python watchdog 监控文件夹变化
from watchdog.observers import Observerfrom watchdog.events import FileSystemEventHandlerimport timeclass MyDirEventHandler(FileSystemEventHandler): def on_moved(self, event): print(...原创 2019-01-08 13:46:13 · 4189 阅读 · 1 评论 -
Python 修改输入法状态
import win32api,win32gui,win32conimport osimport timefrom enum import Enumclass Lan(Enum): """ 语言代码值参考:https://msdn.microsoft.com/en-us/library/cc233982.aspx """ EN = 0x4090409 ...原创 2019-01-07 13:43:37 · 4638 阅读 · 4 评论 -
Pywin32 使用Demo键盘输入与鼠标点击
import win32api,win32gui,win32conimport osimport timeclass WindowUtils(): VK_CODE = {'backspace': 0x08, 'tab': 0x09, 'clear': 0x0C, 'enter': 0x0D,...原创 2019-01-04 19:55:23 · 3620 阅读 · 2 评论 -
使用python计算最大回撤
使用python计算最大回撤1. 单期简单收益率Rt=Pt−Pt−1Pt−1R_{t}=\dfrac {P _{t}-P_{t-1}}{P_{t-1}}Rt=Pt−1Pt−Pt−1说明:RtR_tRt 为单期简单收益率PtP_tPt 为t期的价格Pt−1P_{t-1}Pt−1 为t-1期的价格import datetimeimport pandas as pd...原创 2018-12-04 15:05:09 · 7623 阅读 · 2 评论 -
softmax 输出结果转换成标签,argmax转one-hot
from sklearn import preprocessingimport numpy as npenc = preprocessing.OneHotEncoder(categories='auto')# 训练onehot编码,指定标签enc.fit([[1],[2],[3]])# 将标签转换成 onehot编码result =enc.transform([[1],[3],[...原创 2018-11-22 18:57:47 · 11186 阅读 · 0 评论 -
python 遍历list并删除部分元素
python 遍历list并删除部分元素有两个list,list_1 为0-9,list_2 为0-4,需要删除list_1中包含在list_2中的元素list_1 =[]for i in range(10): list_1.append(str(i))list_1['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']list...原创 2018-09-25 20:14:39 · 4549 阅读 · 1 评论 -
Python multiprocessing (多进程)使用
官方文档 https://docs.python.org/3.6/library/multiprocessing.htmlfrom multiprocessing import Pool, Managerimport time, random, os# 需要执行的函数def f(x): time.sleep(random.randint(1, 3)) return x,...原创 2018-09-12 14:12:22 · 525 阅读 · 0 评论