feat: ozon sync

This commit is contained in:
2024-09-02 19:19:41 +03:00
parent 82236a7750
commit d24be8fb7d
8 changed files with 337 additions and 39 deletions

3
utils/list_utils.py Normal file
View File

@@ -0,0 +1,3 @@
def chunk_list(lst, n) -> list:
for i in range(0, len(lst), n):
yield lst[i:i + n]