# PyStock **Repository Path**: liuhuan.com/py-stock ## Basic Information - **Project Name**: PyStock - **Description**: 瞎jb写 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-03-05 - **Last Updated**: 2025-03-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # PyStock #### 介绍 瞎jb写 实验的股票预警 以防我上班时候免A瞎搞事情. #### 安装教程 1. pip install -r requirements.txt #### 使用说明 1. python main.py 小贴士:简易的命令行入门教程: Git http全局设置: Git 全局设置: ''' git config --global user.name "liuhuan" git config --global user.email "634917983@qq.com" 创建 git 仓库: mkdir test cd test git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/liuhuan.com/test.git git push -u origin "master" 已有仓库? cd existing_git_repo git remote add origin https://gitee.com/liuhuan.com/test.git git push -u origin "master" Git ssh全局设置: git config --global user.name "liuhuan" git config --global user.email "634917983@qq.com" 创建 git 仓库: mkdir test cd test git init touch README.md git add README.md git commit -m "first commit" git remote add origin git@gitee.com:liuhuan.com/test.git git push -u origin "master" 已有仓库? cd existing_git_repo git remote add origin git@gitee.com:liuhuan.com/test.git git push -u origin "master"