Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timrogers/michelin-guide-scraper
🍽️ Scrapes restaurants from the MICHELIN Guide (https://guide.michelin.com/gb/en/restaurants)
https://github.com/timrogers/michelin-guide-scraper
Last synced: 13 days ago
JSON representation
🍽️ Scrapes restaurants from the MICHELIN Guide (https://guide.michelin.com/gb/en/restaurants)
- Host: GitHub
- URL: https://github.com/timrogers/michelin-guide-scraper
- Owner: timrogers
- License: mit
- Created: 2024-01-27T20:49:41.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-12-10T07:16:13.000Z (about 1 month ago)
- Last Synced: 2024-12-16T01:43:11.773Z (25 days ago)
- Language: TypeScript
- Homepage:
- Size: 282 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Michelin Guide Scraper
🍽️ Scrapes data about restaurants from the [MICHELIN Guide](https://guide.michelin.com/gb/en/restaurants), including Michelin Star and Bib Gourmand-awarded restaurants
__Disclaimer__: I am not affiliated with MICHELIN, and use of this scraper may violate MICHELIN's terms and conditions or local laws.
The output looks like this:
```js
[
{
"@context": "http://schema.org",
"address": {
"@type": "PostalAddress",
"streetAddress": "Jorge Juan 19",
"addressLocality": "Valencia",
"postalCode": "46004",
"addressCountry": "ESP",
"addressRegion": "Community of Valencia"
},
"name": "Habitual",
"image": "https://axwwgrkdco.cloudimg.io/v7/__gmpics__/0a9fca1eab7e4e0ea2ee64fe0bd31836?width=1000",
"@type": "Restaurant",
"review": {
"@type": "Review",
"datePublished": "2023-11-28T11:40",
"name": "Habitual",
"description": "This unusual restaurant, part of chef Ricard Camarena’s stable, boasts a surprising design and layout on the lower floor of the Modernist-style Mercado de Colón. The extensive and affordable à la ...",
"author": {
"@type": "Person",
"name": "Michelin Inspector"
}
},
"telephone": "+34 963 44 56 31",
"knowsLanguage": "en-ES",
"acceptsReservations": "No",
"servesCuisine": "International",
"url": "https://guide.michelin.com/gb/en/comunidad-valenciana/valencia/restaurant/habitual",
"currenciesAccepted": "EUR",
"paymentAccepted": "American Express credit card, Credit card / Debit card accepted, Mastercard credit card, Visa credit card",
"award": "Selected: Good cooking",
"brand": "MICHELIN Guide",
"hasDriveThroughService": "False",
"latitude": 39.4687302,
"longitude": -0.3689512,
"hasMap": "https://www.google.com/maps/search/?api=1&query=39.4687302%2C-0.3689512"
},
// ...
]
```## Usage
1. Make sure Node.js is available on your machine. v20 is recommended.
1. Clone the repository: `git clone [email protected]:timrogers/michelin-guide-scraper.git`
1. Install the dependencies: `npm i`.
1. Start the scraper: `npm start`. Optionally, you can use the `--limit` argument to limit the number of restaurants scraped (e.g. `npm start -- --limit 1`).
1. Wait a while! The data will be written to `data/restaurants.json`.