(content: str)
| 324 | |
| 325 | |
| 326 | def parse_md_image(content: str): |
| 327 | matches = re.finditer("!\[.*?\]\(.*?\)", content) |
| 328 | image_list = [match.group() for match in matches] |
| 329 | return image_list |
| 330 | |
| 331 | |
| 332 | def bulk_create_in_batches(model, data, batch_size=1000): |
no outgoing calls
no test coverage detected