regex fix, items with no attributes
This commit is contained in:
parent
4bbafbccf8
commit
c19fac2dc5
@ -29,7 +29,7 @@ def check_items(settings_items):
|
|||||||
itemid is in aliexpress link to item page. attributes is a list of string. Each string is a choice value (for example which length, or which colour) if multiple items are on the same page, only one by category, order doesn't matter.
|
itemid is in aliexpress link to item page. attributes is a list of string. Each string is a choice value (for example which length, or which colour) if multiple items are on the same page, only one by category, order doesn't matter.
|
||||||
'''
|
'''
|
||||||
|
|
||||||
item_regex = re.compile(r'skuAttr\\\":\\\"([0-9:;]*#([a-zA-Z0-9 ]*;?)*)\\\",\\\"skuId\\\":([0-9]*),\\\"skuIdStr\\\":\\\"[0-9]*\\\",\\\"skuPropIds\\\":\\\"[0-9,]*\\\",\\\"skuVal\\\":{\\\"availQuantity\\\":([0-9]*),(\\\"(bulkOrder)\\\":[0-9]*,)?(\\\"discount\\\":\\\"([0-9]*)\\\",\\\"discountTips\\\":\\\"-[0-9]*%\\\",)?\\\"hideOriPrice\\\":(false|true),\\\"inventory\\\":([0-9]*),\\\"isActivity\\\":(true|false),\\\"optionalWarrantyPrice\\\":\[\],(\\\"skuActivityAmount\\\":{\\\"currency\\\":\\\"([A-Z]*)\\\",\\\"formatedAmount\\\":\\\"[0-9]*,[0-9]*.\\\",\\\"value\\\":([0-9]*\.[0-9]*)},\\\"skuActivityAmountLocal\\\":\\\"[0-9]*,[0-9]*.\|[0-9]*\|[0-9]*\\\",)?\\\"skuAmount\\\":{\\\"currency\\\":\\\"([A-Z]*)\\\",\\\"formatedAmount\\\":\\\"[0-9]*,[0-9]*.\\\",\\\"value\\\":([0-9]*\.[0-9]*)}')
|
item_regex = re.compile(r'skuAttr\\\":\\\"([0-9:;]*#([a-zA-Z0-9 ]*;?)*)?\\\",\\\"skuId\\\":([0-9]*),\\\"skuIdStr\\\":\\\"[0-9]*\\\",\\\"skuPropIds\\\":\\\"[0-9,]*\\\",\\\"skuVal\\\":{\\\"availQuantity\\\":([0-9]*),(\\\"bulkOrder\\\":([0-9]*),)?(\\\"discount\\\":\\\"([0-9]*)\\\",\\\"discountTips\\\":\\\"-[0-9]*%\\\",)?\\\"hideOriPrice\\\":(false|true),\\\"inventory\\\":([0-9]*),\\\"isActivity\\\":(true|false),\\\"optionalWarrantyPrice\\\":\[\],(\\\"skuActivityAmount\\\":{\\\"currency\\\":\\\"([A-Z]*)\\\",\\\"formatedAmount\\\":\\\"[0-9]*,[0-9]*.\\\",\\\"value\\\":([0-9]*\.[0-9]*)},\\\"skuActivityAmountLocal\\\":\\\"[0-9]*,[0-9]*.\|[0-9]*\|[0-9]*\\\",)?\\\"skuAmount\\\":{\\\"currency\\\":\\\"([A-Z]*)\\\",\\\"formatedAmount\\\":\\\"[0-9]*,[0-9]*.\\\",\\\"value\\\":([0-9]*\.[0-9]*)}')
|
||||||
choice_regex = re.compile(r'businessModel\\\":\\\"CHOICE\\\"')
|
choice_regex = re.compile(r'businessModel\\\":\\\"CHOICE\\\"')
|
||||||
magnifier_image_regex = re.compile(r'<meta property=\"og:image\" content=\"(https:[0-9a-zA-Z\/\-\_.]*)\"\/>')
|
magnifier_image_regex = re.compile(r'<meta property=\"og:image\" content=\"(https:[0-9a-zA-Z\/\-\_.]*)\"\/>')
|
||||||
|
|
||||||
|
@ -38,10 +38,13 @@ def update_hist():
|
|||||||
def add_item():
|
def add_item():
|
||||||
print("adding item")
|
print("adding item")
|
||||||
itemid = request.form['itemid']
|
itemid = request.form['itemid']
|
||||||
|
if len(request.form['attributes'])>0:
|
||||||
attributes = request.form['attributes'].split(',')
|
attributes = request.form['attributes'].split(',')
|
||||||
|
else:
|
||||||
|
attributes = []
|
||||||
new_item = [(itemid, attributes)]
|
new_item = [(itemid, attributes)]
|
||||||
extr = check_items(new_item)
|
extr = check_items(new_item)
|
||||||
return str(extr['skuid'])
|
return str(extr)
|
||||||
|
|
||||||
@app.route('/datahistory',methods = ['POST', 'GET'])
|
@app.route('/datahistory',methods = ['POST', 'GET'])
|
||||||
def data_history_request():
|
def data_history_request():
|
||||||
|
@ -14,6 +14,14 @@ if __name__ == '__main__':
|
|||||||
|
|
||||||
settings = get_conf()
|
settings = get_conf()
|
||||||
|
|
||||||
|
c_l = [("33058732737",["3 M Probe"])]
|
||||||
|
print(check_items(c_l))
|
||||||
|
c_l = [("1005005769229528", ["2 E27 Clip EU"])]
|
||||||
|
print(check_items(c_l))
|
||||||
|
c_l = [("1005004130931033", [])]
|
||||||
|
print(check_items(c_l))
|
||||||
|
|
||||||
|
|
||||||
# initialize(settings["db"])
|
# initialize(settings["db"])
|
||||||
# fill_db(settings["db"], check_items(settings["item"]))
|
# fill_db(settings["db"], check_items(settings["item"]))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user