Hello I would like to add image to content via python api. But as i see image does not supported. Are there any way to add image via api ?
Yes you can add an image to your content using the ArcGIS API for Python. For example:
from arcgis import GIS
gis = GIS(username='username', password='password')
image_item = gis.content.add(
item_properties={'type': 'Image'},
data='path_to_image_file'
)