Advertisement
Guest User

Untitled

a guest
Apr 18th, 2020
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. for row in csv_data:
  2. cursor.execute(
  3. 'INSERT INTO rogobenDB(docusignid, publicurl, filingtype, \
  4. cityagencyname, cityagencycontactname, \
  5. cityagencycontacttelephone, cityagencycontactemail, \
  6. bidrfpnumber, natureofcontract, datesigned, comments, \
  7. filenumber, originalfilingdate, amendmentdescription, \
  8. additionalnamesrequired, signername, signertitle \
  9. )' \
  10. 'VALUES("%s", "%s", "%s", "%s", "%s", "%s", "%s", "%s", "%s", \
  11. "%s", "%s", "%s", "%s", "%s", "%s", "%s", "%s" \
  12. )',
  13. row
  14. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement