I am using BeautifulSoup
in Python.
I want to get the size of a downloadable file from webpage. For example, this page has a link to download txt
file (by clicking on "save"). How can I get the size (in Bytes) of that file (preferably without downloading it)?
If there is no option in BeautifulSoup
, then please suggest other options within and outside of Python.