Skip to content

Instantly share code, notes, and snippets.

View MarcusWiilo's full-sized avatar

Marcus Oliveira MarcusWiilo

  • Belo Horizonte, Minas Gerais. Brasil.
View GitHub Profile
%matplotlib inline
%load_ext autoreload
%autoreload 2
%config InlineBackend.figure_format = 'retina'
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
#arquivo media.py
class Movie():
def _init_(self, movie_title, movie_storyline, poster_image, trailer_youtube):
self.title = movie_title
self.storyline = movie_storyline
self.poster_image_url = poster_image
self.trailer_youtube_url = trailer_youtube
#arquivo entertainment_center.py
import media