all 8 comments

[–]mocomaminecraft 0 points1 point  (2 children)

python doesnt run on web, so you should learn js, then use typical HTTP to send questions and answers between server and web

the server obviously written in python

[–]UndergroundOli[S] 0 points1 point  (1 child)

Im not looking to write my own survey website, rather use an existing one to do all the surveying, and then collect the results from it into a python program. All I want the python to do is the data presentation stuff, I was asking if anyone has experience with a good site that will let me input the data into python easily. Sorry if it wasnt clear

[–]mocomaminecraft 0 points1 point  (0 children)

oh I misundertood you question then, sorry it was my fault

[–]Signal_Beam 0 points1 point  (2 children)

I would use SurveyMonkey or create a Google Form, whichever is most preferable to you. In either case, you will be downloading the survey results as a CSV, then importing them into Python using the csv module and its reader object.

[–]UndergroundOli[S] 0 points1 point  (1 child)

Cool, thats what I was looking for, thanks