7 Answers
+ 15
To achieve Python persistence, I used a Google Sheet, Google Site (for public view), App Script (like server-side javascript) and sockets.
Notes: https isn't a problem--Python ignores CORS. App Scripts must be published after saving (no autopublish).
Site + Sheet view here (Jafca tests at 10m!)
https://sites.google.com/site/sllkspersist/
Rows before 2017-03-14 are from "pypersist" + very early socket ideas:
https://code.sololearn.com/cJTcw0o5WgaZ/#py
Home version, easier import "requests":
https://code.sololearn.com/c37XERvwb2Cz/#py
Text maze persistence / JSON (after 2017-03-14) from:
https://code.sololearn.com/cx84c2P4zMgt/#py
App Script (Sheets menu: Tools | Script Editor):
https://code.sololearn.com/W0uupH4nuCnG/#html
API+etc links:
* https://developers.google.com/sheets/api/
* https://developers.google.com/apps-script/
* https://developers.google.com/apps-script/guides/sheets
* https://developers.google.com/apps-script/reference/spreadsheet/
* https://script.google.com/home
+ 15
I'm afraid not.
But you can create it on the fly:
https://code.sololearn.com/csyhsIovmZJ3/?ref=app
+ 11
That might be a problem because of security reasons. I had problems with retrieving files through https from within SoloLearn. Downloading remote files via http works like a charm, though.
Perhaps Kirk Schafer could help here?
+ 8
By the way, if you have questions, no problem; I was just trying to fit everything into ONE post so that elaborations fall back to one answer :)
+ 5
Thanks! Just wanted to take out the step of having people fill out a separate Google Form, and being unable to access the Google Sheets from Sololearn
+ 5
thank you kirk! i will take the time to look over all your responses, they seem extremely helpful!!!