first commit

This commit is contained in:
rnsrk 2023-01-03 00:40:59 +01:00
commit 0b13673bcc
10 changed files with 220 additions and 0 deletions

6
.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
database.db
plots
instance
__pycache__
hedonodon_clientcred.secret
hedonodon_usercred.secret

36
CRUDManager.py Normal file
View file

@ -0,0 +1,36 @@
from DbSetup import engine, session, databaseUrl
import pandas as pd
from sqlalchemy import desc, select
from Tables import Toots
class CRUDManager():
def saveToDatabase(self, dataframe, table:str, useIndex=False):
try:
dataframe.to_sql(table, engine, index=useIndex, if_exists="append")
except:
print(f'Could not save data to {table}!')
def loadFromDatabase(self, table:str, indexColumn=None):
return pd.read_sql_table(table, databaseUrl, index_col=indexColumn)
def getLastToot(self):
stmt = select(Toots.tootId).order_by(desc('datetime'))
return session.scalars(stmt).first()
def calculateAggregates(self, column, aggregate='Count'):
if (aggregate=='Count'):
addGroup = f', {column} '
else:
addGroup = ''
query = f'''SELECT DATE(datetime) as date {addGroup}, {aggregate}({column}) as {column}{aggregate}
FROM Toots
GROUP BY DATE(datetime)''' \
+ addGroup \
+ '''HAVING datetime >= DATE("now","-1 day")
AND datetime < DATE("now")'''
return pd.read_sql(
query,
databaseUrl,
parse_dates=["datetime"]
)

11
DbSetup.py Normal file
View file

@ -0,0 +1,11 @@
from sqlalchemy import create_engine
from sqlalchemy.orm import Session
from sqlalchemy.ext.declarative import declarative_base
databaseUrl = 'sqlite:///database.db'
engine = create_engine(databaseUrl, future=True)
session = Session(engine)
Base = declarative_base()
def init_db():
Base.metadata.create_all(bind=engine)

57
Main.py Normal file
View file

@ -0,0 +1,57 @@
from CRUDManager import CRUDManager
from datetime import datetime
from DbSetup import init_db
import locale
from MastodonAccountManager import MastodonAccountManager
import matplotlib.pyplot as plt
from TootCrawler import TootCrawler
from sqlalchemy.sql import desc, select
locale.setlocale(locale.LC_TIME, "de_DE.UTF-8")
init_db()
mastodonAccountManager = MastodonAccountManager()
mastodonInstance = mastodonAccountManager.instance
"""
mastodonInstance.log_in(
'USER-EMAIL',
'PW',
to_file = 'hedonodon_usercred.secret'
)
"""
tootCrawler = TootCrawler(mastodonInstance)
crudManager = CRUDManager()
lastTootId = crudManager.getLastToot()
tootsDataframe = tootCrawler.buildTootsDataframe(lastTootId)
sentimentsYesterday = crudManager.calculateAggregates('sentiment', 'Count')
compoundsYesterday = crudManager.calculateAggregates('compound', 'Avg')
if not tootsDataframe.empty:
crudManager.saveToDatabase(tootsDataframe, 'Toots', useIndex=False)
crudManager.saveToDatabase(dataframe=sentimentsYesterday, table='Sentiments', useIndex=True)
crudManager.saveToDatabase(dataframe=compoundsYesterday, table='Compounds', useIndex=True)
#print(sentimentsYesterday, 'sentimentsYesterday')
#print(compoundsYesterday, 'sentimentsYesterday')
else:
print('Nothing changed since last database insert!')
TodayDate= datetime.strptime(sentimentsYesterday['date'][0], '%Y-%m-%d').strftime('%d.%m.%Y')
dataframe4PieChart = sentimentsYesterday.drop('date', axis=1).set_index('sentiment')
dataframe4LineChart = crudManager.loadFromDatabase('Compounds', 'date').drop('index', axis=1)
fig, axes = plt.subplots(nrows=2, ncols=1, figsize=(10,10))
pieChartlabels = dataframe4PieChart.index.to_numpy()
pieChart = dataframe4PieChart.plot.pie(ax=axes[0], y='sentimentCount', ylabel="", labels=dataframe4PieChart['sentimentCount'], title=f'Moods of the toots on {TodayDate} of the local timeline on fedihum.org', colors = ['red', 'grey', 'green'])
chartBox = axes[0].get_position()
axes[0].set_position([chartBox.x0,chartBox.y0-0.2,chartBox.width,chartBox.height])
axes[0].legend(pieChartlabels,loc='upper right', bbox_to_anchor=(1.3, 0.9))
lineChart = dataframe4LineChart.plot.line(ax=axes[1], title='Compounds from max positive (1) to min neg (-1)')
axes[1].set_ylim([-1, 1])
plotFileUrl = f'./plots/{TodayDate}.png'
plt.savefig(plotFileUrl)
media = mastodonInstance.media_post(plotFileUrl, mime_type="image/png", description=f"Sentiment analysis of local timeline on fedihum.org, showing the moods of the toots on, and the compounds up to {TodayDate}.")
mastodonInstance.status_post(f'The moods of the toots on and up to {TodayDate}.', media_ids=media, language='en')

View file

@ -0,0 +1,5 @@
from mastodon import Mastodon
class MastodonAccountManager():
def __init__(self):
self.instance = Mastodon(client_id = 'hedonodon_clientcred.secret', access_token = 'hedonodon_usercred.secret')

4
README.md Normal file
View file

@ -0,0 +1,4 @@
# Hedonodon
I'm using [vaderSentiment](https://pypi.org/project/vaderSentiment/) to calculate the compounds.
More Documentation coming soon!

19
SentiTooter.py Normal file
View file

@ -0,0 +1,19 @@
from math import sqrt
from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer
import numpy as np
class SentiTooter():
""""""
def __init__(self):
self.sia = SentimentIntensityAnalyzer()
def analyze(self, toot):
compound = self.sia.polarity_scores(toot.content)['compound']
if (compound > (1/3)):
return ['positive', compound]
elif (compound < (-1/3)):
return ['negative', compound]
else:
return ['neutral', compound]

33
Tables.py Normal file
View file

@ -0,0 +1,33 @@
from DbSetup import Base
from sqlalchemy import Column, Date, Integer, Float, String
class Toots(Base):
__tablename__ = 'Toots'
__table_args__ = {'extend_existing': True}
index = Column(Integer, primary_key=True)
compound = Column(Float)
datetime = Column(Date)
language = Column(String(3))
sentiment = Column(String(8))
tootId = Column(String(255))
toot = Column(String(600))
userName = Column(String(255))
userId = Column(String(255))
class Sentiments(Base):
__tablename__ = 'Sentiments'
__table_args__ = {'extend_existing': True}
index = Column(Integer, primary_key=True)
sentimentCount = Column(Integer)
date = Column(Date, primary_key = True)
sentiment = Column(String(8))
class Compounds(Base):
__tablename__ = 'Compounds'
__table_args__ = {'extend_existing': True}
index = Column(Integer, primary_key=True)
date = Column(Date, primary_key = True)
compoundAvg = Column(Float)

43
TootCrawler.py Normal file
View file

@ -0,0 +1,43 @@
import pytz
import pandas as pd
import re
from SentiTooter import SentiTooter
from pprint import pprint
class TootCrawler():
def __init__(self, mastodonInstance) -> None:
self.mastodonInstance = mastodonInstance
self.compilePattern = re.compile('<.*?>')
self.sentiTooter = SentiTooter()
self.localTimezone = pytz.timezone('Europe/Berlin')
def getLocalTimeline(self, sinceId=None):
return self.mastodonInstance.timeline_local(since_id=sinceId)
def cleanhtml(self, raw_html):
cleantext = re.sub(self.compilePattern, '', raw_html)
cleantext = re.sub(r'http\S+', '', cleantext)
return cleantext
def buildTootsDataframe(self, sinceId=None):
toots = []
for i in self.getLocalTimeline(sinceId):
content = self.cleanhtml(i.content)
sentiment = self.sentiTooter.analyze(i)
toots.append(
{
"sentiment": sentiment[0],
"compound": sentiment[1],
"userName": i.account.display_name,
"userId": i.account.id,
"toot": content,
"datetime": i.created_at.astimezone(self.localTimezone),
"language": i.language,
"tootId": i.id
}
)
toots.sort(key=lambda item:item.get('datetime'))
return pd.DataFrame.from_records(toots)

6
requirements.txt Normal file
View file

@ -0,0 +1,6 @@
mastodon.py
matplotlib
pandas
sqlalchemy
vader-multi
numpy