Skills › Productivity & Integrations › Personal productivity
search-restaurants
Retrieve restaurants by city from the bundled dataset. Use this skill when recommending places to eat or validating dining options for a destination.
Tools: pandas,search_restaurants
The full skill
—
name: search-restaurants
description: Retrieve restaurants by city from the bundled dataset. Use this skill when recommending places to eat or validating dining options for a destination.
—
# Search Restaurants
Query restaurants for a given city.
## Installation
“`bash
pip install pandas
“`
## Quick Start
“`python
from search_restaurants import Restaurants
restaurants = Restaurants()
print(restaurants.run("San Francisco"))
“`