https://github.com/thmslmr/places-infos-scraper
:house: Places infos scraper - Python
https://github.com/thmslmr/places-infos-scraper
python python-scraper scraper
Last synced: 11 months ago
JSON representation
:house: Places infos scraper - Python
- Host: GitHub
- URL: https://github.com/thmslmr/places-infos-scraper
- Owner: thmslmr
- Created: 2016-11-03T19:28:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-01T12:11:05.000Z (about 8 years ago)
- Last Synced: 2025-05-20T22:32:03.243Z (about 1 year ago)
- Topics: python, python-scraper, scraper
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Places Infos Scrapper
**Get information from a location or a list of locations.**
Services currently supported:
- Facebook
- Wikipedia
- Google places
Default configuration includes these three platforms.
Dependencies
---
pip install python-google-places wikipedia
Settings
---
Insert your GooglePlaces and Facebook Graph API key in the `settings.json` file.
You can also edit the field you wish to find for each service.
Examples of use
---
```python
scraper = PlaceScraper()
places = ['Paris', 'Eiffel Tower', 'Central Park']
infos = scraper.scrap(places)
```