curl https://tcpdata.com/robots.txt
fetch('https://tcpdata.com/robots.txt') .then(res => res.text()) .then(data => console.log(data));
import requests response = requests.get('https://tcpdata.com/robots.txt') print(response.text)