return inner def get_specialist_roles(section): return [ question for outer_question in section.questions for question in outer_question.questions ] if __name__ == '__main__': arguments = docopt(__doc__) STAGE = arguments['<stage>'] API_TOKEN = arguments['<api_token>'] CONTENT_PATH = arguments['<content_path>'] client = DataAPIClient(get_api_endpoint_from_stage(STAGE), API_TOKEN) content_loader = ContentLoader(CONTENT_PATH) content_loader.load_manifest(FRAMEWORK_SLUG, "services", "edit_submission") content_manifest = content_loader.get_manifest(FRAMEWORK_SLUG, "edit_submission") suppliers = find_all_specialists(client) write_csv(suppliers, make_row(content_manifest), "output/dos-specialists.csv")
def inner(record): row = [ ("supplier_id", record["supplier_id"]), ("supplier_name", record["supplier"]["name"]), ("supplier_declaration_name", record["declaration"].get("nameOfOrganisation", "")), ("status", "PASSED" if record["onFramework"] else "FAILED"), ] return row + make_fields_from_content_questions(questions, record) return inner if __name__ == '__main__': arguments = docopt(__doc__) STAGE = arguments['<stage>'] API_TOKEN = arguments['<api_token>'] CONTENT_PATH = arguments['<content_path>'] client = DataAPIClient(get_api_endpoint_from_stage(STAGE), API_TOKEN) content_loader = ContentLoader(CONTENT_PATH) content_loader.load_manifest(FRAMEWORK_SLUG, "services", "edit_submission") content_manifest = content_loader.get_manifest(FRAMEWORK_SLUG, "edit_submission") records = find_all_participants(client) write_csv(records, make_row(content_manifest), "output/dos-user-research-participants.csv")
for question in section.questions ] def get_outcomes_locations(content_manifest): return [ content_manifest.get_question("locations") ] if __name__ == '__main__': arguments = docopt(__doc__) STAGE = arguments['<stage>'] API_TOKEN = arguments['<api_token>'] CONTENT_PATH = arguments['<content_path>'] client = DataAPIClient(get_api_endpoint_from_stage(STAGE), API_TOKEN) content_loader = ContentLoader(CONTENT_PATH) content_loader.load_manifest(FRAMEWORK_SLUG, "services", "edit_submission") content_manifest = content_loader.get_manifest(FRAMEWORK_SLUG, "edit_submission") capabilities = get_team_capabilities(content_manifest) locations = get_outcomes_locations(content_manifest) suppliers = find_all_outcomes(client) write_csv(suppliers, make_row(capabilities, locations), "output/dos-outcomes.csv")