Package moviestat :: Module movie :: Class Movie
[hide private]
[frames] | no frames]

Class Movie

object --+
         |
        Movie

The class Movie represents items in an IMDB movie ratings chart. A movie instance is immutable after creation.

Instance Methods [hide private]
 
__init__(self, title, year, director, rating)
x.__init__(...) initializes x; see help(type(x)) for signature
 
get_title(self)
Returns the title of the movie.
 
get_year(self)
Returns the release year of the movie.
 
get_rating(self)
Returns the average rating given to the movie by IMDB users.
 
get_director(self)
Returns the director of the movie.

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, title, year, director, rating)
(Constructor)

 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

get_title(self)

 

Returns the title of the movie.

Returns:
movie title

get_year(self)

 

Returns the release year of the movie.

Returns:
movie release year

get_rating(self)

 

Returns the average rating given to the movie by IMDB users.

Returns:
average movie rating

get_director(self)

 

Returns the director of the movie.

Returns:
movie director