CoolFace
Apppublic

coding-alt/IF

sourceHugging Faceotherupdated 3y agoView on Hugging Face
1likes
.gitignore163 linesDownload Raw Back to root
1gradio_cached_examples/2 3# Byte-compiled / optimized / DLL files4__pycache__/5*.py[cod]6*$py.class7 8# C extensions9*.so10 11# Distribution / packaging12.Python13build/14develop-eggs/15dist/16downloads/17eggs/18.eggs/19lib/20lib64/21parts/22sdist/23var/24wheels/25share/python-wheels/26*.egg-info/27.installed.cfg28*.egg29MANIFEST30 31# PyInstaller32#  Usually these files are written by a python script from a template33#  before PyInstaller builds the exe, so as to inject date/other infos into it.34*.manifest35*.spec36 37# Installer logs38pip-log.txt39pip-delete-this-directory.txt40 41# Unit test / coverage reports42htmlcov/43.tox/44.nox/45.coverage46.coverage.*47.cache48nosetests.xml49coverage.xml50*.cover51*.py,cover52.hypothesis/53.pytest_cache/54cover/55 56# Translations57*.mo58*.pot59 60# Django stuff:61*.log62local_settings.py63db.sqlite364db.sqlite3-journal65 66# Flask stuff:67instance/68.webassets-cache69 70# Scrapy stuff:71.scrapy72 73# Sphinx documentation74docs/_build/75 76# PyBuilder77.pybuilder/78target/79 80# Jupyter Notebook81.ipynb_checkpoints82 83# IPython84profile_default/85ipython_config.py86 87# pyenv88#   For a library or package, you might want to ignore these files since the code is89#   intended to run in multiple environments; otherwise, check them in:90# .python-version91 92# pipenv93#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.94#   However, in case of collaboration, if having platform-specific dependencies or dependencies95#   having no cross-platform support, pipenv may install dependencies that don't work, or not96#   install all needed dependencies.97#Pipfile.lock98 99# poetry100#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.101#   This is especially recommended for binary packages to ensure reproducibility, and is more102#   commonly ignored for libraries.103#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control104#poetry.lock105 106# pdm107#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.108#pdm.lock109#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it110#   in version control.111#   https://pdm.fming.dev/#use-with-ide112.pdm.toml113 114# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm115__pypackages__/116 117# Celery stuff118celerybeat-schedule119celerybeat.pid120 121# SageMath parsed files122*.sage.py123 124# Environments125.env126.venv127env/128venv/129ENV/130env.bak/131venv.bak/132 133# Spyder project settings134.spyderproject135.spyproject136 137# Rope project settings138.ropeproject139 140# mkdocs documentation141/site142 143# mypy144.mypy_cache/145.dmypy.json146dmypy.json147 148# Pyre type checker149.pyre/150 151# pytype static type analyzer152.pytype/153 154# Cython debug symbols155cython_debug/156 157# PyCharm158#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can159#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore160#  and can be added to the global gitignore or merged into this file.  For a more nuclear161#  option (not recommended) you can uncomment the following to ignore the entire idea folder.162#.idea/163