Open Jarngreipr opened 7 years ago
Parse and process case summaries when available. They can be found here.
Code for the xml parser can be found at case_gather/xml_parser.py. Good place to start is the get_case_data function in xml_parser.py.
Tasks:
summary_soup = get_xml(link_summary + str(number))
summary = xml_helper.get_case_summary(summary_soup)
get_case_data is used by case_gather/services.py
Moving this to 1.1.0, MIGHT be nice to have but I dont think its needed for MVP
Parse and process case summaries when available. They can be found here.
Code for the xml parser can be found at case_gather/xml_parser.py. Good place to start is the get_case_data function in xml_parser.py.
Tasks:
summary_soup = get_xml(link_summary + str(number))
summary = xml_helper.get_case_summary(summary_soup)
get_case_data is used by case_gather/services.py