Ok, so please note that this is my first post
So, I am trying to use Python to get Twitter Twitter, I am using python 2.7 and Tweepy.
I would like something like this (which works):
#!/usr/bin/python
This gives a massive JSON string,
I would like to extract each trend name into a variable, in the format of the str(trendsname) string ideally.
What would ideally have the names of such trends: trendsname = str(trend1) + " " +str(trend2) + " " , etc. for each of the trend names.
Please note that I only study Python.
source share