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![](https://ecs-static.teamtreehouse.com/assets/views/marketing/shared/community-banner-white-47072046c51352fe6a69f5e691ff5700b28bb11d45197d7bdf066d9ea3f72d0c.webp)
![Hannah Stahl](https://secure.gravatar.com/avatar/fee225570d2f5ba2ca8235eeb20f9544?s=96&d=https%3A%2F%2Fecs-static.teamtreehouse.com%2Fassets%2Fcontent%2Fdefault_avatar-445fbbabfc8dc9188fb5967fe43322ee0c3e0dd1e10f378bf8343784af5a13eb.webp&r=pg)
Hannah Stahl
991 PointsHandling 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](https://uploads.teamtreehouse.com/production/profile-photos/408222/micro_1M7A0052.jpg)
Dave McFarland
Treehouse TeacherGreat question Hannah Stahl
Our Python teacher, Kenneth Love is the best to answer that.
![Kenneth Love](https://uploads.teamtreehouse.com/production/profile-photos/710512/micro_TeacherShoot-Kenneth.jpg)
Kenneth Love
Treehouse Guest TeacherHi 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?