1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
"""Run an example script to quickly test."""
import asyncio
import logging
import os
from aiohttp import ClientSession
from aionotion import async_get_client_with_credentials
from aionotion.errors import NotionError
_LOGGER = logging.getLogger()
EMAIL = os.environ.get("NOTION_EMAIL")
PASSWORD = os.environ.get("NOTION_PASSWORD")
async def main() -> None:
"""Create the aiohttp session and run the example."""
logging.basicConfig(level=logging.INFO)
if not EMAIL or not PASSWORD:
_LOGGER.error(
"No email or password set (use NOTION_EMAIL and NOTION_PASSWORD "
"environment variables)"
)
return
async with ClientSession() as session:
try:
client = await async_get_client_with_credentials(
EMAIL, PASSWORD, session=session
)
bridges = await client.bridge.async_all()
_LOGGER.info("BRIDGES: %s", bridges)
_LOGGER.info("============================================================")
sensors = await client.sensor.async_all()
_LOGGER.info("SENSORS: %s", sensors)
_LOGGER.info("============================================================")
listeners = await client.listener.async_all()
_LOGGER.info("LISTENERS: %s", listeners)
_LOGGER.info("============================================================")
listener_definitions = await client.listener.async_definitions()
_LOGGER.info("LISTENER DEFINITIONS: %s", listener_definitions)
_LOGGER.info("============================================================")
systems = await client.system.async_all()
_LOGGER.info("SYSTEMS: %s", systems)
_LOGGER.info("============================================================")
user_info = await client.user.async_info()
_LOGGER.info("USER_INFO: %s", user_info)
_LOGGER.info("============================================================")
user_preferences = await client.user.async_preferences()
_LOGGER.info("USER_PREFERENCES: %s", user_preferences)
_LOGGER.info("============================================================")
except NotionError:
_LOGGER.exception("There was an error")
asyncio.run(main())
|