add tushare files.

This commit is contained in:
2024-10-12 09:09:02 +08:00
parent d1089007bb
commit 4f73d0e53c
27 changed files with 24196 additions and 0 deletions

9
tushare-stock/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM ubuntu:latest
WORKDIR /stock
RUN apt-get update
RUN apt-get install python3-pip
RUN pip3 install --upgrade pip
RUN pip install tushare -i https://pypi.tuna.tsinghua.edu.cn/simple
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .