Skip to content
Snippets Groups Projects
Commit 3c220f88 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

PEP 8

parent cc33cfba
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ import datetime
from xml.etree import ElementTree
WOO_IMP_EXP_FIELDS = [
# ("FieldName", "Default Value"),
# ("FieldName", "Default Value"),
("Id", ""),
("Product Name", ""),
("Created Date", datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")),
......@@ -80,11 +80,14 @@ WOO_IMP_EXP_FIELDS = [
("Ping Status", "open")
]
def strip_html(html_string):
"""Remove all HTML tags from a string."""
return ''.join(ElementTree.fromstring("<body>{0}</body>".format(html_string)).itertext())
return ''.join(ElementTree.fromstring("<body>{0}</body>"
.format(html_string)).itertext())
def ecwid_parser(r, r_id = None):
def ecwid_parser(r, r_id=None):
alphanum = re.compile('[\W_]+')
try:
r["description"] = strip_html(r["description"])
......@@ -98,7 +101,7 @@ def ecwid_parser(r, r_id = None):
"Categories": json.dumps(list(filter(None, [
{"name": r["category{0}".format(c)],
"slug": alphanum.sub('', r["category{0}".format(c)]).lower()}
if r["category{0}".format(c)] else None for c in range(1,3)]))),
if r["category{0}".format(c)] else None for c in range(1, 3)]))),
"SKU": r["sku"],
"Weight": r["weight"],
"Product Images": r["image"],
......@@ -112,13 +115,15 @@ def ecwid_parser(r, r_id = None):
})
return woo_row
def make_woocommerce_csv(input_file, output_file):
"""Convert input_file, a CSV of eCommerce products, into
a format that can be imported by WooCommerce."""
count = 0
with open(input_file) as csv_in, open(output_file, "w") as csv_out:
reader = csv.DictReader(csv_in, delimiter=';')
writer = csv.DictWriter(csv_out, fieldnames=[f for f, d in WOO_IMP_EXP_FIELDS])
writer = csv.DictWriter(csv_out,
fieldnames=[f for f, d in WOO_IMP_EXP_FIELDS])
writer.writeheader()
for row in reader:
row = ecwid_parser(row)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment