Created
October 20, 2024 00:09
-
-
Save lelandbatey/2fee3ace6bc2ad08ba474725d0532d0e to your computer and use it in GitHub Desktop.
Dump amazon orders to CSV - paste into console
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
// copy paste into the console on a page like | |
(()=>{ | |
const shrinkSpaces = (str) => { return str.replace(/\s+/g, ' '); }; | |
let params = new URL(document.location.toString()).searchParams; | |
console.log(`Start Index: ${params.get('startIndex')}`) | |
const splitOn = ['Order placed', 'Total', 'Ship to', 'Order #', 'View order details', 'View invoice']; | |
const regex = new RegExp(splitOn.join("|"), "g"); | |
const rows = document.querySelectorAll('.order-header'); | |
let csv = ""; | |
rows.forEach((row, idx) => { | |
var txt = shrinkSpaces(row.textContent); | |
let bits = txt.split(regex); | |
let orderDate = bits[1].trim(); | |
let orderAmount = bits[2].trim(); | |
let orderNumber = bits[4].trim(); | |
let orderContents = Array.from(row.parentElement.querySelectorAll('.yohtmlc-product-title')).map(x => x.textContent.trim().replaceAll(',',' -')).join('; '); | |
// https://www.amazon.com/gp/css/order-details?orderID=<order_number> | |
csv += `${orderDate.replace(',','')},${orderAmount},https://www.amazon.com/gp/css/order-details?orderID=${orderNumber},${orderContents}\n`; | |
}); | |
console.log(csv); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment