I have this code , in this code i get a json object from a url(ajax) and i need to get internal data, this is my code:
url = URL_BASE9
req = requests.get(url)
statusCode = req.status_code
if statusCode == 200:
html = BeautifulSoup(req.text, "html.parser")
#print(html)
and this is my result
`{'FiltroFechaInicio': '/Date(-62135586000000)/', 'Pagina': 1, 'ListHechos': 
 [{'contenido': '<div class="ExternalClass3DB02CFE22F84F3F998EBEA913E5A79B">
 <div><a 
 href="/Noticiascibe/hechos%20esenciales/NAVIERA/hes_2017060105740.pdf">
 hes_2017
 060105740.pdf</a></div></div>', 'Activo': None, 'FechaString': '15-06-
 2017', 
 'TipoAdjunto': None, 'UrlAdjunto': 
 '/Noticiascibe/hechos%20esenciales/NAVIERA/hes_2017060105740.pdf', 
 'Descripcion': None, 'UrlImagen': None, 'ClaseIconoAdjunto': 
 'iconoDescargaPDF', 'Fecha': '/Date(1497566727000)/'}`
how do get the content of data, thanks and have nice day
 
     
    