-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
519 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[flake8] | ||
exclude = venv,build,__pycache__,__init__.py,ib,talib,uic | ||
ignore = | ||
E501 line too long, fixed by black | ||
W503 line break before binary operator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,15 @@ | ||
# vnpy_mongodb | ||
vn.py框架的MongoDB数据库接口 | ||
# vn.py框架的MongoDB数据库接口 | ||
|
||
<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/platform-windows|linux|macos-yellow.svg"/> | ||
<img src ="https://img.shields.io/badge/python-3.7-blue.svg" /> | ||
</p> | ||
|
||
## 说明 | ||
|
||
基于mongoengine开发的MongoDB数据库接口。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[metadata] | ||
name = vnpy_mongodb | ||
version = 1.0.0 | ||
url = https://www.vnpy.com | ||
license = MIT | ||
author = Xiaoyou Chen | ||
author_email = [email protected] | ||
description = MongoDB database manager for vn.py quant trading framework. | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
keywords = | ||
quant | ||
quantitative | ||
investment | ||
trading | ||
algotrading | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Operating System :: OS Independent | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Topic :: Office/Business :: Financial :: Investment | ||
Programming Language :: Python :: Implementation :: CPython | ||
License :: OSI Approved :: MIT License | ||
Natural Language :: Chinese (Simplified) | ||
|
||
[options] | ||
packages = find: | ||
zip_safe = False | ||
install_requires = | ||
mongoengine |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from setuptools import setup | ||
|
||
|
||
setup() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# The MIT License (MIT) | ||
# | ||
# Copyright (c) 2015-present, Xiaoyou Chen | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in all | ||
# copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
# SOFTWARE. | ||
|
||
|
||
import importlib_metadata | ||
|
||
from .mongodb_database import MongodbDatabase as Database | ||
|
||
try: | ||
__version__ = importlib_metadata.version("vnpy_mongodb") | ||
except importlib_metadata.PackageNotFoundError: | ||
__version__ = "dev" |
Oops, something went wrong.