import loit# download data# hindi and telugu are available as of nowloit.download('hindi', 'data')# download fasttext cbow vectors and read them loit.load_vectors('hindi', 'cbow')# download fasttext skipgram vectors and read themloit.load_vectors('hindi', 'skipgram')# read the jsons from data#returns iterator that yields jsonsit = loit.read_data('telugu')for tweet_json in it: print(tweet_json['tweet']) input()