mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
18 lines
257 B
Python
18 lines
257 B
Python
from epc_api.client import EpcClient
|
|
import os
|
|
EPC_AUTH_TOKEN = os.getenv("EPC_AUTH_TOKEN", "")
|
|
|
|
client = EpcClient(auth_token=EPC_AUTH_TOKEN)
|
|
|
|
|
|
search_resp = client.domestic.search(
|
|
params={
|
|
"postcode": "b938sy"
|
|
}
|
|
)
|
|
|
|
print(search_resp)
|
|
|
|
|
|
|
|
|