I have a file input element on my HTML page like so :
input type="file"
which receives the path to an image file chosen by the user.
I need to pass this image to a python script for the remainder of the processing. How do I go about doing this? I'm familiar with CGI and its working. I am unclear on how I would send the image per se.
Thanks for your help!