やりたいこと、困っていること
tweepyでツイート内容をすべて表示させたい
その際に以下のように途中までしか表示されないので困っている
Twitter名 :Raghu Vamsi ------------------------- 72. What is ENI? - ELASTIC NETWORK INTERFACE. Its just a network interface which enables EC2 instances to access th… https://t.co/rRm4Sdkyv2
本来のツイート内容
72. What is ENI? - ELASTIC NETWORK INTERFACE. Its just a network interface which enables EC2 instances to access the network. ENI is a logical networking component in VPC that represents a virtual network card. #100DaysOfCode #DEVCommunity #AWS
実際のコード
何の変哲もないコードです
どなたか回答お願いします。
python
1import tweepy, clipboard, re 2from config import CONFIG 3get=clipboard.get() 4if 'https://' in get: 5 id=get.split('/')[3] 6 s=get.split('/')[5] 7 tid=s.split('?')[0] 8 9CONSUMER_KEY = CONFIG["CONSUMER_KEY"] 10CONSUMER_SECRET = CONFIG["CONSUMER_SECRET"] 11ACCESS_TOKEN = CONFIG["ACCESS_TOKEN"] 12ACCESS_SECRET = CONFIG["ACCESS_SECRET"] 13auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET) 14 15auth.set_access_token(ACCESS_TOKEN, ACCESS_SECRET) 16 17api = tweepy.API(auth) 18 19tweet = api.user_timeline(id=id, max_id=tid, count=1) 20for status in tweet: 21 print('Twitter名 :'+status.user.name) 22 tweetid=tid #ツイートのID 23 user=id #ツイート主の@抜き 24 text=status.text #ツイート内容 25 print('-------------------------') 26 print(text)
回答2件
あなたの回答
tips
プレビュー