forked from tobithiel/themoviedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions
69 lines (65 loc) · 2.46 KB
/
functions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
configure(api_key)
Core(object)
update_configuration(self)
backdrop_sizes(self,img_size)
poster_sizes(self,img_size)
profile_sizes(self,img_size)
Movie(Core)
full_info(self,movie_id)
get_total_results(self)
get_id(self,movie_index=0)
get_backdrop(self,img_size="o",movie_index=0)
get_original_title(self,movie_index=0)
get_popularity(self,movie_index=0)
get_release_date(self,movie_index=0)
get_title(self,movie_index=0)
get_poster(self,img_size="o",movie_index=0)
is_adult(self,movie_id=0)
get_collection_id(self,movie_id=0)
get_collection_name(self,movie_id=0)
get_collection_backdrop(self,img_size="o",movie_id=0)
get_collection_poster(self,img_size="o",movie_id=0)
get_budget(self,movie_id=0)
get_genres(self,movie_id=0)
get_homepage(self,movie_id=0)
get_imdb_id(self,movie_id=0)
get_overview(self,movie_id=0)
get_production_companies(self,movie_id=0)
get_productions_countries(self,movie_id=0)
get_revenue(self,movie_id=0)
get_runtime(self,movie_id=0)
get_spoken_languages(self,movie_id=0)
get_tagline(self,movie_id=0)
get_vote_average(self,movie_id=0)
get_vote_count(self,movie_id=0)
People(Core)
full_info(self,person_id)
get_id(self,people_index=0)
is_adult(self,people_index=0)
get_name(self,people_index=0)
get_profile_image(self,img_size="o",people_index=0)
get_biography(self,person_id=0)
get_birthday(self,person_id=0)
get_deathday(self,person_id=0)
get_place_of_birth(self,person_id=0)
get_homepage(self,person_id=0)
get_also_known_as(self,person_id=0)
get_image_aspect_ratio(self,person_id=0,image_index=0)
get_image_height(self,person_id=0,image_index=0)
get_image_width(self,person_id=0,image_index=0)
get_image_iso_639_1(self,person_id=0,image_index=0)
get_image(self,img_size="o",person_id=0,image_index=0)
Credits(Core):
get_cast_id(self,person_index=0)
get_cast_character(self,person_index=0)
get_cast_original_title(self,person_index=0)
get_cast_title(self,person_index=0)
get_cast_release_date(self,person_index=0)
get_cast_poster(self,img_size="o",person_index=0)
get_crew_id(self,person_index=0)
get_crew_department(self,person_index=0)
get_crew_job(self,person_index=0)
get_crew_original_title(self,person_index=0)
get_crew_title(self,person_index=0)
get_crew_release_date(self,person_index=0)
get_crew_poster(self,img_size="o",person_index=0)