(self, init, filled)
| 68 | print(f"Krows/s: {self.nrows / 1000 / mtime:.6f}") |
| 69 | |
| 70 | def print_db_sizes(self, init, filled): |
| 71 | array_size = (filled - init) / 1024 |
| 72 | print(f"Array size (MB): {array_size:.3f}") |
| 73 | |
| 74 | def open_db(self, remove=0): |
| 75 | if remove and Path(self.filename).is_file(): |