How can i check available arguments for a module
example.
Code: Select all
from picamera import PiCamera
for i in dir(PiCamera)
print(i)in the above example i have ISO in the list. How to know the available ISO settings. or the IMAGE_EFFECTS ?
thanks for your help