File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,23 @@ ShiPanE-Python-SDK
2323- `米筐(RiceQuant) `_ 集成
2424- 优矿(Uqer)集成
2525
26+ 基本用法
27+ --------------
28+
29+ .. code :: python
30+
31+ import logging
32+
33+ import shipane_sdk
34+
35+ logging.basicConfig(level = logging.DEBUG )
36+
37+ client = shipane_sdk.Client(host = ' localhost' , port = 8888 , key = ' ' )
38+ account_info = client.get_account(' title:monijiaoyi' )
39+ print (account_info)
40+
41+ 详见:examples/basic_example.py
42+
2643定时任务调度
2744--------------
2845
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+
3+ import logging
4+
5+ import shipane_sdk
6+
7+ logging .basicConfig (level = logging .DEBUG )
8+
9+ client = shipane_sdk .Client (host = 'localhost' , port = 8888 , key = '' )
10+ account_info = client .get_account ('title:monijiaoyi' )
11+ print (account_info )
You can’t perform that action at this time.
0 commit comments