move to python xd

This commit is contained in:
2025-09-24 10:52:59 +02:00
parent 93a77d99b6
commit c60f613483
+148 -111
View File
@@ -1,139 +1,176 @@
# Logs # Created by https://www.toptal.com/developers/gitignore/api/python
logs # Edit at https://www.toptal.com/developers/gitignore?templates=python
### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
# Translations
*.mo
*.pot
# Django stuff:
*.log *.log
npm-debug.log* local_settings.py
yarn-debug.log* db.sqlite3
yarn-error.log* db.sqlite3-journal
lerna-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html) # Flask stuff:
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json instance/
.webassets-cache
# Runtime data # Scrapy stuff:
pids .scrapy
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover # Sphinx documentation
lib-cov docs/_build/
# Coverage directory used by tools like istanbul # PyBuilder
coverage .pybuilder/
*.lcov target/
# nyc test coverage # Jupyter Notebook
.nyc_output .ipynb_checkpoints
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) # IPython
.grunt profile_default/
ipython_config.py
# Bower dependency directory (https://bower.io/) # pyenv
bower_components # For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version
# node-waf configuration # pipenv
.lock-wscript # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# Compiled binary addons (https://nodejs.org/api/addons.html) # poetry
build/Release # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock
# Dependency directories # pdm
node_modules/ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
jspm_packages/ #pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/#use-with-ide
.pdm.toml
# Snowpack dependency directory (https://snowpack.dev/) # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
web_modules/ __pypackages__/
# TypeScript cache # Celery stuff
*.tsbuildinfo celerybeat-schedule
celerybeat.pid
# Optional npm cache directory # SageMath parsed files
.npm *.sage.py
# Optional eslint cache # Environments
.eslintcache
# Optional stylelint cache
.stylelintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variable files
.env .env
.env.* .venv
!.env.example env/
venv/
ENV/
env.bak/
venv.bak/
# parcel-bundler cache (https://parceljs.org/) # Spyder project settings
.cache .spyderproject
.parcel-cache .spyproject
# Next.js build output # Rope project settings
.next .ropeproject
out
# Nuxt.js build / generate output # mkdocs documentation
.nuxt /site
dist
# Gatsby files # mypy
.cache/ .mypy_cache/
# Comment in the public line in if your project uses Gatsby and not Next.js .dmypy.json
# https://nextjs.org/blog/next-9-1#public-directory-support dmypy.json
# public
# vuepress build output # Pyre type checker
.vuepress/dist .pyre/
# vuepress v2.x temp and cache directory # pytype static type analyzer
.temp .pytype/
.cache
# Sveltekit cache directory # Cython debug symbols
.svelte-kit/ cython_debug/
# vitepress build output # PyCharm
**/.vitepress/dist # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# vitepress cache directory ### Python Patch ###
**/.vitepress/cache # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
poetry.toml
# Docusaurus cache and generated files # ruff
.docusaurus .ruff_cache/
# Serverless directories # LSP config files
.serverless/ pyrightconfig.json
# FuseBox cache # End of https://www.toptal.com/developers/gitignore/api/python
.fusebox/
# DynamoDB Local files
.dynamodb/
# Firebase cache directory
.firebase/
# TernJS port file
.tern-port
# Stores VSCode versions used for testing VSCode extensions
.vscode-test
# yarn v3
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
# Vite logs files
vite.config.js.timestamp-*
vite.config.ts.timestamp-*