spacepaste

  1.  
  2. [('FPVRC Cheerson CX-10 Mini RC Quadcopter 2.4G 4CH 6 Axis Gyro Nano Drone with Headless Mode, 360 Degree Flips and LED Lights, Orange', 'Yuccasepal', "Teenage boys are the least likely to receive a toy this Christmas. Please don't forget to buy some AAA batteries if you can - they are on our list for you to select.", Decimal('12.78'), 50, 22, 0.44, True, 'https://images-na.ssl-images-amazon.com/images/I/61sJOAP9NaL._SS135_.jpg')]
  3. INSERT INTO items (title, supplier, comment, price, wants, has, fulfilled, instock, image)
  4. VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s)
  5. ON DUPLICATE KEY UPDATE
  6. title=VALUES(title),
  7. supplier=VALUES(supplier),
  8. comment=VALUES(comment),
  9. price=VALUES(price),
  10. wants=VALUES(wants),
  11. has=VALUES(has),
  12. fulfilled=VALUES(fulfilled),
  13. instock=VALUES(instock),
  14. image=VALUES(image)
  15.