2022-09-22 21:40:32 +00:00
|
|
|
from files.helpers.const import SITE
|
|
|
|
|
2022-09-25 04:11:06 +00:00
|
|
|
if SITE == 'pcmemes.net':
|
2022-09-22 21:40:32 +00:00
|
|
|
from sqlalchemy import *
|
|
|
|
from files.__main__ import Base
|
2022-10-06 05:37:50 +00:00
|
|
|
import time
|
2022-09-22 21:40:32 +00:00
|
|
|
|
|
|
|
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)
|
2022-09-22 21:40:32 +00:00
|
|
|
|
|
|
|
def __repr__(self):
|
2022-09-29 05:43:29 +00:00
|
|
|
return f"<Streamer(id={self.id})>"
|