I get the following from a url (get requests with python module request):
{"AMU":"PAR","nombres":"158612","id":"stacks"} How would I get python to print just the values for example, I want it to print "stacks" or "158612"
I have tried:
soup.find['id'] and:
soup.find("AMU": "PAR")["nombres"]
x['nombres']orx['id']