Update pihole_tweeter.py

This commit is contained in:
Michael Woolweaver 2019-04-15 22:40:04 -05:00 committed by GitHub
parent b0c5905bcc
commit 8cdc67ba52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,11 +29,6 @@ if not (api_path, consumer_key, consumer_key, consumer_secret, access_token, acc
sys.exit(1) sys.exit(1)
def comma_value(num):
"""Helper function for thousand separators"""
return "{:,}".format(int(num)).replace(',', '.')
def get_api(): def get_api():
auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret) auth.set_access_token(access_token, access_token_secret)
@ -65,12 +60,12 @@ def get_pihole_data():
def construct_tweet(data): def construct_tweet(data):
today = datetime.today().strftime("%d.%m.%Y") today = datetime.today().strftime("%m.%d.%Y")
tweet = 'Pi-Hole-Statistik für den {date}:\n'.format(date=today) tweet = 'Pi-hole statistics for {date}:\n'.format(date=today)
tweet += 'Blockierte Werbung: ' + str(comma_value(data['ads_blocked_today'])) tweet += 'Total Ads Blocked: ' + (data['ads_blocked_today'])
tweet += ' (' + str(round(data['ads_percentage_today'], 2)).replace('.', ',') + ' %)\n' tweet += ' (' + (data['ads_percentage_today'] + ' %)\n'
tweet += 'DNS-Abfragen: ' + str(comma_value(data['dns_queries_today'])) + '\n' tweet += 'Total DNS Queries: ' + (data['dns_queries_today']) + '\n'
tweet += 'Domains auf der Blacklist: ' + str(comma_value(data['domains_being_blocked'])) tweet += 'Domains on Blacklist: ' + (data['domains_being_blocked'])
return tweet return tweet