How can I make a looping to bring request information from a list of coordinates of a csv and take the result to another csv?
import requests
import pandas as pd
parametro = dict(latitude=-23.512294, longitude=-46.667259, status=1, lista=1, limite=96, acessibilidade='')
r = requests.post('https://www.banco24horas.com.br/index/busca-json-terminal', data=parametro)
df = r.json()
display(df)