├── .gitignore ├── Des.py ├── OutputStream.py ├── StuffStructStream.py ├── StuffTableStruct.py ├── constants.py ├── dataHelper.py ├── document └── 挂机赚钱之可转债打新-同花顺逆向分析笔记.md ├── ftj.py ├── header.py ├── hexin.py ├── hookths.py ├── readme.md ├── rsa_utils.py ├── stuffInteractData.py ├── stuffTextData.py ├── utils.py └── 券商参数.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /__pycache__ 3 | /venv 4 | passport.dat 5 | persondata.txt 6 | -------------------------------------------------------------------------------- /Des.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/Des.py -------------------------------------------------------------------------------- /OutputStream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/OutputStream.py -------------------------------------------------------------------------------- /StuffStructStream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/StuffStructStream.py -------------------------------------------------------------------------------- /StuffTableStruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/StuffTableStruct.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/constants.py -------------------------------------------------------------------------------- /dataHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/dataHelper.py -------------------------------------------------------------------------------- /document/挂机赚钱之可转债打新-同花顺逆向分析笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/document/挂机赚钱之可转债打新-同花顺逆向分析笔记.md -------------------------------------------------------------------------------- /ftj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/ftj.py -------------------------------------------------------------------------------- /header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/header.py -------------------------------------------------------------------------------- /hexin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/hexin.py -------------------------------------------------------------------------------- /hookths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/hookths.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/readme.md -------------------------------------------------------------------------------- /rsa_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/rsa_utils.py -------------------------------------------------------------------------------- /stuffInteractData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/stuffInteractData.py -------------------------------------------------------------------------------- /stuffTextData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/stuffTextData.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/utils.py -------------------------------------------------------------------------------- /券商参数.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomat/10jqka-API/HEAD/券商参数.txt --------------------------------------------------------------------------------