n
path
curl https://tcpdata.com/links/10
fetch('https://tcpdata.com/links/10')
.then(res => res.text())
.then(html => console.log(html));
import requests
response = requests.get('https://tcpdata.com/links/10')
print(response.text)