looking for crypto ex ready list or scraper
by - Thursday, January 1, 1970 at 12:00 AM
Looking for a full list of all existing cryptocurrency exchange list or a script to get one or an api/website to easily scrape from.

coinmarketcap and coingecko only list relatively big ones, i am interested in all including small/brand new ones.
Reply
thanks
Reply
did you ever find msg me
Reply
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
Reply


 Users viewing this thread: looking for crypto ex ready list or scraper: No users currently viewing.