Metadata-Version: 2.3
Name: georeport
Version: 0.2.1
Summary: Python wrapper for the Open311 GeoReport v2 API
License: Apache-2.0
Author: Pramod Anandarao
Requires-Python: >=3.9
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: requests (>=2.32.4,<3.0.0)
Requires-Dist: xmltodict (>=0.14.2,<0.15.0)
Description-Content-Type: text/markdown

# GeoReport
GeoReport is a thin Python wrapper for the Open311 GeoReport v2 API standard.

## Installing GeoReport
GeoReport is available on PyPI:
```
pip install georeport
```

## Example Usage
Get the list of services in a city:
```
from georeport import GeoReport

client = GeoReport.from_city('Brookline, MA')
print(client.get_service_list())
```

Get service requests in a city:
```
from georeport import GeoReport

client = GeoReport.from_city('Chicago, IL')
print(client.get_service_requests())
```

## Supported Features
GeoReport supports retrieval of requests in addition to service lists and definitions. However, GeoReport **does not** currently support the creation of new 311 service requests.

