Get CDS
Tags: #boursorama #finance #snippet #dataframe
Last update: 2023-04-12 (Created: 2021-05-09)
Description: This notebook provides a way to access and analyze CDS data from Boursorama.
import pandas as pd
URL = "https://www.boursorama.com/bourse/taux/cds/"
dfs = pd.read_html(URL)
df = dfs[0]
df
df.to_excel(r"Get_CDS.csv", index=False)
Last modified 1mo ago