first script, token has to be on folder
commit
bf803e2d44
@ -0,0 +1,24 @@
|
||||
from mastodon import Mastodon
|
||||
from pprint import pprint
|
||||
import time
|
||||
import datetime
|
||||
|
||||
with open('token.txt','r') as token:
|
||||
print(token.read())
|
||||
mastodon = Mastodon(access_token=token.read(),api_base_url="https://todon.nl")
|
||||
|
||||
|
||||
descendants = mastodon.status_context(id=101767654564328802)["descendants"]
|
||||
|
||||
for answer in descendants:
|
||||
pprint(answer["id"])
|
||||
#geral = mastodon.status(answer["id"]))
|
||||
avatar = mastodon.status(answer["id"])['account']['avatar']
|
||||
name = mastodon.status(answer["id"])['account']['display_name']
|
||||
bot = mastodon.status(answer["id"])['account']['bot']
|
||||
content = mastodon.status(answer["id"])['content']
|
||||
pprint("Avatar:" + "\n" + str(avatar) + "\n" + "\n")
|
||||
pprint("Name:" + "\n" + str(name) + "\n" + "\n")
|
||||
pprint("Bot:" + "\n" + str(bot) + "\n" + "\n")
|
||||
pprint("Content:" + "\n" + str(content) + "\n" + "\n")
|
||||
time.sleep(3)
|
Loading…
Reference in New Issue