From 5a0406b6726d15f80245c2b3d15fac4761b1b132 Mon Sep 17 00:00:00 2001 From: wangys <3401275564@qq.com> Date: Mon, 24 Nov 2025 13:38:14 +0800 Subject: [PATCH] gitignore --- .gitignore | 2 + schoolNewsCrawler/.gitignore | 72 ++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 .gitignore create mode 100644 schoolNewsCrawler/.gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..161e0bb --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea +build_output \ No newline at end of file diff --git a/schoolNewsCrawler/.gitignore b/schoolNewsCrawler/.gitignore new file mode 100644 index 0000000..78d37bc --- /dev/null +++ b/schoolNewsCrawler/.gitignore @@ -0,0 +1,72 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Virtual Environment +venv/ +env/ +ENV/ +env.bak/ +venv.bak/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store + +# Environment variables +.env +.env.local + +# Logs +logs/ +*.log + +# Output +output/ +*.json +*.csv + +# Test +.pytest_cache/ +.coverage +htmlcov/ +.tox/ + +# MyPy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Jupyter +.ipynb_checkpoints + +# Database +*.db +*.sqlite +*.sqlite3 +