python
乡村农夫
双重彩虹是什么意思呢
展开
-
python pandas 求移动平均值
pandas原创 2022-06-15 20:35:14 · 1215 阅读 · 0 评论 -
centos pip3 install mysqlclient 报错
先安装这个:yum install mysql-devel原创 2022-04-11 17:14:48 · 1092 阅读 · 0 评论 -
获取上交所可转债基本信息
目标网页地址:http://www.sse.com.cn/assortment/bonds/list/源码:# from urllib import request# # resp=request.urlopen("http://www.hkexnews.hk/sdw/search/mutualmarket_c.aspx?t=sh")# # print(resp.read(10))import requestsfrom lxml import etreeimport jsonimp原创 2022-03-04 15:11:47 · 859 阅读 · 0 评论 -
python 教程收藏
dataframe 行列索引原创 2022-01-27 17:01:09 · 940 阅读 · 0 评论 -
python list 排序
dataItem = [{'发生时间':"20210101", "data": 123}, {'发生时间':"20210102", "data": 456}]降序:dataItem = sorted(dataItem, key=(lambda x: [x['发生时间']]), reverse = True)升序:dataItem = sorted(dataItem, key=(lambda x: [x['发生时间']]))...原创 2022-01-10 10:45:29 · 323 阅读 · 2 评论 -
python3 通过websockets发送wss请求的例子
import asyncioimport websocketsimport jsonmsg = \{ "method" : "SUBSCRIBE", "id" : 9344, "params" : "public/get_book_summary_by_currency", "params" : { "currency" : "BTC", "kind" : "future" }}async def call_api(msg): async with.原创 2021-11-30 15:07:11 · 4565 阅读 · 1 评论 -
Python cythonize 讲py文件编译成so
python3 make_python.py build_ext --build-lib .原创 2021-11-24 15:47:03 · 644 阅读 · 0 评论 -
python3 log按天分割文件
import logging, datetime, logging.handlersimport timeif __name__ == "__main__": # 两个日志,错误日志和运行日志,输出文件路径及文件名 logger = logging.getLogger("mylog") logger.setLevel(logging.DEBUG) DATE_FORMAT = "%Y-%m-%d %H:%M:%S %p" LOG_FORMAT = "%(as.原创 2021-11-12 17:01:22 · 975 阅读 · 0 评论 -
安装python 3.6m
https://blog.csdn.net/saibeifeng187/article/details/107212473/?utm_medium=distribute.pc_relevant.none-task-blog-baidujs_title-8&spm=1001.2101.3001.4242原创 2021-06-21 17:19:22 · 2610 阅读 · 0 评论 -
Cython学习
新建一个setup.py,内容如下:from distutils.core import setupfrom Cython.Build import cythonizesetup(name='frcnn_cython', ext_modules = cythonize('st_1127.pyx'))# $ python setup.py build_ext --inplace编译python setup.py build_ext --inplace...原创 2021-06-21 17:15:01 · 55 阅读 · 0 评论 -
linux完全卸载python
1.卸载自动Python#rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps转载 2021-06-09 14:45:30 · 9650 阅读 · 0 评论 -
获取sql中的表名
项目上遇到一个需求,在很多sql种提取出所有表名。代码如下:# 这个脚本有一个前提,就是from接表名之后必定有一个where。通常情况下也都是如此strSql = "select * from mm a, bb b where a > 0; select * from cc a, dd, qq, aa b where a > 0;"def check_ch(ch): if ch >= '0' and ch <= '9': return F原创 2021-04-01 21:41:22 · 1941 阅读 · 0 评论 -
python list 去重
list1 = [1,2,1,3]print(set(list1))print(list1){1, 2, 3}[1, 2, 1, 3]原创 2021-04-01 20:48:42 · 133 阅读 · 0 评论 -
python 时间戳和字符串相互转换
import time# 字符串转换为时间戳timeArray = time.strptime("2021-03-19 10:00:00", "%Y-%m-%d %H:%M:%S")timeStamp = int(time.mktime(timeArray))# 时间戳转换为字符串timeArray = time.localtime(timeStamp)timeStr = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)print...原创 2021-03-19 21:24:19 · 5928 阅读 · 2 评论 -
2021-01-10NumPy使用教程
NumPy是python中很常用的基础库,在这里做个笔记。尽管内容不很全面,若加上自己举一反三的能力,掌握这些基本够用了。NumPy数组创建: np.empty(shape, dtype = float, order = 'C') #shape形状, dtype类型, order存储元素的顺序(一般不用指定这一项)。 np.zeros(shape, dtype = float, order = 'C') np.ones(shape, dtype = float, order = 'C') .原创 2021-01-10 22:47:36 · 516 阅读 · 1 评论 -
农历生日和阳历生日同一天是哪一天
<iframe src="https://tool.lu/coderunner/embed/abc.html" width="650" height="550" frameborder="0" mozallowfullscreen webkitallowfullscreen allowfullscreen></iframe>原创 2020-12-06 14:28:54 · 1474 阅读 · 1 评论 -
LSTM预测未来一天股票收盘价
# 导入所需库import pandas as pdimport numpy as npfrom numpy import logfrom sklearn.preprocessing import MinMaxScalerfrom tensorflow.keras.models import Sequentialfrom tensorflow.keras.layers import...原创 2020-04-19 03:37:22 · 1710 阅读 · 8 评论 -
anaconda 历史版本清华下载
https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/原创 2020-04-16 22:41:01 · 352 阅读 · 0 评论 -
ubuntu 卸载 python3.6
sudo apt-get purge --auto-remove python3.6原创 2020-04-14 05:15:46 · 2294 阅读 · 1 评论 -
python 3.7如何安装pyqt4
项目用到pyqt4,但是官网python3.7已经不支持pyqt4了。官网地址:https://sourceforge.net/projects/pyqt/files/PyQt4/还好这个网站可以下载到 支持python3.7的pyqt版本:https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyqt4下载pyqt对应的版本之后: pip in...原创 2020-04-14 00:44:57 · 2426 阅读 · 0 评论 -
python Dataframe按条件删除某行,删除某列
1.删除df.ts_code大于等于"500000"且小于"600000"的所有行 df = df.drop(df[(df.ts_code >= "500000") & (df.ts_code < "600000")].index)2.删除exchange_id列 df = df.drop('exchange_id', axis=1)...原创 2020-02-29 14:17:50 · 47238 阅读 · 2 评论 -
python matplotlib pyecharts绘制股市行情个股信息K线动态图表
# coding: utf-8 # In[1]: # 从网上获取股票交易历史数据# url = 'http://quotes.money.163.com/service/chddata.html?code=1000001&start=19910401&end=19910409'# url += '&fields=LCLOSE;TOPEN;HIGH;LO...转载 2020-01-20 01:32:51 · 1616 阅读 · 2 评论 -
pip临时使用清华镜像
可以在使用pip的时候加参数-ihttps://pypi.tuna.tsinghua.edu.cn/simple例如:pip install -ihttps://pypi.tuna.tsinghua.edu.cn/simplemysqlclient,这样就会从清华这边的镜像去安装mysqlclient库。...原创 2020-01-15 00:02:50 · 1187 阅读 · 1 评论 -
基于statsmodels的股票估值线性回归模型
from pandas import DataFrameimport statsmodels.api as smStock_Market = {'股票代码': ['002323', '000520', '000001', '603619'], '日期':['2020-01-13', '2020-01-13', '2020-01-13', '2020-01-...原创 2020-01-13 17:26:30 · 1156 阅读 · 0 评论 -
Python pywin32库升级到最新版本之后不能用
今天安装PsychoPy库得时候,提示pywin32版本太低,要求大于等于223版本,然后直接在pycharm升级pywin32到最新版本,之后原来的程序加载不了pywin32相关的库了,报错 ”importwin32api#noqa:E402“ 如下图:解决办法: 指定pywin32安装的版本 ——pip install pywin32==223...原创 2020-01-05 16:13:59 · 2424 阅读 · 0 评论