This simple script turns an Amazon product title into a seller SKU. Amazon SKUs must be alphanumeric, lowercase, and 40 characters or less.
$ title = 'Cra-Z-Art Classic Fineline Markers, 10pk'
$ skuify(title)
'cra-z-art-classic-fineline-markers-10pk'
git clone https://github.com/jacksonthall22/SKUify.git && cd SKUify
pip install -r requirements.txt
Running main.py
executes a continuous loop where you can paste product titles. The skuified result is printed to the screen and copied to the clipboard using Pyperclip
.
You can use skuify()
directly in Excel:
- Press
alt + f11
in Excel to open the VBA Editor Insert
>Module
- Copy and paste the contents in
excel_vba_script.vba
into the code editor - Save
- Now you can use
SKUify
like a regular Excel function:
A | B | |
---|---|---|
1 | Title | SKU |
2 | Cra-Z-Art Classic Fineline Markers, 10pk | =SKUify(A2) |
- Store map from SKU to ASIN & other product data; search existing SKUs and append
...-1
,...-2
, etc. if SKU already exists for different title - Get approved for Amazon Business APIs
- Excel function to get product title from ASIN / ISBN via Amazon Product Search API
Copyright © 2019 Jackson Hall. All rights reserved.