Python 2.7 - Spynner - High RAM Usage Upon Page Refresh -


i ran trouble when made page refresh script.

here's code:

import spynner browser = spynner.browser() 

when type

browser.load("http://stackoverflow.com") 

..a few times, script eats ram.

i tried:

browser = spynner.browser() browser.load("http://stackoverflow.com") browser.close() 

but not help, in other words, eaten ram still same.

so question how load page many times without getting ram eaten up.

thanks in advance!

please try using ghost.py. form i've seen while using myself, resource-light, fast headless python browser.


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -