Advertisement
Guest User

Untitled

a guest
Nov 30th, 2024
606
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.02 KB | Source Code | 0 0
  1. #!/usr/bin/python3
  2. import chobot
  3.  
  4. fmt = '|%24s |%8s |%8s |%9s |%9s |%10s |%9s |%8s |%9s |%9s |'
  5. print (fmt % ('Domain','Version','Monthly','Max.char', 'Max.poll', 'Translate', 'New user', 'Approve', 'Image MB', 'Video MB'))
  6. domeny = ('mastodonczech.cz', 'witter.cz', 'cztwitter.cz', 'f.cz', 'mastodon.pirati.cz', 'mastodon.arch-linux.cz', 'mamutovo.cz', 'mastodon.cesko.digital')
  7. total = 0
  8.  
  9. fsechno = [chobot.nasaj(domena) for domena in domeny]
  10.  
  11. for j in sorted(fsechno, key = lambda k: int(k['usage']['users']['active_month']), reverse=True):
  12.   c = j['configuration']
  13.   u = j['usage']['users']['active_month']
  14.   total += int(u)
  15.   print(fmt % (j['domain'], j['version'], u, c['statuses']['max_characters'], c['polls']['max_options'],
  16.                c['translation']['enabled'], j['registrations']['enabled'], j['registrations']['approval_required'],
  17.                int(c['media_attachments']['image_size_limit'] >> 10), int(c['media_attachments']['video_size_limit'] >> 10)))
  18.  
  19. print('|%24s |%8s |%8s |' % ('Total', '', total))
  20.  
Tags: Mastodon
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement