Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Hannah Stahl
Hannah Stahl
991 Points

Handling AJAX data in Python file

Hi, I just finished watching the tutorial on AJAX basics. I understand how to send data to a Python file via AJAX, but what I don't understand is how to handle that data in the Python file itself. What code do I need to write in the Python file to grab the incoming piece(s) of data, and what code do I need to write to send my response back? Thank you!!

2 Answers

Dave McFarland
STAFF
Dave McFarland
Treehouse Teacher

Great question Hannah Stahl

Our Python teacher, Kenneth Love is the best to answer that.

Kenneth Love
STAFF
Kenneth Love
Treehouse Guest Teacher

Hi Hannah Stahl. Most of the time, this would be handled by some sort of Python web framework, like Flask or Django. They'd be listening on a certain address or port, your AJAX would send the request there, and then the framework would handle processing the incoming request data. It would then be able to send a response back.

Do you have any code you show of your Python script?