October 31, 2022 at 10:49 AM Hi,
It's easy to prepare a webscrape customized to your needs.
How to start and what you need:
Our simple scrapper we could build using Python + BeautifulSoup
from urllib.request import urlopen as uReq
from bs4 import BeautifulSoup as soup
import urllib.request
maybe_some_parameters = 'param=dummy'
url_you_are_interested_in = f'https://samplecryptosite.com/index.html?{maybe_some_parameters}'
req = urllib.request.Request(url_you_are_interested_in)
req.add_header('User-agent', 'Mozilla/5.0')
uClient = uReq(req)
uglyPage = uClient.read()
uClient.close()
nicePage = soup(uglyPage, "html.parser")
Above I gave you a "Quick & Dirty" code. From now you can use "dot notation/xPath" to extract data you need. Combine it with pandas and put into CSV file if you like.
Have Fun