This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/redis/redis-py/ | |
# https://realpython.com/intro-to-python-threading/ | |
import time | |
import threading | |
from redis import Redis | |
from redis.exceptions import LockError, TimeoutError, LockNotOwnedError | |
r = Redis(host='localhost', port=6379, db=0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UOM_MAPPING = { | |
'BL06': [ | |
'absa.product_uom_bl06_bl06', | |
'absa.product_uom_pza_pza', | |
], | |
'TRAMO': [ | |
# Esta es una unidad pote, por lo tanto | |
# Hay que tomar otras variables en cuenta | |
# para su conversión | |
'absa.product_uom_tramo_tramo', |