The Movie Database Подршка

Hi I am trying to do my school project and is trying to get all the data from Trending Data

However, I realized there is more than one page for this data. Is there a way to extract the data fromall 1000 pages in one go? I'm an beginner in coding and I really need help :(

I'll be really grateful if someone will be able to help. Thank you

3 одговора (на страни 1 од 1)

Jump to last post

This is my code:

api_key = 'api key'
url = "https://api.themoviedb.org/3/trending/all/day?api_key=<<api key>>&language=en-US&page="
response = requests.get(url)
response.json()["results"]

@mangojuicy said:
how to code out all the pages from Trending Data
Hi I am trying to do my school project and is trying to get all the data from Trending Data

However, I realized there is more than one page for this data. Is there a way to extract the data fromall 1000 pages in one go?
I'm an beginner in coding and I really need help :(

I'll be really grateful if someone will be able to help. Thank you

The number/quantity of Items per Page and the number/quantity of Pages
cannot be changed, configured, specified, restricted, or anything like that.
There will always be up to 20 items per page.
And a maximum of 500 pages.
Therefore, at most 10,000 items.

Of course, depending on the parameters used in your API Request
this number/quantity can be much smaller.
Eventually zero.

In a Trending API Request, the quantities are greater.
A maximum of 1,000 pages
Therefore a maximum of 20,000 items

What you can do is just specify the page number you want.

https://api.themoviedb.org/3/trending/all/day?api_key=THE_KEY&page=1
https://api.themoviedb.org/3/trending/all/day?api_key=THE_KEY&page=2
https://api.themoviedb.org/3/trending/all/day?api_key=THE_KEY&page=3
...
https://api.themoviedb.org/3/trending/all/day?api_key=THE_KEY&page=997
https://api.themoviedb.org/3/trending/all/day?api_key=THE_KEY&page=998

That is, make an API Request for each page.

Ahhh so cannot code out all pages in one go

okie thank you so much :))

Не можеш да нађеш филм или серију? Пријави се да додаш.

Глобално

s фокусирај траку за претрагу
p отворите мени профила
esc затворити отворени прозор
? отвори прозор пречице на тастатури

На страницама медија

b вратити се назад (или родитељу кад је то применљиво)
e иди на страницу за уређивање

На страницама ТВ сезона

(стрелица надесно) пређите на следећу сезону
(лева стрелица) иди на претходну сезону

На страницама ТВ епизода

(стрелица надесно) пређите на следећу епизоду
(лева стрелица) иди на претходну епизоду

На свим страницама са сликама

a отвори прозор за додавање слике

На свим страницама за уређивање

t отвори селектор превода
ctrl+ s пошаљи образац

На страницама за дискусију

n отвори нову дискусију
w мења статус гледања
p мења јавно/приватно
c мења отвори/затвори
a отвори активност
r одговор на дискусију
l иди на последњи одговор
ctrl+ enter пошаљи поруку
(стрелица надесно) следећа страница
(лева стрелица) претходна страница

Подешавања

Желите ли да оцените или додате ову ставку у листу?

Пријави се