Python Forum
Read JSON via API and write to SQL database
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Read JSON via API and write to SQL database
#3
(Aug-09-2022, 03:12 PM)snippsat Wrote: Line 12 is wrong,here you dump to string then can iterate over to get key in line 24.
Use addressData(it's a dictionary) as Requests has build in json decoder(don't need import json).

Try change line 24 to:
for cliente in addressData['items']:

Hello, I changed as requested, but it gave the following error.

Traceback (most recent call last):
File "c:\Projetos\api\getCliente.py", line 33, in <module>
cursor.executemany(comandoSQL, valoresInserir)
pyodbc.ProgrammingError: ('The SQL contains 0 parameter markers, but 3 parameters were supplied', 'HY000')
Reply


Messages In This Thread
RE: Read JSON via API and write to SQL database - by TecInfo - Aug-09-2022, 04:11 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Delete file with read-only permission, but write permission to parent folder cubei 6 22,144 Jun-01-2024, 07:22 AM
Last Post: Eleanorreo
  python Read each xlsx file and write it into csv with pipe delimiter mg24 4 1,738 Nov-09-2023, 10:56 AM
Last Post: mg24
Question Special Characters read-write Prisonfeed 1 702 Sep-17-2023, 08:26 PM
Last Post: Gribouillis
  How do I read and write a binary file in Python? blackears 6 7,786 Jun-06-2023, 06:37 PM
Last Post: rajeshgk
  Pymodbus read and save to database stewietopg 3 1,976 Mar-02-2023, 09:32 AM
Last Post: stewietopg
  Read text file, modify it then write back Pavel_47 5 1,799 Feb-18-2023, 02:49 PM
Last Post: deanhystad
  write json into a table herobpv 4 1,596 Jan-22-2023, 04:36 AM
Last Post: herobpv
  how to read txt file, and write into excel with multiply sheet jacklee26 14 10,730 Jan-21-2023, 06:57 AM
Last Post: jacklee26
  Read nested data from JSON - Getting an error marlonbown 5 1,513 Nov-23-2022, 03:51 PM
Last Post: snippsat
  Write and read back data Aggie64 6 2,017 Apr-18-2022, 03:23 PM
Last Post: bowlofred

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020