Exchanges

加密交易所比較電子表格

  • December 15, 2019

是否有任何網站或線上社區維護電子表格來比較不同的加密貨幣交易所?

由於沒有人能夠提供連結,我開始自己做這項工作。

隨時在電子表格(或此處)中發表評論,以便我可以進行任何缺失的交流。

注意:稍後我將添加有關費率等的資訊。

https://docs.google.com/spreadsheets/d/1m4cU6jiD2PsICWg02qdUmWe1OuuZBrRnxMPWin872ZU/edit?usp=sharing

相當愚蠢,可能不是非常 Pythonic,並且可能忽略了您實際擁有的要求,但以下內容將螢幕抓取 @lungj 指向的連結中的表格,並將其寫入 CSV 文件(因此您可以使用電子表格)。

#!/usr/bin/env python

import urllib
from bs4 import BeautifulSoup
import csv

page = urllib.urlopen("https://coinmarketcap.com/currencies/ethereum/#markets")
soup = BeautifulSoup(page.read())

with open('output.csv', 'wb') as f:
   wr = csv.writer(f, quoting=csv.QUOTE_ALL)
   wr.writerow(map(str, "# Source Pair Volume Price Volume Updated".split()))

   for tr in soup.find_all('tr'):
       tds = tr.find_all('td')
       rows = [0] * len(tds)
       for i in xrange(len(tds)):
           rows[i] = tds[i].get_text()
       wr.writerow(rows)

頁面源中其實還有更多可以拉出來的數據,但是沒有傳播資訊等。

引用自:https://ethereum.stackexchange.com/questions/28661