python get file size of file on the internet code example
Example 1: python get size of file
import os
# get size in bytes
path = 'path/to/file.txt'
size = os.path.getsize(path)
Example 2: Python program to get the file size of a plain file.
import os
filepath='file1.txt'
size=os.path.getsize(filepath)
print(str(size) + ' Bytes')