Add movies trivial Bot for Telegram

This commit is contained in:
2024-07-30 00:43:20 +02:00
parent be39d5b1d3
commit ecd77967a0
40 changed files with 1108 additions and 13 deletions

View File

@@ -0,0 +1,16 @@
from abc import ABC, abstractmethod
class Movie(ABC):
id = 0
name = ''
type = ''
@abstractmethod
def __init__(self, name):
self.name = name
self.type = None
def get_name(self):
return self.name

View File

@@ -0,0 +1,8 @@
from movie.Movie import Movie
class Pop(Movie):
def __init__(self):
super(Pop, self).__init__(name='Pop Movie')
self.type = "pop"

View File

@@ -0,0 +1,2 @@
from movie.Movie import Movie
from movie.Pop import Pop