The Python Image Library (PIL) is a Python actual image management library. You can find it here here either via easy_install or pip if you have them.
Edit: PIL did not update after a while, but it was forked and maintained under the name pillow . Just install it in the shell:
pip install Pillow
The operators importare still the same as PIL (e.g. from PIL import image) and backward compatible.
source
share