add code documentation

This commit is contained in:
rnsrk 2023-03-17 20:06:01 +01:00
parent 4479bd2429
commit bc842244c7
7 changed files with 261 additions and 31 deletions

View file

@ -1,3 +1,5 @@
"""This script containing the table definitions for the database."""
from DbSetup import Base
from sqlalchemy import Column, Date, Integer, Float, String
@ -14,8 +16,6 @@ class Toots(Base):
userName = Column(String(255))
userId = Column(String(255))
class SentimentCounts(Base):
__tablename__ = 'SentimentCounts'
__table_args__ = {'extend_existing': True}