Clear Filters
Clear Filters

Export data from website

5 views (last 30 days)
Lodewijk Pleij
Lodewijk Pleij on 9 Mar 2021
Edited: Rik on 10 Mar 2021
I am trying to export betting odds from the following link: https://www.unibet.eu/betting/sports/filter/football/netherlands/eredivisie/matches
The plan is to export these number (let's say) every hour and then analyse how they change over time. Right now I have the following code with which I have imported the data from this link.
block = urlread('https://www.unibet.eu/betting/sports/filter/football/netherlands/eredivisie/matches');
The problem now is that I do not have the knowledge to extract the relevant data. The relevant data would be:
The teams that are playing, the date and time at which they are playing, the odds that unibet gives.
Does anyone know how to do this and is willing to help me with this problem?
Thank you for reading.
  5 Comments
Lodewijk Pleij
Lodewijk Pleij on 10 Mar 2021
The webpage loads the information when you open it in your browser. That is why the information cannot be uploaded with webread only. I will have to try and let matlab open the webbrowser or something like that. I found some videos about it on youtube, but they are for python only.
Rik
Rik on 10 Mar 2021
Edited: Rik on 10 Mar 2021
That might not be required. Some websites use Javascript to dynamically load data. The backend is usually loaded in JSON format. If you use your browser debugging tools (ctrl+shift+i on Chrome) you might be able to find the direct URL.
My first try turned up a page like this:
If this is indeed the correct URL you only have to find you if you need to update that ncid field.

Sign in to comment.

Answers (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!