Skip to content

Commit

Permalink
[Mod] 更新版本号到1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vnpy committed Feb 20, 2022
1 parent aac1858 commit 55da649
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 1.0.0版本
# 1.0.1版本

1. 将模块的图标文件信息,改为完整路径字符串
2. 调整接口初始化时,接口名称的赋值方式
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,33 @@
# vn.py框架的RPC服务应用
# VeighNa框架的RPC服务应用

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

<p align="center">
<img src ="https://img.shields.io/badge/version-1.0.0-blueviolet.svg"/>
<img src ="https://img.shields.io/badge/version-1.0.1-blueviolet.svg"/>
<img src ="https://img.shields.io/badge/platform-linux|windows|mac-yellow.svg"/>
<img src ="https://img.shields.io/badge/python-3.7|3.8|3.9|3.10-blue.svg" />
<img src ="https://img.shields.io/github/license/vnpy/vnpy.svg?color=orange"/>
</p>

## 说明

基于pyzmq开发的RPC服务模块,允许将某一vn.py进程启动为服务端,作为统一的行情和交易路由通道,允许多客户端同时连接,实现实现跨进程或者跨网络的分布式系统。
基于pyzmq开发的RPC服务模块,允许将某一VeighNa进程启动为服务端,作为统一的行情和交易路由通道,允许多客户端同时连接,实现实现跨进程或者跨网络的分布式系统。

## 安装

安装需要基于3.0.0版本以上的[VN Studio](https://www.vnpy.com)
安装环境推荐基于3.0.0版本以上的[**VeighNa Studio**](https://www.vnpy.com)

直接使用pip命令:

```
pip install vnpy_rpcservice
```

下载解压后在cmd中运行

或者下载源代码后,解压后在cmd中运行:

```
pip install -e .
pip install .
```
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[metadata]
name = vnpy_rpcservice
version = 1.0.0
version = 1.0.1
url = https://www.vnpy.com
license = MIT
author = Xiaoyou Chen
author_email = [email protected]
description = RPC service application and gateway for vn.py quant trading framework.
description = RPC service application and gateway for VeighNa quant trading framework.
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
Expand Down
2 changes: 1 addition & 1 deletion vnpy_rpcservice/rpc_gateway/rpc_gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

class RpcGateway(BaseGateway):
"""
vn.py用于连接rpc服务的接口
VeighNa用于连接rpc服务的接口
"""

default_name: str = "RPC"
Expand Down
2 changes: 1 addition & 1 deletion vnpy_rpcservice/rpc_service/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

class RpcEngine(BaseEngine):
"""
vn.py的rpc服务引擎
VeighNa的rpc服务引擎
"""
setting_filename: str = "rpc_service_setting.json"

Expand Down

0 comments on commit 55da649

Please sign in to comment.