Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jupyter-naas
GitHub Repository: jupyter-naas/awesome-notebooks
Path: blob/master/Boursorama/Boursorama_Get_EURIBOR_3_MOIS.ipynb
2973 views
Kernel: Python 3

Boursorama.png

Boursorama - Get EURIBOR 3 MOIS

Give Feedback | Bug report

Tags: #boursorama #euribor #pandas #read_html #finance #data

Last update: 2023-04-12 (Created: 2023-04-04)

Description: This notebook will show how to get EURIBOR 3 MOIS using pandas.read_html().

Input

Import libraries

import pandas as pd

Setup Variables

  • url: URL of the Boursorama page to get EURIBOR 3 MOIS

url = "https://www.boursorama.com/bourse/taux/cours/2xERB3MOIS/"

Model

Get EURIBOR 3 MOIS

Using pandas.read_html() to get the EURIBOR 3 MOIS from the Boursorama page.

tables = pd.read_html(url)

Output

Current data

tables[0]

Historical data

tables[1]