twitter api wrapper for python3
make class instance with COMSUMER_KEY, COMSUMER_SECRET_KEY, ACCESS_TOKEN, ACCESS_TOKEN_SECRET(get key from dev.twitter.com)
t4p = twitter4py.twitter4py(COMSUMER_KEY, COMSUMER_SECRET_KEY, ACCESS_TOKEN, ACCESS_TOKEN_SECRET)
t4p.request(request_type, endpoint, parameter)
# request_type is "GET" or "POST"
t4p.request("GET", "account/verify_credentials")
t4p.request("POST", "statuses/update", {"status": "tweet text"})
t4p.CreateUserStreaming({options})
# ex.
# t4p.CreateUserStreaming({"with": "followings", "replies": "all"})
t4p.StreamNewResponse() # return type list
# ex.
# for json in t4p.StreamNewResponse():
# print(json["text"])