Hello,
I assume I configured something wrong.
The api.GetUser works fine, as doe the api.GetFollowersPaged
However, api.GetList is not working
I tried the "test" code, and it also fails, thus I figure a configuration issue (the pathname is correct, file exists)
p = "/Users/anon/Desktop/ra/ra-feeds/ra-twitter/python-twitter/testdata/get_lists.json"
with open(p) as f:
resp_data = [f.read()]
responses.add(GET, DEFAULT_URL, body=resp_data)
resp = api.GetLists()
print(resp)
exit(0)
I get a print out of
[]
where I assume I should get a list ...
I am on ubuntu
I did a
pip install python-twitter
Using python 2.7
thanks!!!