docling-slim 2.92.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- docling_slim-2.92.0/.gitignore +445 -0
- docling_slim-2.92.0/LICENSE +21 -0
- docling_slim-2.92.0/PKG-INFO +321 -0
- docling_slim-2.92.0/README.md +167 -0
- docling_slim-2.92.0/docling/__init__.py +0 -0
- docling_slim-2.92.0/docling/backend/__init__.py +0 -0
- docling_slim-2.92.0/docling/backend/abstract_backend.py +86 -0
- docling_slim-2.92.0/docling/backend/asciidoc_backend.py +447 -0
- docling_slim-2.92.0/docling/backend/csv_backend.py +134 -0
- docling_slim-2.92.0/docling/backend/docling_parse_backend.py +285 -0
- docling_slim-2.92.0/docling/backend/docling_parse_v2_backend.py +28 -0
- docling_slim-2.92.0/docling/backend/docling_parse_v4_backend.py +28 -0
- docling_slim-2.92.0/docling/backend/docx/__init__.py +0 -0
- docling_slim-2.92.0/docling/backend/docx/drawingml/utils.py +131 -0
- docling_slim-2.92.0/docling/backend/docx/latex/__init__.py +0 -0
- docling_slim-2.92.0/docling/backend/docx/latex/latex_dict.py +290 -0
- docling_slim-2.92.0/docling/backend/docx/latex/omml.py +530 -0
- docling_slim-2.92.0/docling/backend/html_backend.py +4442 -0
- docling_slim-2.92.0/docling/backend/image_backend.py +194 -0
- docling_slim-2.92.0/docling/backend/json/__init__.py +0 -0
- docling_slim-2.92.0/docling/backend/json/docling_json_backend.py +58 -0
- docling_slim-2.92.0/docling/backend/latex/__init__.py +3 -0
- docling_slim-2.92.0/docling/backend/latex/backend.py +214 -0
- docling_slim-2.92.0/docling/backend/latex/constants.py +261 -0
- docling_slim-2.92.0/docling/backend/latex/context.py +17 -0
- docling_slim-2.92.0/docling/backend/latex/engines/__init__.py +0 -0
- docling_slim-2.92.0/docling/backend/latex/engines/base.py +11 -0
- docling_slim-2.92.0/docling/backend/latex/handlers/__init__.py +0 -0
- docling_slim-2.92.0/docling/backend/latex/handlers/environments.py +301 -0
- docling_slim-2.92.0/docling/backend/latex/handlers/macros.py +640 -0
- docling_slim-2.92.0/docling/backend/latex/handlers/math.py +60 -0
- docling_slim-2.92.0/docling/backend/latex/libraries/__init__.py +0 -0
- docling_slim-2.92.0/docling/backend/latex/libraries/base.py +18 -0
- docling_slim-2.92.0/docling/backend/latex/utils/__init__.py +0 -0
- docling_slim-2.92.0/docling/backend/latex/utils/encoding.py +37 -0
- docling_slim-2.92.0/docling/backend/latex/utils/table.py +222 -0
- docling_slim-2.92.0/docling/backend/latex/utils/text.py +206 -0
- docling_slim-2.92.0/docling/backend/latex_backend.py +3 -0
- docling_slim-2.92.0/docling/backend/managed_pdfium_backend.py +55 -0
- docling_slim-2.92.0/docling/backend/md_backend.py +656 -0
- docling_slim-2.92.0/docling/backend/mets_gbs_backend.py +456 -0
- docling_slim-2.92.0/docling/backend/msexcel_backend.py +717 -0
- docling_slim-2.92.0/docling/backend/mspowerpoint_backend.py +775 -0
- docling_slim-2.92.0/docling/backend/msword_backend.py +2464 -0
- docling_slim-2.92.0/docling/backend/noop_backend.py +51 -0
- docling_slim-2.92.0/docling/backend/pdf_backend.py +84 -0
- docling_slim-2.92.0/docling/backend/pypdfium2_backend.py +439 -0
- docling_slim-2.92.0/docling/backend/webvtt_backend.py +208 -0
- docling_slim-2.92.0/docling/backend/xml/__init__.py +0 -0
- docling_slim-2.92.0/docling/backend/xml/jats_backend.py +844 -0
- docling_slim-2.92.0/docling/backend/xml/uspto_backend.py +1985 -0
- docling_slim-2.92.0/docling/backend/xml/xbrl_backend.py +466 -0
- docling_slim-2.92.0/docling/chunking/__init__.py +12 -0
- docling_slim-2.92.0/docling/cli/__init__.py +0 -0
- docling_slim-2.92.0/docling/cli/main.py +998 -0
- docling_slim-2.92.0/docling/cli/models.py +221 -0
- docling_slim-2.92.0/docling/cli/tools.py +35 -0
- docling_slim-2.92.0/docling/datamodel/__init__.py +0 -0
- docling_slim-2.92.0/docling/datamodel/accelerator_options.py +110 -0
- docling_slim-2.92.0/docling/datamodel/asr_model_specs.py +494 -0
- docling_slim-2.92.0/docling/datamodel/backend_options.py +224 -0
- docling_slim-2.92.0/docling/datamodel/base_models.py +507 -0
- docling_slim-2.92.0/docling/datamodel/chart_extraction_options.py +21 -0
- docling_slim-2.92.0/docling/datamodel/document.py +794 -0
- docling_slim-2.92.0/docling/datamodel/extraction.py +39 -0
- docling_slim-2.92.0/docling/datamodel/image_classification_engine_options.py +73 -0
- docling_slim-2.92.0/docling/datamodel/kserve_transport_utils.py +14 -0
- docling_slim-2.92.0/docling/datamodel/kserve_v2_options.py +114 -0
- docling_slim-2.92.0/docling/datamodel/layout_model_specs.py +142 -0
- docling_slim-2.92.0/docling/datamodel/object_detection_engine_options.py +75 -0
- docling_slim-2.92.0/docling/datamodel/picture_classification_options.py +55 -0
- docling_slim-2.92.0/docling/datamodel/pipeline_options.py +1712 -0
- docling_slim-2.92.0/docling/datamodel/pipeline_options_asr_model.py +264 -0
- docling_slim-2.92.0/docling/datamodel/pipeline_options_vlm_model.py +449 -0
- docling_slim-2.92.0/docling/datamodel/service/__init__.py +128 -0
- docling_slim-2.92.0/docling/datamodel/service/callbacks.py +82 -0
- docling_slim-2.92.0/docling/datamodel/service/chunking.py +78 -0
- docling_slim-2.92.0/docling/datamodel/service/options.py +1028 -0
- docling_slim-2.92.0/docling/datamodel/service/requests.py +108 -0
- docling_slim-2.92.0/docling/datamodel/service/responses.py +185 -0
- docling_slim-2.92.0/docling/datamodel/service/sources.py +96 -0
- docling_slim-2.92.0/docling/datamodel/service/targets.py +28 -0
- docling_slim-2.92.0/docling/datamodel/service/tasks.py +15 -0
- docling_slim-2.92.0/docling/datamodel/settings.py +74 -0
- docling_slim-2.92.0/docling/datamodel/stage_model_specs.py +1500 -0
- docling_slim-2.92.0/docling/datamodel/vlm_engine_options.py +241 -0
- docling_slim-2.92.0/docling/datamodel/vlm_model_specs.py +542 -0
- docling_slim-2.92.0/docling/document_converter.py +665 -0
- docling_slim-2.92.0/docling/document_extractor.py +319 -0
- docling_slim-2.92.0/docling/exceptions.py +14 -0
- docling_slim-2.92.0/docling/experimental/__init__.py +5 -0
- docling_slim-2.92.0/docling/experimental/datamodel/__init__.py +1 -0
- docling_slim-2.92.0/docling/experimental/datamodel/table_crops_layout_options.py +13 -0
- docling_slim-2.92.0/docling/experimental/datamodel/threaded_layout_vlm_pipeline_options.py +45 -0
- docling_slim-2.92.0/docling/experimental/models/__init__.py +3 -0
- docling_slim-2.92.0/docling/experimental/models/table_crops_layout_model.py +116 -0
- docling_slim-2.92.0/docling/experimental/pipeline/__init__.py +1 -0
- docling_slim-2.92.0/docling/experimental/pipeline/threaded_layout_vlm_pipeline.py +439 -0
- docling_slim-2.92.0/docling/models/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/base_layout_model.py +39 -0
- docling_slim-2.92.0/docling/models/base_model.py +218 -0
- docling_slim-2.92.0/docling/models/base_ocr_model.py +243 -0
- docling_slim-2.92.0/docling/models/base_table_model.py +45 -0
- docling_slim-2.92.0/docling/models/extraction/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/extraction/nuextract_transformers_model.py +307 -0
- docling_slim-2.92.0/docling/models/factories/__init__.py +47 -0
- docling_slim-2.92.0/docling/models/factories/base_factory.py +122 -0
- docling_slim-2.92.0/docling/models/factories/layout_factory.py +7 -0
- docling_slim-2.92.0/docling/models/factories/ocr_factory.py +11 -0
- docling_slim-2.92.0/docling/models/factories/picture_description_factory.py +11 -0
- docling_slim-2.92.0/docling/models/factories/table_factory.py +7 -0
- docling_slim-2.92.0/docling/models/inference_engines/__init__.py +13 -0
- docling_slim-2.92.0/docling/models/inference_engines/common/__init__.py +7 -0
- docling_slim-2.92.0/docling/models/inference_engines/common/hf_vision_base.py +156 -0
- docling_slim-2.92.0/docling/models/inference_engines/common/kserve_v2_client_base.py +30 -0
- docling_slim-2.92.0/docling/models/inference_engines/common/kserve_v2_grpc.py +398 -0
- docling_slim-2.92.0/docling/models/inference_engines/common/kserve_v2_http.py +445 -0
- docling_slim-2.92.0/docling/models/inference_engines/common/kserve_v2_types.py +49 -0
- docling_slim-2.92.0/docling/models/inference_engines/common/kserve_v2_utils.py +47 -0
- docling_slim-2.92.0/docling/models/inference_engines/image_classification/__init__.py +21 -0
- docling_slim-2.92.0/docling/models/inference_engines/image_classification/api_kserve_v2_engine.py +195 -0
- docling_slim-2.92.0/docling/models/inference_engines/image_classification/base.py +196 -0
- docling_slim-2.92.0/docling/models/inference_engines/image_classification/factory.py +99 -0
- docling_slim-2.92.0/docling/models/inference_engines/image_classification/hf_base.py +104 -0
- docling_slim-2.92.0/docling/models/inference_engines/image_classification/onnxruntime_engine.py +195 -0
- docling_slim-2.92.0/docling/models/inference_engines/image_classification/transformers_engine.py +192 -0
- docling_slim-2.92.0/docling/models/inference_engines/object_detection/__init__.py +21 -0
- docling_slim-2.92.0/docling/models/inference_engines/object_detection/api_kserve_v2_engine.py +256 -0
- docling_slim-2.92.0/docling/models/inference_engines/object_detection/base.py +204 -0
- docling_slim-2.92.0/docling/models/inference_engines/object_detection/factory.py +111 -0
- docling_slim-2.92.0/docling/models/inference_engines/object_detection/hf_base.py +69 -0
- docling_slim-2.92.0/docling/models/inference_engines/object_detection/onnxruntime_engine.py +211 -0
- docling_slim-2.92.0/docling/models/inference_engines/object_detection/transformers_engine.py +226 -0
- docling_slim-2.92.0/docling/models/inference_engines/vlm/__init__.py +32 -0
- docling_slim-2.92.0/docling/models/inference_engines/vlm/_utils.py +195 -0
- docling_slim-2.92.0/docling/models/inference_engines/vlm/api_openai_compatible_engine.py +231 -0
- docling_slim-2.92.0/docling/models/inference_engines/vlm/auto_inline_engine.py +249 -0
- docling_slim-2.92.0/docling/models/inference_engines/vlm/base.py +274 -0
- docling_slim-2.92.0/docling/models/inference_engines/vlm/factory.py +133 -0
- docling_slim-2.92.0/docling/models/inference_engines/vlm/mlx_engine.py +293 -0
- docling_slim-2.92.0/docling/models/inference_engines/vlm/transformers_engine.py +473 -0
- docling_slim-2.92.0/docling/models/inference_engines/vlm/vllm_engine.py +366 -0
- docling_slim-2.92.0/docling/models/picture_description_base_model.py +157 -0
- docling_slim-2.92.0/docling/models/plugins/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/plugins/defaults.py +78 -0
- docling_slim-2.92.0/docling/models/stages/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/stages/chart_extraction/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/stages/chart_extraction/granite_vision.py +494 -0
- docling_slim-2.92.0/docling/models/stages/code_formula/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/stages/code_formula/code_formula_model.py +344 -0
- docling_slim-2.92.0/docling/models/stages/code_formula/code_formula_vlm_model.py +297 -0
- docling_slim-2.92.0/docling/models/stages/layout/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/stages/layout/layout_model.py +251 -0
- docling_slim-2.92.0/docling/models/stages/layout/layout_object_detection_model.py +175 -0
- docling_slim-2.92.0/docling/models/stages/ocr/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/stages/ocr/auto_ocr_model.py +132 -0
- docling_slim-2.92.0/docling/models/stages/ocr/easyocr_model.py +208 -0
- docling_slim-2.92.0/docling/models/stages/ocr/kserve_v2_ocr_model.py +289 -0
- docling_slim-2.92.0/docling/models/stages/ocr/ocr_mac_model.py +145 -0
- docling_slim-2.92.0/docling/models/stages/ocr/rapid_ocr_model.py +369 -0
- docling_slim-2.92.0/docling/models/stages/ocr/tesseract_ocr_cli_model.py +331 -0
- docling_slim-2.92.0/docling/models/stages/ocr/tesseract_ocr_model.py +262 -0
- docling_slim-2.92.0/docling/models/stages/page_assemble/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/stages/page_assemble/page_assemble_model.py +242 -0
- docling_slim-2.92.0/docling/models/stages/page_preprocessing/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/stages/page_preprocessing/page_preprocessing_model.py +145 -0
- docling_slim-2.92.0/docling/models/stages/picture_classifier/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/stages/picture_classifier/document_picture_classifier.py +210 -0
- docling_slim-2.92.0/docling/models/stages/picture_description/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/stages/picture_description/picture_description_api_model.py +66 -0
- docling_slim-2.92.0/docling/models/stages/picture_description/picture_description_vlm_engine_model.py +162 -0
- docling_slim-2.92.0/docling/models/stages/picture_description/picture_description_vlm_model.py +132 -0
- docling_slim-2.92.0/docling/models/stages/reading_order/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/stages/reading_order/readingorder_model.py +464 -0
- docling_slim-2.92.0/docling/models/stages/table_structure/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/stages/table_structure/table_structure_model.py +410 -0
- docling_slim-2.92.0/docling/models/stages/table_structure/table_structure_model_granite_vision.py +346 -0
- docling_slim-2.92.0/docling/models/stages/table_structure/table_structure_model_v2.py +479 -0
- docling_slim-2.92.0/docling/models/stages/vlm_convert/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/stages/vlm_convert/vlm_convert_model.py +263 -0
- docling_slim-2.92.0/docling/models/utils/__init__.py +0 -0
- docling_slim-2.92.0/docling/models/utils/generation_utils.py +115 -0
- docling_slim-2.92.0/docling/models/utils/hf_model_download.py +45 -0
- docling_slim-2.92.0/docling/models/utils/hf_stopping_criteria.py +48 -0
- docling_slim-2.92.0/docling/models/vlm_pipeline_models/__init__.py +1 -0
- docling_slim-2.92.0/docling/models/vlm_pipeline_models/api_vlm_model.py +180 -0
- docling_slim-2.92.0/docling/models/vlm_pipeline_models/hf_transformers_model.py +401 -0
- docling_slim-2.92.0/docling/models/vlm_pipeline_models/mlx_model.py +344 -0
- docling_slim-2.92.0/docling/models/vlm_pipeline_models/vllm_model.py +362 -0
- docling_slim-2.92.0/docling/pipeline/__init__.py +0 -0
- docling_slim-2.92.0/docling/pipeline/asr_pipeline.py +453 -0
- docling_slim-2.92.0/docling/pipeline/base_extraction_pipeline.py +72 -0
- docling_slim-2.92.0/docling/pipeline/base_pipeline.py +361 -0
- docling_slim-2.92.0/docling/pipeline/extraction_vlm_pipeline.py +207 -0
- docling_slim-2.92.0/docling/pipeline/legacy_standard_pdf_pipeline.py +264 -0
- docling_slim-2.92.0/docling/pipeline/simple_pipeline.py +55 -0
- docling_slim-2.92.0/docling/pipeline/standard_pdf_pipeline.py +964 -0
- docling_slim-2.92.0/docling/pipeline/threaded_standard_pdf_pipeline.py +5 -0
- docling_slim-2.92.0/docling/pipeline/vlm_pipeline.py +627 -0
- docling_slim-2.92.0/docling/py.typed +1 -0
- docling_slim-2.92.0/docling/service_client/__init__.py +45 -0
- docling_slim-2.92.0/docling/service_client/_scheduler.py +60 -0
- docling_slim-2.92.0/docling/service_client/client.py +1648 -0
- docling_slim-2.92.0/docling/service_client/exceptions.py +83 -0
- docling_slim-2.92.0/docling/service_client/job.py +70 -0
- docling_slim-2.92.0/docling/service_client/watchers.py +221 -0
- docling_slim-2.92.0/docling/utils/__init__.py +0 -0
- docling_slim-2.92.0/docling/utils/accelerator_utils.py +97 -0
- docling_slim-2.92.0/docling/utils/api_image_request.py +257 -0
- docling_slim-2.92.0/docling/utils/deepseekocr_utils.py +388 -0
- docling_slim-2.92.0/docling/utils/export.py +146 -0
- docling_slim-2.92.0/docling/utils/glm_utils.py +361 -0
- docling_slim-2.92.0/docling/utils/layout_postprocessor.py +689 -0
- docling_slim-2.92.0/docling/utils/locks.py +3 -0
- docling_slim-2.92.0/docling/utils/model_downloader.py +205 -0
- docling_slim-2.92.0/docling/utils/ocr_utils.py +69 -0
- docling_slim-2.92.0/docling/utils/orientation.py +65 -0
- docling_slim-2.92.0/docling/utils/profiling.py +67 -0
- docling_slim-2.92.0/docling/utils/utils.py +82 -0
- docling_slim-2.92.0/docling/utils/visualization.py +85 -0
- docling_slim-2.92.0/packages/docling-slim/README.md +126 -0
- docling_slim-2.92.0/pyproject.toml +408 -0
|
@@ -0,0 +1,445 @@
|
|
|
1
|
+
model_artifacts/
|
|
2
|
+
scratch/
|
|
3
|
+
ds_convert_models/
|
|
4
|
+
|
|
5
|
+
# Created by https://www.toptal.com/developers/gitignore/api/python,macos,virtualenv,pycharm,visualstudiocode,emacs,vim,jupyternotebooks
|
|
6
|
+
# Edit at https://www.toptal.com/developers/gitignore?templates=python,macos,virtualenv,pycharm,visualstudiocode,emacs,vim,jupyternotebooks
|
|
7
|
+
|
|
8
|
+
### Emacs ###
|
|
9
|
+
# -*- mode: gitignore; -*-
|
|
10
|
+
*~
|
|
11
|
+
\#*\#
|
|
12
|
+
/.emacs.desktop
|
|
13
|
+
/.emacs.desktop.lock
|
|
14
|
+
*.elc
|
|
15
|
+
auto-save-list
|
|
16
|
+
tramp
|
|
17
|
+
.\#*
|
|
18
|
+
|
|
19
|
+
# Org-mode
|
|
20
|
+
.org-id-locations
|
|
21
|
+
*_archive
|
|
22
|
+
|
|
23
|
+
# flymake-mode
|
|
24
|
+
*_flymake.*
|
|
25
|
+
|
|
26
|
+
# eshell files
|
|
27
|
+
/eshell/history
|
|
28
|
+
/eshell/lastdir
|
|
29
|
+
|
|
30
|
+
# elpa packages
|
|
31
|
+
/elpa/
|
|
32
|
+
|
|
33
|
+
# reftex files
|
|
34
|
+
*.rel
|
|
35
|
+
|
|
36
|
+
# AUCTeX auto folder
|
|
37
|
+
/auto/
|
|
38
|
+
|
|
39
|
+
# cask packages
|
|
40
|
+
.cask/
|
|
41
|
+
dist/
|
|
42
|
+
|
|
43
|
+
# Flycheck
|
|
44
|
+
flycheck_*.el
|
|
45
|
+
|
|
46
|
+
# server auth directory
|
|
47
|
+
/server/
|
|
48
|
+
|
|
49
|
+
# projectiles files
|
|
50
|
+
.projectile
|
|
51
|
+
|
|
52
|
+
# directory configuration
|
|
53
|
+
.dir-locals.el
|
|
54
|
+
|
|
55
|
+
# network security
|
|
56
|
+
/network-security.data
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
### JupyterNotebooks ###
|
|
60
|
+
# gitignore template for Jupyter Notebooks
|
|
61
|
+
# website: http://jupyter.org/
|
|
62
|
+
|
|
63
|
+
.ipynb_checkpoints
|
|
64
|
+
*/.ipynb_checkpoints/*
|
|
65
|
+
|
|
66
|
+
# IPython
|
|
67
|
+
profile_default/
|
|
68
|
+
ipython_config.py
|
|
69
|
+
|
|
70
|
+
# Remove previous ipynb_checkpoints
|
|
71
|
+
# git rm -r .ipynb_checkpoints/
|
|
72
|
+
|
|
73
|
+
### macOS ###
|
|
74
|
+
# General
|
|
75
|
+
.DS_Store
|
|
76
|
+
.AppleDouble
|
|
77
|
+
.LSOverride
|
|
78
|
+
|
|
79
|
+
# Icon must end with two \r
|
|
80
|
+
Icon
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
# Thumbnails
|
|
84
|
+
._*
|
|
85
|
+
|
|
86
|
+
# Files that might appear in the root of a volume
|
|
87
|
+
.DocumentRevisions-V100
|
|
88
|
+
.fseventsd
|
|
89
|
+
.Spotlight-V100
|
|
90
|
+
.TemporaryItems
|
|
91
|
+
.Trashes
|
|
92
|
+
.VolumeIcon.icns
|
|
93
|
+
.com.apple.timemachine.donotpresent
|
|
94
|
+
|
|
95
|
+
# Directories potentially created on remote AFP share
|
|
96
|
+
.AppleDB
|
|
97
|
+
.AppleDesktop
|
|
98
|
+
Network Trash Folder
|
|
99
|
+
Temporary Items
|
|
100
|
+
.apdisk
|
|
101
|
+
|
|
102
|
+
### macOS Patch ###
|
|
103
|
+
# iCloud generated files
|
|
104
|
+
*.icloud
|
|
105
|
+
|
|
106
|
+
### PyCharm ###
|
|
107
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
|
108
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
109
|
+
|
|
110
|
+
# User-specific stuff
|
|
111
|
+
.idea/**/workspace.xml
|
|
112
|
+
.idea/**/tasks.xml
|
|
113
|
+
.idea/**/usage.statistics.xml
|
|
114
|
+
.idea/**/dictionaries
|
|
115
|
+
.idea/**/shelf
|
|
116
|
+
|
|
117
|
+
# AWS User-specific
|
|
118
|
+
.idea/**/aws.xml
|
|
119
|
+
|
|
120
|
+
# Generated files
|
|
121
|
+
.idea/**/contentModel.xml
|
|
122
|
+
|
|
123
|
+
# Sensitive or high-churn files
|
|
124
|
+
.idea/**/dataSources/
|
|
125
|
+
.idea/**/dataSources.ids
|
|
126
|
+
.idea/**/dataSources.local.xml
|
|
127
|
+
.idea/**/sqlDataSources.xml
|
|
128
|
+
.idea/**/dynamic.xml
|
|
129
|
+
.idea/**/uiDesigner.xml
|
|
130
|
+
.idea/**/dbnavigator.xml
|
|
131
|
+
|
|
132
|
+
# Gradle
|
|
133
|
+
.idea/**/gradle.xml
|
|
134
|
+
.idea/**/libraries
|
|
135
|
+
|
|
136
|
+
# Gradle and Maven with auto-import
|
|
137
|
+
# When using Gradle or Maven with auto-import, you should exclude module files,
|
|
138
|
+
# since they will be recreated, and may cause churn. Uncomment if using
|
|
139
|
+
# auto-import.
|
|
140
|
+
# .idea/artifacts
|
|
141
|
+
# .idea/compiler.xml
|
|
142
|
+
# .idea/jarRepositories.xml
|
|
143
|
+
# .idea/modules.xml
|
|
144
|
+
# .idea/*.iml
|
|
145
|
+
# .idea/modules
|
|
146
|
+
# *.iml
|
|
147
|
+
# *.ipr
|
|
148
|
+
|
|
149
|
+
# CMake
|
|
150
|
+
cmake-build-*/
|
|
151
|
+
|
|
152
|
+
# Mongo Explorer plugin
|
|
153
|
+
.idea/**/mongoSettings.xml
|
|
154
|
+
|
|
155
|
+
# File-based project format
|
|
156
|
+
*.iws
|
|
157
|
+
|
|
158
|
+
# IntelliJ
|
|
159
|
+
out/
|
|
160
|
+
|
|
161
|
+
# mpeltonen/sbt-idea plugin
|
|
162
|
+
.idea_modules/
|
|
163
|
+
|
|
164
|
+
# JIRA plugin
|
|
165
|
+
atlassian-ide-plugin.xml
|
|
166
|
+
|
|
167
|
+
# Cursive Clojure plugin
|
|
168
|
+
.idea/replstate.xml
|
|
169
|
+
|
|
170
|
+
# SonarLint plugin
|
|
171
|
+
.idea/sonarlint/
|
|
172
|
+
|
|
173
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
174
|
+
com_crashlytics_export_strings.xml
|
|
175
|
+
crashlytics.properties
|
|
176
|
+
crashlytics-build.properties
|
|
177
|
+
fabric.properties
|
|
178
|
+
|
|
179
|
+
# Editor-based Rest Client
|
|
180
|
+
.idea/httpRequests
|
|
181
|
+
|
|
182
|
+
# Android studio 3.1+ serialized cache file
|
|
183
|
+
.idea/caches/build_file_checksums.ser
|
|
184
|
+
|
|
185
|
+
### PyCharm Patch ###
|
|
186
|
+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
|
187
|
+
|
|
188
|
+
# *.iml
|
|
189
|
+
# modules.xml
|
|
190
|
+
# .idea/misc.xml
|
|
191
|
+
# *.ipr
|
|
192
|
+
|
|
193
|
+
# Sonarlint plugin
|
|
194
|
+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
|
|
195
|
+
.idea/**/sonarlint/
|
|
196
|
+
|
|
197
|
+
# SonarQube Plugin
|
|
198
|
+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
|
|
199
|
+
.idea/**/sonarIssues.xml
|
|
200
|
+
|
|
201
|
+
# Markdown Navigator plugin
|
|
202
|
+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
|
|
203
|
+
.idea/**/markdown-navigator.xml
|
|
204
|
+
.idea/**/markdown-navigator-enh.xml
|
|
205
|
+
.idea/**/markdown-navigator/
|
|
206
|
+
|
|
207
|
+
# Cache file creation bug
|
|
208
|
+
# See https://youtrack.jetbrains.com/issue/JBR-2257
|
|
209
|
+
.idea/$CACHE_FILE$
|
|
210
|
+
|
|
211
|
+
# CodeStream plugin
|
|
212
|
+
# https://plugins.jetbrains.com/plugin/12206-codestream
|
|
213
|
+
.idea/codestream.xml
|
|
214
|
+
|
|
215
|
+
# Azure Toolkit for IntelliJ plugin
|
|
216
|
+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
|
|
217
|
+
.idea/**/azureSettings.xml
|
|
218
|
+
|
|
219
|
+
### Python ###
|
|
220
|
+
# Byte-compiled / optimized / DLL files
|
|
221
|
+
__pycache__/
|
|
222
|
+
*.py[cod]
|
|
223
|
+
*$py.class
|
|
224
|
+
|
|
225
|
+
# C extensions
|
|
226
|
+
*.so
|
|
227
|
+
|
|
228
|
+
# Distribution / packaging
|
|
229
|
+
.Python
|
|
230
|
+
build/
|
|
231
|
+
develop-eggs/
|
|
232
|
+
downloads/
|
|
233
|
+
eggs/
|
|
234
|
+
.eggs/
|
|
235
|
+
lib/
|
|
236
|
+
lib64/
|
|
237
|
+
parts/
|
|
238
|
+
sdist/
|
|
239
|
+
var/
|
|
240
|
+
wheels/
|
|
241
|
+
share/python-wheels/
|
|
242
|
+
*.egg-info/
|
|
243
|
+
.installed.cfg
|
|
244
|
+
*.egg
|
|
245
|
+
MANIFEST
|
|
246
|
+
|
|
247
|
+
# PyInstaller
|
|
248
|
+
# Usually these files are written by a python script from a template
|
|
249
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
250
|
+
*.manifest
|
|
251
|
+
*.spec
|
|
252
|
+
|
|
253
|
+
# Installer logs
|
|
254
|
+
pip-log.txt
|
|
255
|
+
pip-delete-this-directory.txt
|
|
256
|
+
|
|
257
|
+
# Unit test / coverage reports
|
|
258
|
+
htmlcov/
|
|
259
|
+
.tox/
|
|
260
|
+
.nox/
|
|
261
|
+
.coverage
|
|
262
|
+
.coverage.*
|
|
263
|
+
.cache
|
|
264
|
+
nosetests.xml
|
|
265
|
+
coverage.xml
|
|
266
|
+
*.cover
|
|
267
|
+
*.py,cover
|
|
268
|
+
.hypothesis/
|
|
269
|
+
.pytest_cache/
|
|
270
|
+
cover/
|
|
271
|
+
|
|
272
|
+
# Translations
|
|
273
|
+
*.mo
|
|
274
|
+
*.pot
|
|
275
|
+
|
|
276
|
+
# Django stuff:
|
|
277
|
+
*.log
|
|
278
|
+
local_settings.py
|
|
279
|
+
db.sqlite3
|
|
280
|
+
db.sqlite3-journal
|
|
281
|
+
|
|
282
|
+
# Flask stuff:
|
|
283
|
+
instance/
|
|
284
|
+
.webassets-cache
|
|
285
|
+
|
|
286
|
+
# Scrapy stuff:
|
|
287
|
+
.scrapy
|
|
288
|
+
|
|
289
|
+
# Sphinx documentation
|
|
290
|
+
docs/_build/
|
|
291
|
+
|
|
292
|
+
# PyBuilder
|
|
293
|
+
.pybuilder/
|
|
294
|
+
target/
|
|
295
|
+
|
|
296
|
+
# Jupyter Notebook
|
|
297
|
+
|
|
298
|
+
# IPython
|
|
299
|
+
|
|
300
|
+
# pyenv
|
|
301
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
302
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
303
|
+
# .python-version
|
|
304
|
+
|
|
305
|
+
# pipenv
|
|
306
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
307
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
308
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
309
|
+
# install all needed dependencies.
|
|
310
|
+
#Pipfile.lock
|
|
311
|
+
|
|
312
|
+
# poetry
|
|
313
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
314
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
315
|
+
# commonly ignored for libraries.
|
|
316
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
317
|
+
#poetry.lock
|
|
318
|
+
|
|
319
|
+
# pdm
|
|
320
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
321
|
+
#pdm.lock
|
|
322
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
323
|
+
# in version control.
|
|
324
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
325
|
+
.pdm.toml
|
|
326
|
+
|
|
327
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
328
|
+
__pypackages__/
|
|
329
|
+
|
|
330
|
+
# Celery stuff
|
|
331
|
+
celerybeat-schedule
|
|
332
|
+
celerybeat.pid
|
|
333
|
+
|
|
334
|
+
# SageMath parsed files
|
|
335
|
+
*.sage.py
|
|
336
|
+
|
|
337
|
+
# Environments
|
|
338
|
+
.env
|
|
339
|
+
.venv
|
|
340
|
+
env/
|
|
341
|
+
venv/
|
|
342
|
+
ENV/
|
|
343
|
+
env.bak/
|
|
344
|
+
venv.bak/
|
|
345
|
+
|
|
346
|
+
# Spyder project settings
|
|
347
|
+
.spyderproject
|
|
348
|
+
.spyproject
|
|
349
|
+
|
|
350
|
+
# Rope project settings
|
|
351
|
+
.ropeproject
|
|
352
|
+
|
|
353
|
+
# mkdocs documentation
|
|
354
|
+
/site
|
|
355
|
+
|
|
356
|
+
# mypy
|
|
357
|
+
.mypy_cache/
|
|
358
|
+
.dmypy.json
|
|
359
|
+
dmypy.json
|
|
360
|
+
|
|
361
|
+
# Pyre type checker
|
|
362
|
+
.pyre/
|
|
363
|
+
|
|
364
|
+
# pytype static type analyzer
|
|
365
|
+
.pytype/
|
|
366
|
+
|
|
367
|
+
# Cython debug symbols
|
|
368
|
+
cython_debug/
|
|
369
|
+
|
|
370
|
+
# PyCharm
|
|
371
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
372
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
373
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
374
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
375
|
+
.idea/
|
|
376
|
+
|
|
377
|
+
### Python Patch ###
|
|
378
|
+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
|
|
379
|
+
poetry.toml
|
|
380
|
+
|
|
381
|
+
# ruff
|
|
382
|
+
.ruff_cache/
|
|
383
|
+
|
|
384
|
+
### Vim ###
|
|
385
|
+
# Swap
|
|
386
|
+
[._]*.s[a-v][a-z]
|
|
387
|
+
!*.svg # comment out if you don't need vector files
|
|
388
|
+
[._]*.sw[a-p]
|
|
389
|
+
[._]s[a-rt-v][a-z]
|
|
390
|
+
[._]ss[a-gi-z]
|
|
391
|
+
[._]sw[a-p]
|
|
392
|
+
|
|
393
|
+
# Session
|
|
394
|
+
Session.vim
|
|
395
|
+
Sessionx.vim
|
|
396
|
+
|
|
397
|
+
# Temporary
|
|
398
|
+
.netrwhist
|
|
399
|
+
# Auto-generated tag files
|
|
400
|
+
tags
|
|
401
|
+
# Persistent undo
|
|
402
|
+
[._]*.un~
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
### Visual Studio Code ###
|
|
406
|
+
.vscode/
|
|
407
|
+
|
|
408
|
+
### VirtualEnv ###
|
|
409
|
+
# Virtualenv
|
|
410
|
+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
|
|
411
|
+
[Bb]in
|
|
412
|
+
[Ii]nclude
|
|
413
|
+
[Ll]ib
|
|
414
|
+
[Ll]ib64
|
|
415
|
+
[Ll]ocal
|
|
416
|
+
pyvenv.cfg
|
|
417
|
+
pip-selfcheck.json
|
|
418
|
+
|
|
419
|
+
### VisualStudioCode ###
|
|
420
|
+
.vscode/*
|
|
421
|
+
!.vscode/settings.json
|
|
422
|
+
!.vscode/tasks.json
|
|
423
|
+
!.vscode/launch.json
|
|
424
|
+
!.vscode/extensions.json
|
|
425
|
+
!.vscode/*.code-snippets
|
|
426
|
+
|
|
427
|
+
# Local History for Visual Studio Code
|
|
428
|
+
.history/
|
|
429
|
+
|
|
430
|
+
# Built Visual Studio Code Extensions
|
|
431
|
+
*.vsix
|
|
432
|
+
|
|
433
|
+
### VisualStudioCode Patch ###
|
|
434
|
+
# Ignore all local history of files
|
|
435
|
+
.history
|
|
436
|
+
.ionide
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
# Docs
|
|
440
|
+
# docs/**/*.png
|
|
441
|
+
# docs/**/*.svg
|
|
442
|
+
|
|
443
|
+
# AI agents
|
|
444
|
+
**/.bob/
|
|
445
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 International Business Machines
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|