I was looking for a post on downloading large files using urllib
and came across a post (Stream large binary files with urllib2 to file) with an answer by @AlexMartelli that showed the following:
chunk = 16 * 1024
I know that 1024 bytes = 1 KiB(KB) by the IEC standard. Does this mean that it will try to download my file in 16 separate 1024 byte "chunks"?