Exemplo n.º 1
0
    def __init__(self):
        self.sourceConnection = SourceConnection()
        self.targetConnection = TargetConnection()

        self.imdbConnection = http.client.HTTPSConnection(
            "imdb8.p.rapidapi.com")
        self.imdbHeaders = {
            'x-rapidapi-host': "imdb8.p.rapidapi.com",
            'x-rapidapi-key':
            "fee7fa13a7mshd61881af4799557p172871jsndb85a36967f3"
        }

        self.categories = []

        self.availableEndpoints = {
            "Action": "%252Fchart%252Fpopular%252Fgenre%252Faction",
            "Animation": "%252Fchart%252Fpopular%252Fgenre%252Fanimation",
            "Comedy": "%252Fchart%252Fpopular%252Fgenre%252Fcomedy",
            "Documentary": "%252Fchart%252Fpopular%252Fgenre%252Fdocumentary",
            "Drama": "%252Fchart%252Fpopular%252Fgenre%252Fdrama",
            "Family": "%252Fchart%252Fpopular%252Fgenre%252Ffamily",
            "Horror": "%252Fchart%252Fpopular%252Fgenre%252Fhorror",
            "Music": "%252Fchart%252Fpopular%252Fgenre%252Fmusic",
            "Sci-Fi": "%252Fchart%252Fpopular%252Fgenre%252Fsci_fi",
            "Sport": "%252Fchart%252Fpopular%252Fgenre%252Fsport",
        }
Exemplo n.º 2
0
 def __init__(self):
     self.sourceConnection = SourceConnection()
     self.targetConnection = TargetConnection()