|
1 | 1 | .vscode/* |
| 2 | +# Byte-compiled / optimized / DLL files |
| 3 | + 1 __pycache__/ |
| 4 | + 2 *.py[codz] |
| 5 | + 3 *$py.class |
| 6 | + 4 |
| 7 | + 5 # C extensions |
| 8 | + 6 *.so |
| 9 | + 7 |
| 10 | + 8 # Distribution / packaging |
| 11 | + 9 .Python |
| 12 | + 10 build/ |
| 13 | + 11 develop-eggs/ |
| 14 | + 12 dist/ |
| 15 | + 13 downloads/ |
| 16 | + 14 eggs/ |
| 17 | +.gitignore |
| 18 | +".gitignore" 221L, 4821B |
| 19 | +1 # Byte-compiled / optimized / DLL files |
| 20 | + 1 __pycache__/ |
| 21 | + 2 *.py[codz] |
| 22 | + 3 *$py.class |
| 23 | + 4 |
| 24 | + 5 # C extensions |
| 25 | + 6 *.so |
| 26 | + 7 |
| 27 | + 8 # Distribution / packaging |
| 28 | + 9 .Python |
| 29 | + 10 build/ |
| 30 | + 11 develop-eggs/ |
| 31 | + 12 dist/ |
| 32 | + 13 downloads/ |
| 33 | + 14 eggs/ |
| 34 | +.gitignore |
| 35 | +".gitignore" 221L, 4821B |
| 36 | + 27 # Byte-compiled / optimized / DLL files |
| 37 | + 32 coverage.xml |
| 38 | +1 # Byte-compiled / optimized / DLL files |
| 39 | + 1 __pycache__/ |
| 40 | + 2 *.py[codz] |
| 41 | + 3 *$py.class |
| 42 | + 4 |
| 43 | + 5 # C extensions |
| 44 | + 6 *.so |
| 45 | + 7 |
| 46 | + 8 # Distribution / packaging |
| 47 | + 9 .Python |
| 48 | + 10 build/ |
| 49 | + 11 develop-eggs/ |
| 50 | + 12 dist/ |
| 51 | + 13 downloads/ |
| 52 | + 14 eggs/ |
| 53 | + 15 .eggs/ |
| 54 | + 16 lib/ |
| 55 | + 17 lib64/# Byte-compiled / optimized / DLL files |
| 56 | +__pycache__/ |
| 57 | +*.py[codz] |
| 58 | +*$py.class |
| 59 | + |
| 60 | +# C extensions |
| 61 | +*.so |
| 62 | + |
| 63 | +# Distribution / packaging |
| 64 | +.Python |
| 65 | +build/ |
| 66 | +develop-eggs/ |
| 67 | +dist/ |
| 68 | +downloads/ |
| 69 | +eggs/ |
| 70 | +.eggs/ |
| 71 | +lib/ |
| 72 | +lib64/ |
| 73 | +parts/ |
| 74 | +sdist/ |
| 75 | +var/ |
| 76 | +wheels/ |
| 77 | +share/python-wheels/ |
| 78 | +*.egg-info/ |
| 79 | +.installed.cfg |
| 80 | +*.egg |
| 81 | +MANIFEST |
| 82 | + |
| 83 | +# PyInstaller |
| 84 | +# Usually these files are written by a python script from a template |
| 85 | +# before PyInstaller builds the exe, so as to inject date/other infos into it. |
| 86 | +*.manifest |
| 87 | +*.spec |
| 88 | + |
| 89 | +# Installer logs |
| 90 | +pip-log.txt |
| 91 | +pip-delete-this-directory.txt |
| 92 | + |
| 93 | +# Unit test / coverage reports |
| 94 | +htmlcov/ |
| 95 | +.tox/ |
| 96 | +.nox/ |
| 97 | +.coverage |
| 98 | +.coverage.* |
| 99 | +.cache |
| 100 | +nosetests.xml |
| 101 | +coverage.xml |
| 102 | +*.cover |
| 103 | +*.py.cover |
| 104 | +.hypothesis/ |
| 105 | +.pytest_cache/ |
| 106 | +cover/ |
| 107 | + |
| 108 | +# Translations |
| 109 | +*.mo |
| 110 | +*.pot |
| 111 | + |
| 112 | +# Django stuff: |
| 113 | +*.log |
| 114 | +local_settings.py |
| 115 | +db.sqlite3 |
| 116 | +db.sqlite3-journal |
| 117 | + |
| 118 | +# Flask stuff: |
| 119 | +instance/ |
| 120 | +.webassets-cache |
| 121 | + |
| 122 | +# Scrapy stuff: |
| 123 | +.scrapy |
| 124 | + |
| 125 | +# Sphinx documentation |
| 126 | +docs/_build/ |
| 127 | + |
| 128 | +# PyBuilder |
| 129 | +.pybuilder/ |
| 130 | +target/ |
| 131 | + |
| 132 | +# Jupyter Notebook |
| 133 | +.ipynb_checkpoints |
| 134 | + |
| 135 | +# IPython |
| 136 | +profile_default/ |
| 137 | +ipython_config.py |
| 138 | + |
| 139 | +# pyenv |
| 140 | +# For a library or package, you might want to ignore these files since the code is |
| 141 | +# intended to run in multiple environments; otherwise, check them in: |
| 142 | +# .python-version |
| 143 | + |
| 144 | +# pipenv |
| 145 | +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. |
| 146 | +# However, in case of collaboration, if having platform-specific dependencies or dependencies |
| 147 | +# having no cross-platform support, pipenv may install dependencies that don't work, or not |
| 148 | +# install all needed dependencies. |
| 149 | +#Pipfile.lock |
| 150 | + |
| 151 | +# UV |
| 152 | +# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. |
| 153 | +# This is especially recommended for binary packages to ensure reproducibility, and is more |
| 154 | +# commonly ignored for libraries. |
| 155 | +#uv.lock |
| 156 | + |
| 157 | +# poetry |
| 158 | +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. |
| 159 | +# This is especially recommended for binary packages to ensure reproducibility, and is more |
| 160 | +# commonly ignored for libraries. |
| 161 | +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control |
| 162 | +#poetry.lock |
| 163 | +#poetry.toml |
| 164 | + |
| 165 | +# pdm |
| 166 | +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. |
| 167 | +# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python. |
| 168 | +# https://pdm-project.org/en/latest/usage/project/#working-with-version-control |
| 169 | +#pdm.lock |
| 170 | +#pdm.toml |
| 171 | +.pdm-python |
| 172 | +.pdm-build/ |
| 173 | + |
| 174 | +# pixi |
| 175 | +# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control. |
| 176 | +#pixi.lock |
| 177 | +# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one |
| 178 | +# in the .venv directory. It is recommended not to include this directory in version control. |
| 179 | +.pixi |
| 180 | + |
| 181 | +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm |
| 182 | +__pypackages__/ |
| 183 | + |
| 184 | +# Celery stuff |
| 185 | +celerybeat-schedule |
| 186 | +celerybeat.pid |
| 187 | + |
| 188 | +# SageMath parsed files |
| 189 | +*.sage.py |
| 190 | + |
| 191 | +# Environments |
| 192 | +.env |
| 193 | +.envrc |
| 194 | +.venv |
| 195 | +env/ |
| 196 | +venv/ |
| 197 | +ENV/ |
| 198 | +env.bak/ |
| 199 | +venv.bak/ |
| 200 | +.idea |
| 201 | + |
| 202 | +# Spyder project settings |
| 203 | +.spyderproject |
| 204 | +.spyproject |
| 205 | + |
| 206 | +# Rope project settings |
| 207 | +.ropeproject |
| 208 | + |
| 209 | +# mkdocs documentation |
| 210 | +/site |
| 211 | + |
| 212 | +# mypy |
| 213 | +.mypy_cache/ |
| 214 | +.dmypy.json |
| 215 | +dmypy.json |
| 216 | + |
| 217 | +# Pyre type checker |
| 218 | +.pyre/ |
| 219 | + |
| 220 | +# pytype static type analyzer |
| 221 | +.pytype/ |
| 222 | + |
| 223 | +# Cython debug symbols |
| 224 | +cython_debug/ |
| 225 | + |
| 226 | +# PyCharm |
| 227 | +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can |
| 228 | +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore |
| 229 | +# and can be added to the global gitignore or merged into this file. For a more nuclear |
| 230 | +# option (not recommended) you can uncomment the following to ignore the entire idea folder. |
| 231 | +#.idea/ |
| 232 | + |
| 233 | +# Abstra |
| 234 | +# Abstra is an AI-powered process automation framework. |
| 235 | +# Ignore directories containing user credentials, local state, and settings. |
| 236 | +# Learn more at https://abstra.io/docs |
| 237 | +.abstra/ |
| 238 | + |
| 239 | +# Visual Studio Code |
| 240 | +# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore |
| 241 | +# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore |
| 242 | +# and can be added to the global gitignore or merged into this file. However, if you prefer, |
| 243 | +# you could uncomment the following to ignore the entire vscode folder |
| 244 | +# .vscode/ |
| 245 | + |
| 246 | +# Ruff stuff: |
| 247 | +.ruff_cache/ |
| 248 | + |
| 249 | +# PyPI configuration file |
| 250 | +.pypirc |
| 251 | + |
| 252 | +# Cursor |
| 253 | +# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to |
| 254 | +# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data |
| 255 | +# refer to https://docs.cursor.com/context/ignore-files |
| 256 | +.cursorignore |
| 257 | +.cursorindexingignore |
| 258 | + |
| 259 | +# Marimo |
| 260 | +marimo/_static/ |
| 261 | +marimo/_lsp/ |
| 262 | +__marimo__/ |
| 263 | + |
| 264 | +# Mac DS_Store |
| 265 | +*.DS_Store |
| 266 | + |
| 267 | +# cProfile |
| 268 | +*.prof |
| 269 | + |
0 commit comments