Initial commit

This commit is contained in:
2025-11-04 15:28:26 +01:00
parent 184395c287
commit b4832a19db
41 changed files with 5361 additions and 214 deletions

340
.gitignore vendored
View File

@@ -1,221 +1,135 @@
# ---> 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
**/*.rs.bk
**/tempCodeRunnerFile.py
*.a
*.autosave
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
.pybuilder/
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
# 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
# pipenv
# 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
# UV
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
#uv.lock
# poetry
# 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
# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#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/latest/usage/project/#working-with-version-control
.pdm.toml
.pdm-python
.pdm-build/
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
# pytype static type analyzer
.pytype/
# Cython debug symbols
cython_debug/
# PyCharm
# 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/
# Ruff stuff:
.ruff_cache/
# PyPI configuration file
.pypirc
# ---> Go
# If you prefer the allow list template instead of the deny list, see community template:
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
#
# Binaries for programs and plugins
*.dll
*.dylib
*.egg
*.egg-info/
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.jsc
*.la
*.lai
*.lo
*.log
*.manifest
*.mo
*.moc
*.o
*.out
# Dependency directories (remove the comment below to include it)
# vendor/
# Go workspace file
*.pdb
*.pot
*.prl
*.pro.user
*.pro.user.*
*.py,cover
*.py[cod]
*.qbs.user
*.qbs.user.*
*.qm
*.qmlc
*.qmlproject.user
*.qmlproject.user.*
*.sage.py
*.slo
*.so
*.so.*
*.spec
*.test
*_plugin_import.cpp
*_qmlcache.qrc
*build-*
*creator.user*
.Python
.cache
.coverage
.coverage.*
.dmypy.json
.eggs/
.env
.history
.hypothesis/
.installed.cfg
.ipynb_checkpoints
.mypy_cache/
.nox/
.pdm-build/
.pdm-python
.pdm.toml
.pybuilder/
.pypirc
.pyre/
.pytest_cache
.pytest_cache/
.pytype/
.ropeproject
.ruff_cache/
.scrapy
.spyderproject
.spyproject
.tox/
.venv
.webassets-cache
/.qmake.cache
/.qmake.stash
/site
CMakeLists.txt.user*
ENV/
MANIFEST
Makefile*
__pycache__/
__pypackages__/
build/
celerybeat-schedule
celerybeat.pid
compile_commands.json
config.yaml
cover/
coverage.xml
cython_debug/
db.sqlite3
db.sqlite3-journal
debug/
depend
develop-eggs/
dist/
dmypy.json
docs/
docs/_build/
downloads/
eggs/
env.bak/
env/
go.work
go.work.sum
# env file
.env
# ---> Rust
# Generated by Cargo
# will have compiled files and executables
debug/
htmlcov/
instance/
ipython_config.py
lib/
lib64/
local_settings.py
moc_*.cpp
moc_*.h
nosetests.xml
object_script.*.Debug
object_script.*.Release
output
output/output/LOGtoJSON.exe
parts/
pip-delete-this-directory.txt
pip-log.txt
profile_default/
qrc_*.cpp
sdist/
share/python-wheels/
target/
# These are backup files generated by rustfmt
**/*.rs.bk
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
# RustRover
# 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/
target_wrapper.*
ui_*.h
var/
venv
venv.bak/
venv/
wheels/