Can someone explain how to define user agent part so i can avoid "403 forbidden error" that i receive when i try to read tabular data from coincheckup.com web page ?
This is the test code:
import pandas as pd
tables = pd.read_html("https://coincheckup.com/")
print(tables[0])
Additional questions: 1.) How can i read specific data from one other site? Can i use pandas lib for that too ?. The site in question is samcrypto.com and I would like to read out BTC and ETH value.
Best regards !