(items, output)
| 285 | |
| 286 | |
| 287 | def dump_database(items, output): |
| 288 | import json |
| 289 | |
| 290 | # pretty print, easy to read with editor. compact save little size. only about 0.2% |
| 291 | json.dump(items, output, ensure_ascii=False, check_circular=False, indent="\t") |
| 292 | |
| 293 | |
| 294 | def merge_database(items, database_path): |
no outgoing calls
no test coverage detected