CoolFace
Apppublic

gnudevx/Recommendation-System

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
.gitignore208 linesDownload Raw Back to root
1# Byte-compiled / optimized / DLL files2__pycache__/3*.py[codz]4*$py.class5 6# C extensions7*.so8 9# Distribution / packaging10.Python11build/12develop-eggs/13dist/14downloads/15eggs/16.eggs/17lib/18lib64/19parts/20sdist/21var/22wheels/23share/python-wheels/24*.egg-info/25.installed.cfg26*.egg27MANIFEST28 29# PyInstaller30#  Usually these files are written by a python script from a template31#  before PyInstaller builds the exe, so as to inject date/other infos into it.32*.manifest33*.spec34 35# Installer logs36pip-log.txt37pip-delete-this-directory.txt38 39# Unit test / coverage reports40htmlcov/41.tox/42.nox/43.coverage44.coverage.*45.cache46nosetests.xml47coverage.xml48*.cover49*.py.cover50.hypothesis/51.pytest_cache/52cover/53 54# Translations55*.mo56*.pot57 58# Django stuff:59*.log60local_settings.py61db.sqlite362db.sqlite3-journal63 64# Flask stuff:65instance/66.webassets-cache67 68# Scrapy stuff:69.scrapy70 71# Sphinx documentation72docs/_build/73 74# PyBuilder75.pybuilder/76target/77 78# Jupyter Notebook79.ipynb_checkpoints80 81# IPython82profile_default/83ipython_config.py84 85# pyenv86#   For a library or package, you might want to ignore these files since the code is87#   intended to run in multiple environments; otherwise, check them in:88# .python-version89 90# pipenv91#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.92#   However, in case of collaboration, if having platform-specific dependencies or dependencies93#   having no cross-platform support, pipenv may install dependencies that don't work, or not94#   install all needed dependencies.95#Pipfile.lock96 97# UV98#   Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.99#   This is especially recommended for binary packages to ensure reproducibility, and is more100#   commonly ignored for libraries.101#uv.lock102 103# poetry104#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.105#   This is especially recommended for binary packages to ensure reproducibility, and is more106#   commonly ignored for libraries.107#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control108#poetry.lock109#poetry.toml110 111# pdm112#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.113#   pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.114#   https://pdm-project.org/en/latest/usage/project/#working-with-version-control115#pdm.lock116#pdm.toml117.pdm-python118.pdm-build/119 120# pixi121#   Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.122#pixi.lock123#   Pixi creates a virtual environment in the .pixi directory, just like venv module creates one124#   in the .venv directory. It is recommended not to include this directory in version control.125.pixi126 127# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm128__pypackages__/129 130# Celery stuff131celerybeat-schedule132celerybeat.pid133 134# SageMath parsed files135*.sage.py136 137# Environments138.env139.envrc140.venv141env/142venv/143ENV/144env.bak/145venv.bak/146 147# Spyder project settings148.spyderproject149.spyproject150 151# Rope project settings152.ropeproject153 154# mkdocs documentation155/site156 157# mypy158.mypy_cache/159.dmypy.json160dmypy.json161 162# Pyre type checker163.pyre/164 165# pytype static type analyzer166.pytype/167 168# Cython debug symbols169cython_debug/170 171# PyCharm172#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can173#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore174#  and can be added to the global gitignore or merged into this file.  For a more nuclear175#  option (not recommended) you can uncomment the following to ignore the entire idea folder.176#.idea/177 178# Abstra179# Abstra is an AI-powered process automation framework.180# Ignore directories containing user credentials, local state, and settings.181# Learn more at https://abstra.io/docs182.abstra/183 184# Visual Studio Code185#  Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore 186#  that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore187#  and can be added to the global gitignore or merged into this file. However, if you prefer, 188#  you could uncomment the following to ignore the entire vscode folder189# .vscode/190 191# Ruff stuff:192.ruff_cache/193 194# PyPI configuration file195.pypirc196 197# Cursor198#  Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to199#  exclude from AI features like autocomplete and code analysis. Recommended for sensitive data200#  refer to https://docs.cursor.com/context/ignore-files201.cursorignore202.cursorindexingignore203 204# Marimo205marimo/_static/206marimo/_lsp/207__marimo__/208