Yahoo实时汇率API

Yahoo提供实时汇率的API,用下面的2行代码可以很方便的得到所有币种的实时汇率值。


Yahoo提供实时汇率的API,用下面的2行代码可以很方便的得到所有币种的实时汇率值。

#! /bin/csh -f

curl -o cc.html “http://finance.yahoo.com/webservice/v1/symbols/allcurrencies/quote”
sed -n -e ‘/USD/,/price/{p}’ cc.html | sed -e ‘s/<[^>]*>//g;s/USD\///’ | sed -n -e ‘/[A-Z]/{N; s/\n/ /p}’ > a.txt

Leave a Reply

Your email address will not be published. Required fields are marked *