URL లింక్ నుండి JSON, TXT, CSV ఫైల్‌లను డౌన్‌లోడ్ చేయండి

బ్రౌజర్‌లో కేవలం టెక్స్ట్‌గా చూడటానికి బదులుగా డేటా ఫైల్‌లను నేరుగా మీ డిస్క్‌లో సేవ్ చేసుకోండి.

డేటా ఫైల్ డౌన్‌లోడ్ కమాండ్‌లు

curl -L -O "https://example.com/data.json"
wget --content-disposition "https://example.com/data.json"
Invoke-WebRequest -Uri "https://example.com/data.json" -OutFile "data.json"
certutil -urlcache -split -f "https://example.com/data.json" data.json
import urllib.request
urllib.request.urlretrieve("https://example.com/data.json", "data.json")

JSON మరియు CSV ఫైల్‌లు టెక్స్ట్‌గా తెరవడాన్ని నివారించడం ఎలా?

బ్రౌజర్‌లు ముడి డేటాను స్క్రీన్‌పై చూపించినప్పుడు, ఈ టూల్ ద్వారా ఫైల్‌ను నేరుగా డౌన్‌లోడ్ చేసుకోవచ్చు.