Skip to main content

Hi!

Im looking for a way to import StoryMaps API to FME PythonCreator/PythonCaller. I have tried to import and read the following script:

"from arcgis.gis import GIS

from arcgis.gis import Item

from arcgis.apps.storymap.story import StoryMap

from arcgis.apps.storymap import Themes

from arcgis.apps.storymap.story_content import Image, TextStyles, Video, Audio, Embed, Map, Text, Button, Gallery, Swipe, Sidecar, Timeline"

 

When I read this script in PythonCreator/PythonCaller I got a message "Translation FAILED". The first two worked perfectly, but not the other three. Any ideas how i can work around?

 

Appreciate your help!

 

image1image2

Hi Quangu,

 

Storymaps support has only really been implemented since basically this month. Maybe you are using an older arcgis module? Try this in a new python caller:

import arcgis
print(arcgis.__version__)

If the version is lower than 2.0.0 then you need to update ArcGIS Pro first to get this working.

 

Also I think the problem you have is caused by the final comma on line 9. You should not put a linebreak there. If you do want to do that it should be: , \  I think.


It actually worked, when I updated to 2.0.0!

Thank you so much!


Reply