You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the issue?
The shown Python 2 code is outdated and gives instant errors if you try to run it in Python 3 (which is out since 2008, so definitely the today's standard):
Can you propose a solution?
To just make it work again it would be
importjson,http.client# new importconnection=http.client.HTTPSConnection('YOUR.PARSE-SERVER.HERE', 443) # using new importconnection.connect()
connection.request('GET', '/parse/classes/GameScore', '', {
"X-Parse-Application-Id": "${APPLICATION_ID}",
"X-Parse-REST-API-Key": "${REST_API_KEY}"
})
result=json.loads(connection.getresponse().read())
print(result) # changed print syntax
Do we want to renew all the Python examples step by step to have modern examples you can directly use without errors and Googling what to change to make everything work again???
I'm interested in doing this if you say we want this to be done.
The text was updated successfully, but these errors were encountered:
Link to section:
I don't know how many doc entries contain Python code but in the REST API guide are most of them:
https://docs.parseplatform.org/rest/guide
What is the issue?
The shown Python 2 code is outdated and gives instant errors if you try to run it in Python 3 (which is out since 2008, so definitely the today's standard):
Can you propose a solution?
To just make it work again it would be
But according to the PEP 8 coding guidelines the imports should be on seperate lines and there should be 2 blank lines after the import section:
Do we want to renew all the Python examples step by step to have modern examples you can directly use without errors and Googling what to change to make everything work again???
I'm interested in doing this if you say we want this to be done.
The text was updated successfully, but these errors were encountered: