Skip to content

Commit 863f96e

Browse files
authored
Merge pull request #34 from OpenIsraeliSupermarkets/next_veriosn
Next version
2 parents 60843d4 + 94cb862 commit 863f96e

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

il_supermarket_parsers/parsers/salach_dabach.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ def __init__(self) -> None:
99
super().__init__(
1010
price_parser=XmlDataFrameConverter(
1111
list_key="Items",
12-
id_field="ItemId",
12+
id_field="ItemCode",
1313
roots=["ChainId", "SubChainId", "StoreId", "BikoretNo"],
1414
ignore_column=["DllVerNo", "XmlDocVersion"],
1515
),
1616
pricefull_parser=XmlDataFrameConverter(
1717
list_key="Items",
18-
id_field="ItemId",
18+
id_field="ItemCode",
1919
roots=["ChainId", "SubChainId", "StoreId", "BikoretNo"],
2020
ignore_column=["DllVerNo", "XmlDocVersion"],
2121
),

il_supermarket_parsers/parsers/tests/test_case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def __init__(self, name) -> None:
6262
self.parser_class = ParserFactory.get(parser_enum)
6363
self.parser_name = parser_enum.name
6464
self.folder_name = "temp"
65-
self.refresh = False
65+
self.refresh = True
6666

6767
def _get_temp_folder(self, dump_folder):
6868
"""get a temp folder to download the files into"""

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ pandas==2.2.2
22
lxml==5.2.1
33
pymongo==4.6.3
44
il-supermarket-scraper>=0.6.1
5-
tqdm==4.66
5+
tqdm>=4.66
66

77
dnspython>=2.6.1 # not directly required, pinned by Snyk to avoid a vulnerability

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
tests_require=dev_required,
3232
extras_require={"test": ["pytest", "pytest-xdist"]},
3333
# *strongly* suggested for sharing
34-
version="0.2.1",
34+
version="0.2.2",
3535
# The license can be anything you like
3636
license="MIT",
3737
description="python package that process the data dumped by the israeli supermarket",

0 commit comments

Comments
 (0)