From ce404787e8ec7f9a7d79d7dec33d9dff1fc41b9a Mon Sep 17 00:00:00 2001 From: va1is Date: Tue, 5 Aug 2025 15:50:20 +0300 Subject: [PATCH] Gitignore upd --- Parsing ZARAHOME/.gitignore | 32 +++++++++++++++++++++++++++ Parsing ZARAHOME/src/xlsx_recorder.py | 4 ++-- 2 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 Parsing ZARAHOME/.gitignore diff --git a/Parsing ZARAHOME/.gitignore b/Parsing ZARAHOME/.gitignore new file mode 100644 index 0000000..f6c7afd --- /dev/null +++ b/Parsing ZARAHOME/.gitignore @@ -0,0 +1,32 @@ +# ---> macOS +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +__pycache__ +records_folder +Ignore_Temp \ No newline at end of file diff --git a/Parsing ZARAHOME/src/xlsx_recorder.py b/Parsing ZARAHOME/src/xlsx_recorder.py index 2c7fd2a..54ada90 100644 --- a/Parsing ZARAHOME/src/xlsx_recorder.py +++ b/Parsing ZARAHOME/src/xlsx_recorder.py @@ -7,8 +7,8 @@ import re, json, math, logging, requests, os log = logging.getLogger("recorder") # ─────────────────────── настройки ─────────────────────── -SEND_JSON = True # отправка POST -SAVE_JSON = True # сохранять копию JSON +SEND_JSON = False # отправка POST +SAVE_JSON = False # сохранять копию JSON POST_URL = "http://localhost:3005/parser/data" INVALID_CHARS = r'[<>:"/\\|*?]'