Hi everyone! I’m currently working on a HTTP-conne...
# connector-development
i
Hi everyone! I’m currently working on a HTTP-connector for a weather-API and I’m having one issue. Currently, I can define a configuration with one city and a date. My connector then successfully delivers the weather data for that city & day. What I want is to be able to use an array of cities in my configuration instead of one city. My idea was to change the
request_params
such that instead of returning one dictionary, I return a list of dictionaries where each entry corresponds to the same request but for a different city. However, using a list of dictionaries instead of one dictionaries only results in a
Too many values to unpack
-error. Does anyone have an idea on how I could solve this problem?
o
loading...