├── .gitignore ├── LICENSE ├── README.md ├── documents ├── 低风险及套利类.md ├── 公用类.md ├── 前言.md ├── 基础类.md ├── 宏观经济数据类.md ├── 市场类.md ├── 投资参考类.md ├── 股票交易类.md ├── 股票信息类.md ├── 股票所属类.md └── 龙虎榜类.md ├── gugu ├── __init__.py ├── base.py ├── billboard.py ├── classify.py ├── config.py ├── lowriskintarb.py ├── macro.py ├── marketdata.py ├── reference.py ├── stockdata.py ├── stockinfo.py └── utility.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/README.md -------------------------------------------------------------------------------- /documents/低风险及套利类.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/documents/低风险及套利类.md -------------------------------------------------------------------------------- /documents/公用类.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/documents/公用类.md -------------------------------------------------------------------------------- /documents/前言.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/documents/前言.md -------------------------------------------------------------------------------- /documents/基础类.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/documents/基础类.md -------------------------------------------------------------------------------- /documents/宏观经济数据类.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/documents/宏观经济数据类.md -------------------------------------------------------------------------------- /documents/市场类.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/documents/市场类.md -------------------------------------------------------------------------------- /documents/投资参考类.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/documents/投资参考类.md -------------------------------------------------------------------------------- /documents/股票交易类.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/documents/股票交易类.md -------------------------------------------------------------------------------- /documents/股票信息类.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/documents/股票信息类.md -------------------------------------------------------------------------------- /documents/股票所属类.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/documents/股票所属类.md -------------------------------------------------------------------------------- /documents/龙虎榜类.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/documents/龙虎榜类.md -------------------------------------------------------------------------------- /gugu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/gugu/__init__.py -------------------------------------------------------------------------------- /gugu/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/gugu/base.py -------------------------------------------------------------------------------- /gugu/billboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/gugu/billboard.py -------------------------------------------------------------------------------- /gugu/classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/gugu/classify.py -------------------------------------------------------------------------------- /gugu/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/gugu/config.py -------------------------------------------------------------------------------- /gugu/lowriskintarb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/gugu/lowriskintarb.py -------------------------------------------------------------------------------- /gugu/macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/gugu/macro.py -------------------------------------------------------------------------------- /gugu/marketdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/gugu/marketdata.py -------------------------------------------------------------------------------- /gugu/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/gugu/reference.py -------------------------------------------------------------------------------- /gugu/stockdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/gugu/stockdata.py -------------------------------------------------------------------------------- /gugu/stockinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/gugu/stockinfo.py -------------------------------------------------------------------------------- /gugu/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/gugu/utility.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabQ/gugu/HEAD/setup.py --------------------------------------------------------------------------------