一,简介 此CTP Python API在Windows上由Python3.X系列互不兼容,所以分别编译了Python3.7和Python3.8的版本,在Windows上使用时请安装相应的Python版本,linux上无此问题。该API是用swig方法在官方C ++ API上编译得到的,完全开放的,有兴趣自己编译的读者Windows64版可以参考笔者博客,Linux版只需要参考笔者其他博客,更改下makefile即可。此方法编译得到的API在数据结构,参数名,函数名及用法上与C ++版API完全一致,十分容易上手。 Github上是否不方便下,请到gitee上下载扫码进入QQ群群文件中下载。编译维护不易,欢迎星级,叉鼓励。 二,文件清单 . |-- 6.3.19_API接口说明_20200511.chm //官方文档,也可至http://www.sfit.com.cn/下载(加了日期便于区别版本) |-- demo //相关demo,见下面章节详述 | |-- calculate_volume_delta.py | |-- candle_demo.py | |-- md_
2022-05-17 19:56:18 32.71MB api python3 ctp APIPython
1
python-plexapi:Plex API的Python绑定
2021-12-02 13:57:46 20.27MB python api plex APIPython
1
finnhub-python API文档: : API版本:1.0.0 套件版本:2.3.0 安装 安装套件 pip install finnhub-python 入门 如果您来自版本1,请参考 import finnhub # Setup client finnhub_client = finnhub . Client ( api_key = "YOUR API KEY" ) # Stock candles res = finnhub_client . stock_candles ( 'AAPL' , 'D' , 1590988249 , 1591852249 ) print ( res ) #Convert to Pandas Dataframe import pandas as pd print ( pd . DataFrame ( res )) # Aggregate Indicators print ( finnhub_client . aggregate_indicator ( 'AAPL' , 'D' )) # Basic financials print (
2021-08-18 15:51:48 16KB api stock finnhub APIPython
1