usamaijaz-ai's picture
initial commit
5488aaa
raw
history blame contribute delete
304 Bytes
import requests
url = "https://store3.gofile.io/download/web/7a1f0c47-93e5-45c1-90b3-e05cb8611501/sample-file.mp4"
r = requests.get(url, allow_redirects=True)
print("Content-Type:", r.headers.get("Content-Type"))
print("File size (bytes):", len(r.content))
print("First 200 bytes:\n", r.content[:200])