I would like to know if its possible to use python to connect to a certain site
(EX: http://www.example.com/python )
and upload an image from the computer. Basically I have a python script that takes images from the webcam. Now after it takes the image how can i send that image to a webpage. If you tell me how to get it to connect to the page I can handle the rest. Thanks in advance!
THIS IS THE PYTHON SCRIPT AT HAND:
from VideoCapture import Device
cam = Device(devnum=1)
cam.saveSnapshot('image.jpg', timestamp=3, boldfont=1)