A lot of modules I use import entire files into memory or trickle a file's contents in while they process it. I'm wondering if there's any way to track this sort of loading progress? Possibly a wrapper class that takes a callback?
|
|
I would go by this by determining the size of the file, and then simply dividing the total by the number of bytes read. Like this:
Edit: I know it isn't the best code, but I just wanted to show the concept. |
|||
|
|
|
|
If you actually mean "import" (not "read") then you can override the import module definitions. You can add timing capabilities. See the imp module. If you mean "read", then you can trivially wrap Python files with your own file-like wrapper. Files don't expose too many methods. You can override the interesting ones to get timing data.
|
||
|
|
