beat.web.search.views module¶
-
beat.web.search.views.search_experiments(user, filters, time_delta=None)[source]¶ Retrieves all experiment results and parses for commonalities.
- Parameters
user (User) – The user making the request and for which we will filter results for
filters (list) – A set of filters defined by the user on how to subselect experiments
time_delta (datetime.timedelta) – A optional time delta to restrict the search to experiments which are older than a given delta.
- Returns
Containing the following fields:
’experiments’: [Experiment, …] ‘common_toolchains’:[], ‘common_protocols’: [Protocol, …], ‘common_analyzers’: [(Algorithm, (Block,…), …],
- Return type