i am trying to create and display arrays from a string value. First i try to create a JSON value from the string, then i try to display key/values from it.
I get the error: Invalid syntax on last rule... busy whole evening, but can't find dit out:(
Python3 code:
import urllib.request
import urllib.parse
import json
user = 'user'
pw = 'password'
login_url = 'http://www.xxxxxxx.nl/test/index.php'
data = urllib.parse.urlencode({'user': user, 'pw': pw})
data = data.encode('utf-8')
# adding charset parameter to the Content-Type header.
request = urllib.request.Request(login_url)
request.add_header("Content-Type","application/x-www-form-urlencoded;charset=utf-8")
f = urllib.request.urlopen(request, data)
## returning content from webpage: {"A":"aap","B":"noot","C":"mies"}
#json.JSONDecoder().decode(f)
#json.JSONDecoder.raw_decode(f)
#test = print(f.read().decode('utf-8'))
test = f.read().decode('utf-8')
#print (test)
#test2 = json.JSONDecoder().decode(test)
test = '{"A":"aap","B":"noot","C":"mies"}'
dest = json.loads(test)
print dest['A'] ## <<< invalid syntax ??
#json.loads(test2)
dict(not even some special kind ofdict) from the JSON string representation of a dictionary/object.