python-twitter
python-twitter copied to clipboard
Stream Filter parameters requires a list
parameters in the Stream Filter function have to be passed in a list. Otherwise, the join funcion separates the string values digit by digit. The following does not work: api.GetStreamFilter(locations="2.1,41.1,2.3,41.5" {'locations': '2,.,1,,,4,1,.,1,,,2,.,3,,,4,1,.,5'}
The following, works: api.GetStreamFilter(locations=["2.1,41.1,2.3,41.5"]) {'locations': '2.1,41.1,2.3,41.5'}
Same error here. Still without a solution