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'[<>:"/\\|*?]'