Portal Home > Knowledgebase > Industry Announcements > Web Hosting Main Forums > Website Help


Website Help




Posted by garciaomar0203, Today, 02:49 PM
I want to make a website that gets the value or price of a certain item from another website and displays it. I searched everywhere and can't find an asnwer

Posted by 5n1p, Today, 03:01 PM
Can you post what website you need to get data from some ppl will probably answer easier with real example.

Posted by The Pro Host, Today, 03:05 PM
Also what sort of items are your talking about? Do you want it to display the price from a certain website or just find the best price?

People probably cant help you with specific information.

Posted by garciaomar0203, Today, 03:52 PM
I want to get the price of worldcoins from coinmarketcap(dot)com/ and post it on my website. so whenever it updates there it updates on mine.

Posted by RadiumServer, Today, 05:38 PM
From ,y understanding you want to make a website with the following data and store it on yours and when changes happen you would like your website to update.

First you would need permission from the website owner to be able to do this

Posted by 5n1p, Today, 06:22 PM
Like others said you should ask site owner, but if you are able to make some python app this code could help:

Code:
import requests
url = requests.get('http://coinmarketcap.com/')
bitcoin_rate = url.text.split('jump-btc-usd" class="price-usd">')[1].split('</a>')[0].strip()
print bitcoin_rate
you can try it in console. Just add other coins in code and you have it all.



Was this answer helpful?

Add to Favourites Add to Favourites    Print this Article Print this Article

Also Read
keyword exclusion test (Views: 1790)
Shaping the Future of... (Views: 1832)

Language: