|
|
|
|
|
by kopos
3833 days ago
|
|
Used it on a huge project where I wanted the interfaces clean between the Python project at runtime and to serialize the Python objects to the database. Using pickling gave me sleepless night until I moved to Marshmallow. Whilst Django REST Framework comes with a nice serializer and parser modules, marshmallow's ability to do just the part was a godsend. This alone gave us the flexibility to expose the Python modules and objects as a simple JSON API and the DB load / save came for free. Highly recommended. |
|
I use Flask and I am not sure where pickling comes in. I have built a desktop application in pyqt though and the multiprocessing modules need pickle-able data.