Shapely has a speedups flag that can be set in order to use their performance enhancements written in C. Something like this in __init__.py should suffice:
from shapely import speedups
...
if speedups.available:
speedups.enable()
Or, perhaps making a light wrapper in maup around shapely's speedups would be better.
Shapely has a speedups flag that can be set in order to use their performance enhancements written in C. Something like this in
__init__.py
should suffice:Or, perhaps making a light wrapper in
maup
around shapely's speedups would be better.