Databroker Export ----------------- Exporting a databroker is a good way to take your raw data home so it can be analyzed after the fact. The easy way ============ 1. Mount your drive which you are going to store the data on 2. Create a folder on your drive for putting the portable databroker into 3. In a terminal start up ``bsui`` 4. In a different terminal run ``portable_db_server `_ for general searching queries. Here is an example .. code-block:: python from xpdan.db_utils import query_background # search for a bunch of sample uids hdrs = [] for uid in ['thing1', 'thing2']: hdrs += list(db(sa_uid=uid)) # don't forget the backgrounds bg_hdrs = [] for hdr in hdrs: bg_hdrs.extend(query_background(hdr.start, db)) hdrs += bg_hdrs # and the darks hdrs += [db[hdr.start['sc_dk_field_uid']] for hdr in hdrs if 'sc_dk_field_uid' in hdr.start]