Go to file
2019-01-19 02:14:10 -04:00
tests [Add] BaseApp for app development 2019-01-18 09:35:35 +08:00
tools/ci [Mod] move travis/ into tools/ci 2019-01-19 02:14:10 -04:00
vnpy [Add] CTA engine and template for creating strategies 2019-01-19 13:12:29 +08:00
.gitignore [Add] Add trader constant definition 2019-01-06 20:13:50 +08:00
.pylintrc [Fix] Fixed format error and naming error 2019-01-18 01:24:15 -04:00
.style.yapf Merge branch 'v2.0-DEV' of https://github.com/vnpy/vnpy into v2.0-DEV 2019-01-08 20:45:37 +08:00
.travis.yml [Mod] move travis/ into tools/ci 2019-01-19 02:14:10 -04:00
LICENSE [Add]add license file 2019-01-04 15:14:15 +08:00
Readme.md [Fix] 修复:pylint的代码少了个. 2019-01-13 00:29:17 -04:00
requirements-dev.txt [Add] added travis script 2019-01-07 02:20:54 -04:00
requirements.txt [Add] Rest and websocket client 2019-01-13 13:23:10 +08:00

vnpy 2.0

贡献代码


如果你遇到了任何BUG欢迎创建 Issue

我们热烈欢迎任何人为我们的项目贡献代码。无论是多么细小的改工,都可以提交PR我们会认真对待每一个PR。

在提交代码的时候,请遵守以下规则,以提高代码质量:

  • 使用yapf目前必须使用github上的最新代码pip install https://github.com/google/yapf/archive/master.zip)格式化你的代码。对你的每一个文件运行yapf -i --style .style.yapf <file>即可。
  • 使用pylint检查你的代码确保没有error和warning。我们使用的pylint规则在项目根目录下。运行pylint --rcfile=.pylintrc vnpy即可。