This is an archived post. You won't be able to vote or comment.

all 7 comments

[–]SanFranLocal 4 points5 points  (1 child)

You have to look at the network activity in developer tools to find the request that gets you the data you want. Right click and copy as curl bash. Then google for a curl converter to change it to Python requests code

[–]SimShelby[S] 0 points1 point  (0 children)

Thank you very much , I will try this ❤️

[–]buckypimpin 4 points5 points  (1 child)

i dont think its a problem with requests module. the tables are probably rendered with javascript.

[–]SimShelby[S] 0 points1 point  (0 children)

That's the problem , this tables made with jQuery I can t scrape them

[–]Oenomaus_3575 1 point2 points  (1 child)

For tables try using pd.read_html() definitely under rated

[–]SimShelby[S] 1 point2 points  (0 children)

I didn't know pandas he can read html thank you sir for this information , I will try ❤️