Metadata-Version: 2.1
Name: places-intel
Version: 0.2.2
Summary: A library for fetching and processing place data with polygons using Outscraper and Overpass APIs.
Home-page: UNKNOWN
Author: Blake Jennings
Author-email: blake@workerbeetech.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Place Intel

`places-intel` is a Python library for fetching and processing place data with polygons using Outscraper and Overpass APIs.


## Installation

```bash
pip install places-intel


## Usage

## Fetching Information for Multiple Places and ccreating a kml file

from places_intel import multiple_place_intel, create_kml

api_key = "your-api-key"
places, polygons = multiple_place_intel(api_key, "museums", "New York", result_amount=5, radius=10)
print(places)
create_kml(polygons, "output.kml")

## Fetching Information for a Single Place

from places-intel import single_place_intel, create_kml

api_key = "your-api-key"
place, polygons = single_place_intel(api_key, "Empire State Building", radius=10)
print(place)
create_kml(polygons, "output.kml")



