Metadata-Version: 2.4
Name: postcodewizard
Version: 1.0.1
Summary: The official PostcodeWizard python package
Project-URL: Homepage, https://postcodewizard.nl
Project-URL: Documentation, https://api.postcodewizard.nl/docs/api
Author-email: FlowEngine <info@flowengine.nl>
License-Expression: MIT
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9.6
Provides-Extra: dev
Requires-Dist: pytest; extra == 'dev'
Description-Content-Type: text/markdown

# postcodewizard-python-client


---

## Usage

The official API documentation [PostcodeWizard API](https://api.postcodewizard.nl/docs/api).

```
from postcodewizard.client import PostcodeWizard

client = PostcodeWizard("API_KEY_HERE")

# Lookup
result = client.lookup("7223LN", "1")

# Autocomplete
result =  client.autocomplete("Toverstraat 1, Baak")
```
