rDrama/files/classes/streamers.py

20 lines
477 B
Python
Raw Normal View History

from files.helpers.const import SITE
2022-09-25 04:11:06 +00:00
if SITE == 'pcmemes.net':
from sqlalchemy import *
from files.__main__ import Base
2022-10-06 05:37:50 +00:00
import time
class Streamer(Base):
__tablename__ = "streamers"
id = Column(String, primary_key=True)
2022-10-06 05:37:50 +00:00
created_utc = Column(Integer)
def __init__(self, *args, **kwargs):
if "created_utc" not in kwargs: kwargs["created_utc"] = int(time.time())
super().__init__(*args, **kwargs)
def __repr__(self):
return f"<Streamer(id={self.id})>"