30 lines
1,016 B
Python
Executable file
30 lines
1,016 B
Python
Executable file
import requests
|
|
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
|
|
server = 'https://social.ayco.io'
|
|
thread_ids = ['112294405672971916', '112258065967208438']
|
|
|
|
@app.route('/')
|
|
def home():
|
|
threads = []
|
|
for id in thread_ids:
|
|
status = requests.get(server + '/api/v1/statuses/' + id ).json()
|
|
author = status['account']['id']
|
|
context = requests.get(server + '/api/v1/statuses/' + id + '/context').json()
|
|
descendants = []
|
|
for reply in context['descendants']:
|
|
if reply['account']['id'] == author and reply['in_reply_to_account_id'] == author:
|
|
descendants.append(clean_status(reply))
|
|
status = clean_status(status)
|
|
status['descendants'] = descendants
|
|
status['descendants_count'] = len(descendants)
|
|
threads.append(status)
|
|
return threads
|
|
|
|
def clean_status(status):
|
|
return {k: status[k] for k in {'content', 'created_at', 'url', 'media_attachments', 'card'}}
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host='0.0.0.0')
|