Hello,
Â
I was initially running a python script outside FME to prompt a user for a said city to download data for.Â
I would like to integrate that script as a "Python Startup Script", in FME 2017.1.ÂI am stuck right at the beginning where I want the user to mention the city but the input caller stops the progress of the translation and the console log is waiting for something I am not sure how to enter. It would be even cooler if I could present him a dropdown list to chose from.
county_name = input('City Name: ').title()
The log window shows the following:
FME_BEGIN_PYTHON: evaluating python script from string...
Enter the City Name:
...aaand I cannot do anything here. Or I am not aware of the input place.
Any advice on how to overcome this?