Skip to content

Commit 6f59c43

Browse files
committed
[Mod] 优化文档和代码细节,版本号1.0.0
1 parent 7fbbb29 commit 6f59c43

File tree

5 files changed

+33
-12
lines changed

5 files changed

+33
-12
lines changed

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
MIT License
1+
The MIT License (MIT)
22

3-
Copyright (c) 2021 vn.py
3+
Copyright (c) 2015-present, Xiaoyou Chen
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
1-
# vnpy_excelrtd
2-
vn.py框架的Excel RTD应用模块
1+
# vn.py框架的Excel RTD应用模块
32

43
<p align="center">
54
<img src ="https://vnpy.oss-cn-shanghai.aliyuncs.com/vnpy-logo.png"/>
65
</p>
76

87
<p align="center">
98
<img src ="https://img.shields.io/badge/version-1.0.0-blueviolet.svg"/>
10-
<img src ="https://img.shields.io/badge/platform-windows|linux|macos-yellow.svg"/>
9+
<img src ="https://img.shields.io/badge/platform-windows-yellow.svg"/>
1110
<img src ="https://img.shields.io/badge/python-3.7-blue.svg" />
1211
<img src ="https://img.shields.io/github/license/vnpy/vnpy.svg?color=orange"/>
1312
</p>
1413

1514
## 说明
1615

17-
RTD全称是RealTimeData,是微软提供的主要面向金融行业中实时数据需求设计的Excel数据对接方案,而ExcelRtd模块则是vn.py官方提供的用于实现在Excel中访问vn.py程序内任意数据信息的功能模块。
16+
RTD全称是RealTimeData,是微软提供的主要面向金融行业中实时数据需求设计的Excel数据对接方案.
17+
18+
ExcelRtd模块则是vn.py官方提供的用于实现在Excel中访问vn.py程序内任意数据信息的功能模块。
1819

1920
## 安装
2021

21-
安装需要基于2.7.0版本以上的[VN Studio](https://www.vnpy.com)
22+
安装需要基于2.8.0版本以上的[VN Studio](https://www.vnpy.com)
2223

2324
直接使用pip命令:
2425

setup.cfg

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,9 @@ keywords =
1616
algotrading
1717
classifiers =
1818
Development Status :: 5 - Production/Stable
19-
Operating System :: OS Independent
19+
Operating System :: Microsoft :: Windows
2020
Programming Language :: Python :: 3
2121
Programming Language :: Python :: 3.7
22-
Programming Language :: Python :: 3.8
23-
Programming Language :: Python :: 3.9
24-
Programming Language :: Python :: 3.10
2522
Topic :: Office/Business :: Financial :: Investment
2623
Programming Language :: Python :: Implementation :: CPython
2724
License :: OSI Approved :: MIT License
@@ -32,6 +29,7 @@ packages = find:
3229
zip_safe = False
3330
install_requires =
3431
importlib_metadata
32+
pyxll
3533

3634
[options.package_data]
3735
* = *.ico

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from setuptools import setup
22

3-
setup()
3+
setup()

vnpy_excelrtd/__init__.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# The MIT License (MIT)
2+
#
3+
# Copyright (c) 2015-present, Xiaoyou Chen
4+
#
5+
# Permission is hereby granted, free of charge, to any person obtaining a copy
6+
# of this software and associated documentation files (the "Software"), to deal
7+
# in the Software without restriction, including without limitation the rights
8+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
# copies of the Software, and to permit persons to whom the Software is
10+
# furnished to do so, subject to the following conditions:
11+
#
12+
# The above copyright notice and this permission notice shall be included in all
13+
# copies or substantial portions of the Software.
14+
#
15+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
# SOFTWARE.
22+
123
from pathlib import Path
224
from vnpy.trader.app import BaseApp
325
from .engine import RtdEngine, APP_NAME

0 commit comments

Comments
 (0)