> Another strange effect... Breadth First gets the expected file count up to > over 500 in very little time. Depth First takes a lot longer to create a > high expected-total count. (Maybe that's why it's faster.) At the higher > counts (>100), some links take a full minute to "parse" (without grabbing > images), others still nip along nearly instantly.
The pages queued count does run up very fast to very high values in breadth first. That is why breadth first was scrapped in favor of depth first. Depth first seemed to miss a few pages in a few cases, so it was reverted back to breadth first, and an option placed to choose which one. > File "d:\winsoft\palm\Plucker\python\PIL\Image.py", line 39, in __getattr__ > raise ImportError, "The _imaging C module is not installed" > ImportError: The _imaging C module is not installed > Parsing failed. Thanks very much for catching this! It seems in the PIL package for MSW, it puts the _imaging module in the PIL directory instead of its proper python DLL directory. Does this address the issue: In your plucker directory, moving the 2 .pyd files python/PIL/_imaging.pyd (and probably python/PIL/_imagingk.pyd too) into the python/DLLs/ directory, so that it is with the other .pyd module files? Best wishes, Robert _______________________________________________ plucker-list mailing list [EMAIL PROTECTED] http://lists.rubberchicken.org/mailman/listinfo/plucker-list

