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