(file_name)
| 332 | log("Failed to save authentication cookie", err) |
| 333 | |
| 334 | def load_quotes(file_name): |
| 335 | with open(file_name) as f: |
| 336 | for line in f: |
| 337 | quotes.append(line.strip()) |
| 338 | |
| 339 | return len(quotes) |
| 340 | |
| 341 | def run(args): |
| 342 | schema = None |