Returns the best/top search result that matches the query.
(self)
| 524 | return len(self) |
| 525 | |
| 526 | def best_match(self): |
| 527 | """Returns the best/top search result that matches the query.""" |
| 528 | return self[0] |
| 529 | |
| 530 | def latest(self, date_field): |
| 531 | """Returns the most recent search result that matches the query.""" |
no outgoing calls