Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(4) | Call(0) | Derive(0) | Import(4)
A tool for serializing and deserializing a set of brains, so that it can be transported to another client. The deserialized brains are represented with ``IBrainRepresentation`` objects providing the original metadata. Those representation objects cannot retrieve the object (since the object is on another client).
src/f/t/ftw.bridge.client-1.0.8/ftw/bridge/client/request.py ftw.bridge.client(Download)
from AccessControl import getSecurityManager from StringIO import StringIO from ZODB.POSException import ConflictError from ftw.bridge.client.exceptions import MaintenanceError from ftw.bridge.client.interfaces import IBrainSerializer
src/f/t/ftw.bridge.client-1.0.8/ftw/bridge/client/brain.py ftw.bridge.client(Download)
from DateTime import DateTime from Products.CMFCore.utils import getToolByName from ftw.bridge.client.interfaces import IBrainRepresentation from ftw.bridge.client.interfaces import IBrainSerializer from ftw.bridge.client.utils import get_brain_url
src/f/t/ftw.bridge.client-1.0.8/ftw/bridge/client/browser/catalog.py ftw.bridge.client(Download)
from Products.CMFCore.utils import getToolByName from Products.Five import BrowserView from copy import deepcopy from ftw.bridge.client.interfaces import IBrainSerializer from ftw.bridge.client.utils import json
src/f/t/ftw.bridge.client-1.0.8/ftw/bridge/client/tests/test_brain.py ftw.bridge.client(Download)
from ftw.bridge.client.brain import BrainSerializer from ftw.bridge.client.interfaces import IBrainRepresentation from ftw.bridge.client.interfaces import IBrainSerializer from ftw.bridge.client.testing import EXAMPLE_CONTENT_LAYER from unittest2 import TestCase