This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ####Importing Libraries##### | |
| from bs4 import BeautifulSoup | |
| import requests | |
| import sys | |
| ############################# | |
| ########## IMDB URL ############# | |
| url = 'http://www.imdb.com/chart/top' | |
| ################################# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Rover | |
| attr_reader :x | |
| attr_reader :y | |
| attr_reader :face | |
| attr_reader :plot_x | |
| attr_reader :plot_y | |
| def initialize(x,y,face, plot_x, plot_y) | |
| @x =x | |
| @y =y | |
| @face =face |
NewerOlder