I'm getting segmentation fault running the example in Wand 0.1.9:
from urllib2 import urlopen
from wand.image import Image
response = urlopen('https://stylesha.re/minhee/29998/images/100x100')
try:
with Image(file=response) as img:
print 'format =', img.format
print 'size =', img.size
finally:
response.close()
But it happens only when I run in Pyramid. when I just run this inside a simple python .py, it works fine. Any ideas?
The example can be seen here