Go to file
vn.py f6a0b63623
Merge pull request #1406 from nanoric/setup_py_windows
[Mod] setup.py: should not build under windows
2019-02-25 11:50:28 +08:00
docs
tests
vnpy [Add]flake8 setting file 2019-02-23 22:22:56 +08:00
.flake8 [Add]flake8 setting file 2019-02-23 22:22:56 +08:00
.gitignore
.travis.yml [Mod]change python to 3.6 in travis 2019-02-23 22:25:14 +08:00
check.py [Del]remove usage of pylint 2019-02-23 22:05:01 +08:00
LICENSE
README.md
requirements.txt [Mod] pip相关修改 2019-02-23 10:53:51 -04:00
setup.py [Mod] setup.py: should not build under windows 2019-02-24 23:34:44 -04:00

vnpy 2.0

贡献代码


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

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

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

  • 使用autopep8格式化你的代码。运行autopep8 --in-place --recursive . 即可。
  • 使用pylint检查你的代码(主要检查命名规则)确保没有error和warning。在项目根目录下运行pylint vnpy即可。
  • 使用flake8检查你的代码确保没有error和warning。在项目根目录下运行flake8即可。