httptrading 1.0.6__tar.gz → 1.0.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. {httptrading-1.0.6 → httptrading-1.0.7}/PKG-INFO +1 -1
  2. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading/model.py +3 -0
  3. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading.egg-info/PKG-INFO +1 -1
  4. {httptrading-1.0.6 → httptrading-1.0.7}/pyproject.toml +1 -1
  5. {httptrading-1.0.6 → httptrading-1.0.7}/LICENSE +0 -0
  6. {httptrading-1.0.6 → httptrading-1.0.7}/README.md +0 -0
  7. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading/__init__.py +0 -0
  8. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading/broker/__init__.py +0 -0
  9. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading/broker/base.py +0 -0
  10. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading/broker/futu_sec.py +0 -0
  11. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading/broker/interactive_brokers.py +0 -0
  12. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading/broker/longbridge.py +0 -0
  13. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading/broker/tiger.py +0 -0
  14. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading/http_server.py +0 -0
  15. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading/tool/__init__.py +0 -0
  16. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading/tool/leaky_bucket.py +0 -0
  17. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading/tool/locate.py +0 -0
  18. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading/tool/time.py +0 -0
  19. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading.egg-info/SOURCES.txt +0 -0
  20. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading.egg-info/dependency_links.txt +0 -0
  21. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading.egg-info/requires.txt +0 -0
  22. {httptrading-1.0.6 → httptrading-1.0.7}/httptrading.egg-info/top_level.txt +0 -0
  23. {httptrading-1.0.6 → httptrading-1.0.7}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: httptrading
3
- Version: 1.0.6
3
+ Version: 1.0.7
4
4
  Summary: 统一交易通道的接口服务
5
5
  Author-email: songwei <github@songwei.name>
6
6
  License: MIT
@@ -7,6 +7,9 @@ from dataclasses import dataclass, field
7
7
  class TradeType(enum.Enum):
8
8
  Securities = enum.auto()
9
9
  Cryptocurrencies = enum.auto()
10
+ Indexes = enum.auto() # 指数
11
+ Currencies = enum.auto() # 货币对
12
+ Yields = enum.auto() # 利率
10
13
 
11
14
 
12
15
  class Unit(enum.Enum):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: httptrading
3
- Version: 1.0.6
3
+ Version: 1.0.7
4
4
  Summary: 统一交易通道的接口服务
5
5
  Author-email: songwei <github@songwei.name>
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "httptrading"
3
- version = "1.0.6"
3
+ version = "1.0.7"
4
4
  description = "统一交易通道的接口服务"
5
5
  authors = [
6
6
  {name = "songwei", email = "github@songwei.name"},
File without changes
File without changes
File without changes