.. _app-example: Application =========== The :class:`snow.Application` expects a configuration dictionary that conforms to the :ref:`Application Configuration Schema `. Once created, an interface for producing :class:`~snow.resource.Resource` models is provided. .. code-block:: python from snow.resource import Application config = dict( address="https://my-instance.service-now.com", basic_auth=("", "") ) app = Application(config) async with app.resource(Incident) as r: [do stuff]