Skip to content

Commit

Permalink
修改 说明文字。
Browse files Browse the repository at this point in the history
  • Loading branch information
yhy committed Sep 21, 2021
1 parent b6e4988 commit 605684c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
7 changes: 1 addition & 6 deletions web/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
import numpy as np
import akshare as ak
import bokeh as bh
import talib
import jupyter


class Application(tornado.web.Application):
def __init__(self):
Expand Down Expand Up @@ -64,13 +61,11 @@ def get(self):
numpyVersion = np.__version__
akshareVersion = ak.__version__
bokehVersion = bh.__version__
talibVersion = talib.__version__
jupyterVersion = jupyter.__version__
#stockstatsVersion = ss.__version__ # 没有这个函数,但是好久不更新了
# https://github.com/jealous/stockstats
self.render("index.html", pandasVersion=pandasVersion, numpyVersion=numpyVersion,
akshareVersion=akshareVersion, bokehVersion=bokehVersion,
stockstatsVersion="0.3.2", talibVersion=talibVersion, jupyterVersion=jupyterVersion,
stockstatsVersion="0.3.2",
pythonStockVersion = common.__version__,
leftMenu=webBase.GetLeftMenu(self.request.uri))
class TestHandler(webBase.BaseHandler):
Expand Down
3 changes: 0 additions & 3 deletions web/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

<h3 class="header smaller lighter blue">开源Python全栈股票系统,数据抓取、统计分析、报表展示。</h3>


<div class="clearfix">
<div class="pull-left tableTools-container">
<h3>基础报版本</h3>
Expand All @@ -14,8 +13,6 @@ <h3>基础报版本</h3>
<p>3,akshare使用【 {{ akshareVersion }} 】版本, <a href="https://www.akshare.xyz/" target="_blank">中文文档</a></p>
<p>4,bokeh使用【 {{ bokehVersion }} 】版本, <a href="http://docs.bokeh.org/en/latest/" target="_blank">官方文档</a></p>
<p>5,stockstats使用【 {{ stockstatsVersion }} 】版本, <a href="https://github.com/jealous/stockstats/" target="_blank">官方文档</a></p>
<p>6,TA-Lib使用【 {{ talibVersion }} 】版本, <a href="https://pypi.org/project/TA-Lib/" target="_blank">官方文档</a></p>
<p>7,jupyter使用【 {{ jupyterVersion }} 】版本, <a href="https://jupyter-notebook.readthedocs.io/en/latest/" target="_blank">官方文档</a></p>
</div>
</div>

Expand Down

0 comments on commit 605684c

Please sign in to comment.