Retrieve product info from AliExpress in a form of a Python dictionary, or whatever the hell you want.
from aliexpress_importer import *
IMPORTER = Importer()
product: Product = IMPORTER.import_product(url)
Every data type comes with hinting.
product.asdict()
Fetches product data from URLs specified in urls.txt
(separated by line break). Then copies an Excel table to the clipboard, which you can then paste into any excel table.
py ./to_excel.py <urls.txt>
Exports product data from the provided URL into 2 files:
raw.json
- containing raw product related data, scraped directly from Aliproduct.json
- containing parsed product data, having the same structure as the returnedProduct
class
py ./to_json.py <url>