Metadata-Version: 2.1
Name: RestIFindPy
Version: 0.0.2
Summary: 基于Restplus实现同花顺iFinD接口分布式调用
Home-page: https://github.com/DataIntegrationAlliance/RestIFindPy
Author: MG
Author-email: mmmaaaggg@163.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: No Input/Output (Daemon)
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: Chinese (Simplified)
Classifier: Topic :: Software Development
Requires-Python: >=3.5
Requires-Dist: flask-restplus (>=0.11.0)
Requires-Dist: pandas (>=0.23.0)
Requires-Dist: requests (>=2.19.1)

# RestIFindPy
通过 flask_restplus 将 ifind接口 进行封装。这样可以通过rest调用的方式提取 ifind 数据。实现分布式调用

### 外部环境依赖及安装配置

#### ifind 环境配置
```commandline
python "d:\IDE\iFinD\bin\x64\installiFinDPy.py" "D:\IDE\iFinD\bin"
```

#### 测试接口文件安装是否成功
```python
from iFinDPy import *
# 返回 D:\WSPych\RestIFindPy\venv\lib\site-packages\iFinDPy.pth
# 说明安装成功

# 登陆
thsLogin = THS_iFinDLogin("fhtz069","663614")  # 0

thsDataDataPool  = THS_DataPool('block','2016-11-27;001005260','date:Y,security_name:Y,thscode:Y')
```



