-
-
Notifications
You must be signed in to change notification settings - Fork 259
Closed
Description
records that are created using shapefile.Reader are pickable. I want to do a series of processes with multiprocessing but shapes does not become pickle objects and process fails.
import shapefile
import pickle
counties = shapefile.Reader("counties.shp")
records = counties.records()
buf = pickle.dumps(records[0])
record_0 = pickle.loads(buf)
Error message:
[Previous line repeated 995 more times]
RecursionError: maximum recursion depth exceeded
Metadata
Metadata
Assignees
Labels
No labels