Reference

App

Bases: ViewApp

Public view.py app object.

Source code in src/view/app.py
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
class App(ViewApp):
    """Public view.py app object."""

    def __init__(self, config: Config) -> None:
        """
        Args:
            config: Configuration object to be used. Automatically generated by `new_app`.
        """
        supply_parsers(self)
        self.config = config
        self._set_dev_state(config.dev)
        self._manual_routes: list[Route] = []
        self.routes: list[Route] = []
        self.loaded: bool = False
        self.running = False
        self._docs: DocsType = {}
        self.loaded_routes: list[Route] = []

        Service.log.setLevel(
            config.log.level
            if not isinstance(config.log.level, str)
            else config.log.level.upper()
        )

        if config.dev:
            if os.environ.get("VIEW_PROD") is not None:
                Service.warning("VIEW_PROD is set but dev is set to true")

            format_warnings()
            weakref.finalize(self, self._finalize)

            if config.log.pretty_tracebacks:
                install(show_locals=True)

            rich_handler = sys.excepthook

            def _hook(tp: type[B], value: B, traceback: Traceback) -> None:
                rich_handler(tp, value, traceback)
                os.environ["_VIEW_CANCEL_FINALIZERS"] = "1"

                if isinstance(value, ViewError):
                    if value.hint:
                        print(value.hint)

            sys.excepthook = _hook
            with suppress(UnsupportedOperation):
                faulthandler.enable()
        else:
            os.environ["VIEW_PROD"] = "1"

        if config.log.level == "debug":
            enable_debug()

        self.running = False

    def _finalize(self) -> None:
        if os.environ.get("_VIEW_CANCEL_FINALIZERS"):
            return

        if self.loaded:
            return

        warnings.warn(
            "load() was never called (did you forget to start the app?)"
        )
        split = self.config.app.app_path.split(":", maxsplit=1)

        if len(split) != 2:
            return

        app_name = split[1]

        print(
            make_hint(
                "Add this to your code",
                split[0],
                line=-1,
                prepend=f"\n{app_name}.run()",
            )
        )

    def _push_route(self, route: Route) -> None:
        if route in self._manual_routes:
            return

        self._manual_routes.append(route)

    def _method_wrapper(
        self,
        path: str,
        doc: str | None,
        target: Callable[..., Any],
        # i dont really feel like typing this properly
    ) -> Callable[[RouteOrCallable], Route]:
        def inner(route: RouteOrCallable) -> Route:
            new_route = target(path, doc)(route)
            self._push_route(new_route)
            return new_route

        return inner

    def get(self, path: str, *, doc: str | None = None):
        """Set a GET route."""
        return self._method_wrapper(path, doc, get)

    def post(self, path: str, *, doc: str | None = None):
        """Set a POST route."""
        return self._method_wrapper(path, doc, post)

    def delete(self, path: str, *, doc: str | None = None):
        """Set a DELETE route."""
        return self._method_wrapper(path, doc, delete)

    def patch(self, path: str, *, doc: str | None = None):
        """Set a PATCH route."""
        return self._method_wrapper(path, doc, patch)

    def put(self, path: str, *, doc: str | None = None):
        """Set a PUT route."""
        return self._method_wrapper(path, doc, put)

    def options(self, path: str, *, doc: str | None = None):
        """Set a OPTIONS route."""
        return self._method_wrapper(path, doc, options)

    def query(
        self,
        name: str,
        *tps: type[V],
        doc: str | None = None,
        default: V | None | _NoDefaultType = _NoDefault,
    ):
        """Set a query parameter.

        Args:
            name: Name of the parameter.
            tps: Types that can be passed to the server. If empty, any is used.
            doc: Description of this query parameter.
            default: Default value to be used if not supplied.
        """

        def inner(func: RouteOrCallable) -> Route:
            route = query_impl(name, *tps, doc=doc, default=default)(func)
            self._push_route(route)
            return route

        return inner

    def body(
        self,
        name: str,
        *tps: type[V],
        doc: str | None = None,
        default: V | None | _NoDefaultType = _NoDefault,
    ):
        """Set a body parameter.

        Args:
            name: Name of the parameter.
            tps: Types that can be passed to the server. If empty, any is used.
            doc: Description of this body parameter.
            default: Default value to be used if not supplied.
        """

        def inner(func: RouteOrCallable) -> Route:
            route = body_impl(name, *tps, doc=doc, default=default)(func)
            self._push_route(route)
            return route

        return inner

    async def _app(self, scope, receive, send) -> None:
        return await self.asgi_app_entry(scope, receive, send)

    def load(self, routes: list[Route] | None = None) -> None:
        """Load the app. This is automatically called most of the time and should only be called manually during manual loading.

        Args:
            routes: Routes to load into the app.
        """
        if self.loaded:
            if routes:
                finalize(routes, self)
            Internal.warning("load called twice")
            return

        if self.config.app.loader == "filesystem":
            if routes:
                warnings.warn(_ROUTES_WARN_MSG)
            load_fs(self, self.config.app.loader_path)
        elif self.config.app.loader == "simple":
            if routes:
                warnings.warn(_ROUTES_WARN_MSG)
            load_simple(self, self.config.app.loader_path)
        else:
            finalize([*(routes or ()), *self._manual_routes], self)

        self.loaded = True

        for r in self.loaded_routes:
            if not r.path:
                continue

            body = {}
            query = {}

            for i in r.inputs:
                target = body if i.is_body else query
                target[i.name] = InputDoc(
                    i.doc or "No description provided.", i.tp, i.default
                )

            self._docs[(r.method.name, r.path)] = RouteDoc(
                r.doc or "No description provided.", body, query
            )

    async def _spawn(self, coro: Coroutine[Any, Any, Any]):
        Internal.info(f"using event loop: {asyncio.get_event_loop()}")
        Internal.info(f"spawning {coro}")

        task = asyncio.create_task(coro)
        if self.config.log.hijack:
            if self.config.server.backend == "uvicorn":
                Internal.info("hijacking uvicorn")
                for log in (
                    logging.getLogger("uvicorn.error"),
                    logging.getLogger("uvicorn.access"),
                ):
                    log.addFilter(UvicornHijack())
            else:
                Internal.info("hijacking hypercorn")

        if self.config.log.fancy:
            if not self.config.log.hijack:
                raise ValueError("hijack must be enabled for fancy mode")

            enter_server()

        self.running = True
        Internal.debug("here we go!")
        await task
        self.running = False

        if self.config.log.fancy:
            exit_server()

        Internal.info("server closed")

    def _run(self, start_target: Callable[..., Any] | None = None) -> Any:
        self.load()
        Internal.info("starting server!")
        server = self.config.server.backend
        uvloop_enabled = False

        if self.config.app.uvloop is True:
            uvloop = attempt_import("uvloop")
            uvloop.install()
            uvloop_enabled = True
        elif self.config.app.uvloop == "decide":
            with suppress(MissingLibraryError):
                uvloop = attempt_import("uvloop")
                uvloop.install()
                uvloop_enabled = True

        start = start_target or asyncio.run

        if server == "uvicorn":
            uvicorn = attempt_import("uvicorn")

            config = uvicorn.Config(
                self._app,
                port=self.config.server.port,
                host=str(self.config.server.host),
                log_level="debug" if self.config.dev else "info",
                lifespan="on",
                factory=False,
                interface="asgi3",
                loop="uvloop" if uvloop_enabled else "asyncio",
                **self.config.server.extra_args,
            )
            server = uvicorn.Server(config)

            return start(self._spawn(server.serve()))

        elif server == "hypercorn":
            hypercorn = attempt_import("hypercorn")
            conf = hypercorn.Config()
            conf.loglevel = "debug" if self.config.dev else "info"
            conf.bind = [
                f"{self.config.server.host}:{self.config.server.port}",
            ]

            for k, v in self.config.server.extra_args.items():
                setattr(conf, k, v)

            return start(
                importlib.import_module("hypercorn.asyncio").serve(
                    self._app, conf
                )
            )
        else:
            raise NotImplementedError("viewserver is not implemented yet")

    def run(self, *, fancy: bool | None = None) -> None:
        """Run the app."""
        if fancy is not None:
            self.config.log.fancy = fancy

        frame = inspect.currentframe()
        assert frame, "failed to get frame"
        assert frame.f_back, "frame has no f_back"

        back = frame.f_back
        base = os.path.basename(back.f_code.co_filename)
        app_path = self.config.app.app_path
        fname = app_path.split(":")[0]
        if base != fname:
            warnings.warn(
                f"ran app from {base}, but app path is {fname} in config",
            )

        if (not os.environ.get("_VIEW_RUN")) and (
            back.f_globals.get("__name__") == "__main__"
        ):
            self._run()
        else:
            Internal.info("called run, but env or scope prevented startup")

    def run_threaded(self, *, daemon: bool = True) -> Thread:
        """Run the app in a thread."""
        thread = Thread(target=self._run, daemon=daemon)
        thread.start()
        return thread

    def run_async(
        self,
        loop: asyncio.AbstractEventLoop | None = None,
    ) -> None:
        """Run the app in an event loop."""
        self._run((loop or asyncio.get_event_loop()).run_until_complete)

    def run_task(
        self,
        loop: asyncio.AbstractEventLoop | None = None,
    ) -> asyncio.Task[None]:
        """Run the app as a task."""
        return self._run((loop or asyncio.get_event_loop()).create_task)

    start = run

    def __repr__(self) -> str:
        return f"App(config={self.config!r})"

    @asynccontextmanager
    async def test(self):
        """Open the testing context."""
        self.load()
        ctx = TestingContext(self.asgi_app_entry)
        try:
            yield ctx
        finally:
            await ctx.stop()

    @overload
    def docs(self, file: None = None) -> str:
        ...

    @overload
    def docs(self, file: TextIO) -> None:
        ...

    @overload
    def docs(
        self,
        file: Path,
        *,
        encoding: str = "utf-8",
        overwrite: bool = True,
    ) -> None:
        ...

    @overload
    def docs(
        self,
        file: str,
        *,
        encoding: str = "utf-8",
        overwrite: bool = True,
    ) -> None:
        ...

    def docs(
        self,
        file: str | TextIO | Path | None = None,
        *,
        encoding: str = "utf-8",
        overwrite: bool = True,
    ) -> str | None:
        """Generate documentation for the app."""
        self.load()
        md = markdown_docs(self._docs)

        if not file:
            return md

        if isinstance(file, str):
            if not overwrite:
                Path(file).write_text(md, encoding=encoding)
            else:
                with open(file, "w", encoding=encoding) as f:
                    f.write(md)
        elif isinstance(file, Path):
            if overwrite:
                with open(file, "w", encoding=encoding) as f:
                    f.write(md)
            else:
                file.write_text(md)
        else:
            file.write(md)

__init__(config)

Parameters:

Name Type Description Default
config Config

Configuration object to be used. Automatically generated by new_app.

required
Source code in src/view/app.py
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
def __init__(self, config: Config) -> None:
    """
    Args:
        config: Configuration object to be used. Automatically generated by `new_app`.
    """
    supply_parsers(self)
    self.config = config
    self._set_dev_state(config.dev)
    self._manual_routes: list[Route] = []
    self.routes: list[Route] = []
    self.loaded: bool = False
    self.running = False
    self._docs: DocsType = {}
    self.loaded_routes: list[Route] = []

    Service.log.setLevel(
        config.log.level
        if not isinstance(config.log.level, str)
        else config.log.level.upper()
    )

    if config.dev:
        if os.environ.get("VIEW_PROD") is not None:
            Service.warning("VIEW_PROD is set but dev is set to true")

        format_warnings()
        weakref.finalize(self, self._finalize)

        if config.log.pretty_tracebacks:
            install(show_locals=True)

        rich_handler = sys.excepthook

        def _hook(tp: type[B], value: B, traceback: Traceback) -> None:
            rich_handler(tp, value, traceback)
            os.environ["_VIEW_CANCEL_FINALIZERS"] = "1"

            if isinstance(value, ViewError):
                if value.hint:
                    print(value.hint)

        sys.excepthook = _hook
        with suppress(UnsupportedOperation):
            faulthandler.enable()
    else:
        os.environ["VIEW_PROD"] = "1"

    if config.log.level == "debug":
        enable_debug()

    self.running = False

body(name, *tps, doc=None, default=_NoDefault)

Set a body parameter.

Parameters:

Name Type Description Default
name str

Name of the parameter.

required
tps type[V]

Types that can be passed to the server. If empty, any is used.

()
doc str | None

Description of this body parameter.

None
default V | None | _NoDefaultType

Default value to be used if not supplied.

_NoDefault
Source code in src/view/app.py
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
def body(
    self,
    name: str,
    *tps: type[V],
    doc: str | None = None,
    default: V | None | _NoDefaultType = _NoDefault,
):
    """Set a body parameter.

    Args:
        name: Name of the parameter.
        tps: Types that can be passed to the server. If empty, any is used.
        doc: Description of this body parameter.
        default: Default value to be used if not supplied.
    """

    def inner(func: RouteOrCallable) -> Route:
        route = body_impl(name, *tps, doc=doc, default=default)(func)
        self._push_route(route)
        return route

    return inner

delete(path, *, doc=None)

Set a DELETE route.

Source code in src/view/app.py
321
322
323
def delete(self, path: str, *, doc: str | None = None):
    """Set a DELETE route."""
    return self._method_wrapper(path, doc, delete)

docs(file=None, *, encoding='utf-8', overwrite=True)

Generate documentation for the app.

Source code in src/view/app.py
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
def docs(
    self,
    file: str | TextIO | Path | None = None,
    *,
    encoding: str = "utf-8",
    overwrite: bool = True,
) -> str | None:
    """Generate documentation for the app."""
    self.load()
    md = markdown_docs(self._docs)

    if not file:
        return md

    if isinstance(file, str):
        if not overwrite:
            Path(file).write_text(md, encoding=encoding)
        else:
            with open(file, "w", encoding=encoding) as f:
                f.write(md)
    elif isinstance(file, Path):
        if overwrite:
            with open(file, "w", encoding=encoding) as f:
                f.write(md)
        else:
            file.write_text(md)
    else:
        file.write(md)

get(path, *, doc=None)

Set a GET route.

Source code in src/view/app.py
313
314
315
def get(self, path: str, *, doc: str | None = None):
    """Set a GET route."""
    return self._method_wrapper(path, doc, get)

load(routes=None)

Load the app. This is automatically called most of the time and should only be called manually during manual loading.

Parameters:

Name Type Description Default
routes list[Route] | None

Routes to load into the app.

None
Source code in src/view/app.py
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
def load(self, routes: list[Route] | None = None) -> None:
    """Load the app. This is automatically called most of the time and should only be called manually during manual loading.

    Args:
        routes: Routes to load into the app.
    """
    if self.loaded:
        if routes:
            finalize(routes, self)
        Internal.warning("load called twice")
        return

    if self.config.app.loader == "filesystem":
        if routes:
            warnings.warn(_ROUTES_WARN_MSG)
        load_fs(self, self.config.app.loader_path)
    elif self.config.app.loader == "simple":
        if routes:
            warnings.warn(_ROUTES_WARN_MSG)
        load_simple(self, self.config.app.loader_path)
    else:
        finalize([*(routes or ()), *self._manual_routes], self)

    self.loaded = True

    for r in self.loaded_routes:
        if not r.path:
            continue

        body = {}
        query = {}

        for i in r.inputs:
            target = body if i.is_body else query
            target[i.name] = InputDoc(
                i.doc or "No description provided.", i.tp, i.default
            )

        self._docs[(r.method.name, r.path)] = RouteDoc(
            r.doc or "No description provided.", body, query
        )

options(path, *, doc=None)

Set a OPTIONS route.

Source code in src/view/app.py
333
334
335
def options(self, path: str, *, doc: str | None = None):
    """Set a OPTIONS route."""
    return self._method_wrapper(path, doc, options)

patch(path, *, doc=None)

Set a PATCH route.

Source code in src/view/app.py
325
326
327
def patch(self, path: str, *, doc: str | None = None):
    """Set a PATCH route."""
    return self._method_wrapper(path, doc, patch)

post(path, *, doc=None)

Set a POST route.

Source code in src/view/app.py
317
318
319
def post(self, path: str, *, doc: str | None = None):
    """Set a POST route."""
    return self._method_wrapper(path, doc, post)

put(path, *, doc=None)

Set a PUT route.

Source code in src/view/app.py
329
330
331
def put(self, path: str, *, doc: str | None = None):
    """Set a PUT route."""
    return self._method_wrapper(path, doc, put)

query(name, *tps, doc=None, default=_NoDefault)

Set a query parameter.

Parameters:

Name Type Description Default
name str

Name of the parameter.

required
tps type[V]

Types that can be passed to the server. If empty, any is used.

()
doc str | None

Description of this query parameter.

None
default V | None | _NoDefaultType

Default value to be used if not supplied.

_NoDefault
Source code in src/view/app.py
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
def query(
    self,
    name: str,
    *tps: type[V],
    doc: str | None = None,
    default: V | None | _NoDefaultType = _NoDefault,
):
    """Set a query parameter.

    Args:
        name: Name of the parameter.
        tps: Types that can be passed to the server. If empty, any is used.
        doc: Description of this query parameter.
        default: Default value to be used if not supplied.
    """

    def inner(func: RouteOrCallable) -> Route:
        route = query_impl(name, *tps, doc=doc, default=default)(func)
        self._push_route(route)
        return route

    return inner

run(*, fancy=None)

Run the app.

Source code in src/view/app.py
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
def run(self, *, fancy: bool | None = None) -> None:
    """Run the app."""
    if fancy is not None:
        self.config.log.fancy = fancy

    frame = inspect.currentframe()
    assert frame, "failed to get frame"
    assert frame.f_back, "frame has no f_back"

    back = frame.f_back
    base = os.path.basename(back.f_code.co_filename)
    app_path = self.config.app.app_path
    fname = app_path.split(":")[0]
    if base != fname:
        warnings.warn(
            f"ran app from {base}, but app path is {fname} in config",
        )

    if (not os.environ.get("_VIEW_RUN")) and (
        back.f_globals.get("__name__") == "__main__"
    ):
        self._run()
    else:
        Internal.info("called run, but env or scope prevented startup")

run_async(loop=None)

Run the app in an event loop.

Source code in src/view/app.py
546
547
548
549
550
551
def run_async(
    self,
    loop: asyncio.AbstractEventLoop | None = None,
) -> None:
    """Run the app in an event loop."""
    self._run((loop or asyncio.get_event_loop()).run_until_complete)

run_task(loop=None)

Run the app as a task.

Source code in src/view/app.py
553
554
555
556
557
558
def run_task(
    self,
    loop: asyncio.AbstractEventLoop | None = None,
) -> asyncio.Task[None]:
    """Run the app as a task."""
    return self._run((loop or asyncio.get_event_loop()).create_task)

run_threaded(*, daemon=True)

Run the app in a thread.

Source code in src/view/app.py
540
541
542
543
544
def run_threaded(self, *, daemon: bool = True) -> Thread:
    """Run the app in a thread."""
    thread = Thread(target=self._run, daemon=daemon)
    thread.start()
    return thread

test() async

Open the testing context.

Source code in src/view/app.py
565
566
567
568
569
570
571
572
573
@asynccontextmanager
async def test(self):
    """Open the testing context."""
    self.load()
    ctx = TestingContext(self.asgi_app_entry)
    try:
        yield ctx
    finally:
        await ctx.stop()

get_app(*, address=None)

Get the last app created by new_app.

Source code in src/view/app.py
686
687
688
689
690
691
692
693
694
695
696
def get_app(*, address: int | None = None) -> App:
    """Get the last app created by `new_app`."""
    env = os.environ.get("_VIEW_APP_ADDRESS")
    addr = address or env

    if (not addr) and (not env):
        raise ValueError("no view app registered")

    app: App = ctypes.cast(int(addr), ctypes.py_object).value  # type: ignore
    ctypes.pythonapi.Py_IncRef(app)
    return app

new_app(*, start=False, config_path=None, config_directory=None, post_init=None, app_dealloc=None, store_address=True)

Create a new view app.

Parameters:

Name Type Description Default
start bool

Should the app be started automatically? (In a new thread)

False
config_path Path | str | None

Path of the target configuration file

None
config_directory Path | str | None

Directory path to search for a configuration

None
post_init Callback | None

Callback to run after the App instance has been created

None
app_dealloc Callback | None

Callback to run when the App instance is freed from memory

None
store_address bool

Whether to store the address of the instance to allow use from get_app

True
Source code in src/view/app.py
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
def new_app(
    *,
    start: bool = False,
    config_path: Path | str | None = None,
    config_directory: Path | str | None = None,
    post_init: Callback | None = None,
    app_dealloc: Callback | None = None,
    store_address: bool = True,
) -> App:
    """Create a new view app.

    Args:
        start: Should the app be started automatically? (In a new thread)
        config_path: Path of the target configuration file
        config_directory: Directory path to search for a configuration
        post_init: Callback to run after the App instance has been created
        app_dealloc: Callback to run when the App instance is freed from memory
        store_address: Whether to store the address of the instance to allow use from get_app
    """
    config = load_config(
        path=Path(config_path) if config_path else None,
        directory=Path(config_directory) if config_directory else None,
    )

    app = App(config)

    if post_init:
        post_init()

    if start:
        app.run_threaded()

    def finalizer():
        if "_VIEW_APP_ADDRESS" in os.environ:
            del os.environ["_VIEW_APP_ADDRESS"]

        if app_dealloc:
            app_dealloc()

    weakref.finalize(app, finalizer)

    if store_address:
        os.environ["_VIEW_APP_ADDRESS"] = str(id(app))
        # id() on cpython returns the address, but it is
        # implementation dependent however, view.py
        # only supports cpython anyway

    return app

load_config(path=None, *, directory=None)

Load the configuration file.

Parameters:

Name Type Description Default
path Path | None

Path to get the configuration from.

None
directory Path | None

Where to look for the configuration.

None
Source code in src/view/config.py
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
def load_config(
    path: Path | None = None,
    *,
    directory: Path | None = None,
) -> Config:
    """Load the configuration file.

    Args:
        path: Path to get the configuration from.
        directory: Where to look for the configuration."""
    paths = (
        "view.toml",
        "view.json",
        "view.ini",
        "view.yaml",
        "view.yml",
        "view_config.py",
        "config.py",
    )

    if path:
        if directory:
            return Config.load(directory / path)
            # idk why someone would do this, but i guess its good to support it
        return Config.load(path)

    for i in paths:
        p = Path(i) if not directory else directory / i

        if not p.exists():
            continue

        if p.suffix == ".py":
            spec = importlib.util.spec_from_file_location(str(p))
            assert spec, "spec is none"
            mod = importlib.util.module_from_spec(spec)
            assert mod, "mod is none"
            sys.modules[p.stem] = mod
            assert spec.loader, "spec.loader is none"
            spec.loader.exec_module(mod)
            return Config.wrap_module(mod)

        return Config.load(p)

    return Config()

AppNotFoundError

Bases: ViewError, FileNotFoundError

Couldn't find the app from the given path.

Source code in src/view/exceptions.py
72
73
74
75
class AppNotFoundError(ViewError, FileNotFoundError):
    """Couldn't find the app from the given path."""

    ...

EnvironmentError

Bases: ViewError

An environment variable is missing.

Source code in src/view/exceptions.py
54
55
56
57
class EnvironmentError(ViewError):
    """An environment variable is missing."""

    ...

InvalidBodyError

Bases: ViewError

The specified type cannot be used as a view body.

Source code in src/view/exceptions.py
60
61
62
63
class InvalidBodyError(ViewError):
    """The specified type cannot be used as a view body."""

    ...

LoaderWarning

Bases: ViewWarning

A warning from the loader.

Source code in src/view/exceptions.py
30
31
32
33
class LoaderWarning(ViewWarning):
    """A warning from the loader."""

    ...

MissingLibraryError

Bases: ViewError

A library is not installed.

Source code in src/view/exceptions.py
48
49
50
51
class MissingLibraryError(ViewError):
    """A library is not installed."""

    ...

MistakeError

Bases: ViewError

The user made a mistake.

Source code in src/view/exceptions.py
66
67
68
69
class MistakeError(ViewError):
    """The user made a mistake."""

    ...

NotLoadedWarning

Bases: ViewWarning

load() was never called

Source code in src/view/exceptions.py
24
25
26
27
class NotLoadedWarning(ViewWarning):
    """load() was never called"""

    ...

ViewError

Bases: Exception

Base class for exceptions in view.py

Source code in src/view/exceptions.py
36
37
38
39
40
41
42
43
44
45
class ViewError(Exception):
    """Base class for exceptions in view.py"""

    def __init__(
        self,
        *args: object,
        hint: RenderableType | None = None,
    ) -> None:
        self.hint = hint
        super().__init__(*args)

ViewWarning

Bases: UserWarning

Base class for all warnings in view.py

Source code in src/view/exceptions.py
18
19
20
21
class ViewWarning(UserWarning):
    """Base class for all warnings in view.py"""

    ...

HTML

Bases: Response[str]

HTML response wrapper.

Source code in src/view/response.py
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
class HTML(Response[str]):
    """HTML response wrapper."""

    def __init__(
        self,
        body: TextIO | str | Path | DOMNode,
        status: int = 200,
        headers: dict[str, str] | None = None,
    ) -> None:
        parsed_body = ""

        if isinstance(body, Path):
            parsed_body = body.read_text()
        elif isinstance(body, str):
            parsed_body = body
        elif isinstance(body, DOMNode):
            parsed_body = body.data
        else:
            try:
                parsed_body = body.read()
            except AttributeError:
                raise TypeError(
                    f"expected TextIO, str, Path, or DOMNode, not {type(body)}",  # noqa
                ) from None

        super().__init__(parsed_body, status, headers)
        self._raw_headers.append((b"content-type", b"text/html"))

Response

Bases: Generic[T]

Wrapper for responses.

Source code in src/view/response.py
 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
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
class Response(Generic[T]):
    """Wrapper for responses."""

    def __init__(
        self,
        body: T | None = None,
        status: int = 200,
        headers: dict[str, str] | None = None,
        *,
        body_translate: BodyTranslateStrategy | None = _Find,
    ) -> None:
        self.body = body
        self.status = status
        self.headers = headers or {}
        self._raw_headers: list[tuple[bytes, bytes]] = []
        if body_translate:
            self.translate = body_translate
        else:
            self.translate = (
                "str" if not hasattr(body, "__view_result__") else "result"
            )

    def cookie(
        self,
        key: str,
        value: str = "",
        *,
        max_age: int | None = None,
        expires: int | DateTime | None = None,
        path: str | None = None,
        domain: str | None = None,
        http_only: bool = False,
        same_site: SameSite = "lax",
        partitioned: bool = False,
        secure: bool = False,
    ) -> None:
        """Set a cookie.

        Args:
            key: Cookie name.
            value: Cookie value.
            max_age: Max age of the cookies.
            expires: When the cookie expires.
            domain: Domain the cookie is valid at.
            http_only: Whether the cookie should be HTTP only.
            same_site: SameSite setting for the cookie.
            partitioned: Whether to tie it to the top level site.
            secure: Whether the cookie should enforce HTTPS."""
        cookie_str = f"{key}={value}; SameSite={same_site}".encode()

        if expires:
            dt = (
                expires
                if isinstance(expires, DateTime)
                else DateTime.fromtimestamp(expires)
            )
            ts = timestamp(dt)
            cookie_str += f"; Expires={ts}".encode()

        if http_only:
            cookie_str += b"; HttpOnly"

        if domain:
            cookie_str += f"; Domain={domain}".encode()

        if max_age:
            cookie_str += f"; Max-Age={max_age}".encode()

        if partitioned:
            cookie_str += b"; Partitioned"

        if secure:
            cookie_str += b"; Secure"

        if path:
            cookie_str += f"; Path={path}".encode()

        self._raw_headers.append((b"Set-Cookie", cookie_str))

    def _build_headers(self) -> tuple[tuple[bytes, bytes], ...]:
        headers: list[tuple[bytes, bytes]] = [*self._raw_headers]

        for k, v in self.headers.items():
            headers.append((k.encode(), v.encode()))

        return tuple(headers)

    def __view_result__(self):
        body: str = ""
        if self.translate == "str":
            body = str(self.body)
        elif self.translate == "repr":
            body = repr(self.body)
        else:
            view_result = getattr(self.body, "__view_result__", None)

            if not view_result:
                raise AttributeError(f"{self.body!r} has no __view_result__")

            body_res = view_result()
            if isinstance(body_res, str):
                body = body_res
            else:
                for i in body_res:
                    if isinstance(i, str):
                        body = i

        return body, self.status, self._build_headers()

cookie(key, value='', *, max_age=None, expires=None, path=None, domain=None, http_only=False, same_site='lax', partitioned=False, secure=False)

Set a cookie.

Parameters:

Name Type Description Default
key str

Cookie name.

required
value str

Cookie value.

''
max_age int | None

Max age of the cookies.

None
expires int | datetime | None

When the cookie expires.

None
domain str | None

Domain the cookie is valid at.

None
http_only bool

Whether the cookie should be HTTP only.

False
same_site SameSite

SameSite setting for the cookie.

'lax'
partitioned bool

Whether to tie it to the top level site.

False
secure bool

Whether the cookie should enforce HTTPS.

False
Source code in src/view/response.py
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
def cookie(
    self,
    key: str,
    value: str = "",
    *,
    max_age: int | None = None,
    expires: int | DateTime | None = None,
    path: str | None = None,
    domain: str | None = None,
    http_only: bool = False,
    same_site: SameSite = "lax",
    partitioned: bool = False,
    secure: bool = False,
) -> None:
    """Set a cookie.

    Args:
        key: Cookie name.
        value: Cookie value.
        max_age: Max age of the cookies.
        expires: When the cookie expires.
        domain: Domain the cookie is valid at.
        http_only: Whether the cookie should be HTTP only.
        same_site: SameSite setting for the cookie.
        partitioned: Whether to tie it to the top level site.
        secure: Whether the cookie should enforce HTTPS."""
    cookie_str = f"{key}={value}; SameSite={same_site}".encode()

    if expires:
        dt = (
            expires
            if isinstance(expires, DateTime)
            else DateTime.fromtimestamp(expires)
        )
        ts = timestamp(dt)
        cookie_str += f"; Expires={ts}".encode()

    if http_only:
        cookie_str += b"; HttpOnly"

    if domain:
        cookie_str += f"; Domain={domain}".encode()

    if max_age:
        cookie_str += f"; Max-Age={max_age}".encode()

    if partitioned:
        cookie_str += b"; Partitioned"

    if secure:
        cookie_str += b"; Secure"

    if path:
        cookie_str += f"; Path={path}".encode()

    self._raw_headers.append((b"Set-Cookie", cookie_str))

Route dataclass

Bases: Generic[P, T], LoadChecker

Standard Route Wrapper

Source code in src/view/routing.py
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
@dataclass
class Route(Generic[P, T], LoadChecker):
    """Standard Route Wrapper"""

    func: Callable[P, T]
    path: str | None
    method: Method
    inputs: list[RouteInput]
    doc: str | None = None
    cache_rate: int = -1
    errors: dict[int, ViewRoute] | None = None
    extra_types: dict[str, Any] = field(default_factory=dict)
    parts: list[str | Part[Any]] = field(default_factory=list)

    def error(self, status_code: int):
        def wrapper(handler: ViewRoute):
            if not self.errors:
                self.errors = {}

            self.errors[status_code] = handler
            return handler

        return wrapper

    def __repr__(self):
        return f"Route({self.method.name}(\"{self.path or '/???'}\"))"  # noqa

    __str__ = __repr__

    def __call__(self, *args: P.args, **kwargs: P.kwargs) -> T:
        return self.func(*args, **kwargs)

debug()

Enable debug mode.

Source code in src/view/util.py
63
64
65
66
67
68
69
70
71
72
73
74
75
76
def debug():
    """Enable debug mode."""
    internal = Internal.log
    internal.disabled = False
    internal.setLevel(logging.DEBUG)
    internal.addHandler(
        logging.StreamHandler(open("view_internal.log", "w", encoding="utf-8"))
    )
    Service.log.addHandler(
        logging.StreamHandler(open("view_service.log", "w", encoding="utf-8"))
    )

    Internal.info("debug mode enabled")
    os.environ["VIEW_DEBUG"] = "1"

env(key, *, tp=str)

Get and parse an environment variable.

Parameters:

Name Type Description Default
key str

Environment variable to access.

required
tp type[EnvConv]

Type to convert to.

str
Source code in src/view/util.py
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
def env(key: str, *, tp: type[EnvConv] = str) -> EnvConv:
    """Get and parse an environment variable.

    Args:
        key: Environment variable to access.
        tp: Type to convert to.
    """
    value = os.environ.get(key)

    if not value:
        raise EnvironmentError(
            f'environment variable "{key}" not set',
            hint=shell_hint(
                f"set {key}=..." if os.name == "nt" else f"export {key}=..."
            ),
        )

    if tp is str:
        return value

    if tp is int:
        try:
            return int(value)
        except ValueError:
            raise EnvironmentError(
                f"{value!r} (key {key!r}) is not int-like"
            ) from None

    if tp is dict:
        try:
            return json.loads(value)
        except ValueError:
            raise EnvironmentError(f"{value!r} ({key!r}) is not dict-like")

    if tp is bool:
        value = value.lower()
        if value not in {"true", "false"}:
            raise EnvironmentError(f"{value!r} ({key!r}) is not bool-like")

        return value == "true"

    raise ValueError(f"{tp.__name__} cannot be converted")

run(app_or_path)

Run a view app. Should not be used over App.run()

Parameters:

Name Type Description Default
app_or_path str | App

App object or path to run.

required
Source code in src/view/util.py
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
def run(app_or_path: str | App) -> None:
    """Run a view app. Should not be used over `App.run()`

    Args:
        app_or_path: App object or path to run."""
    from .app import App

    if isinstance(app_or_path, App):
        app_or_path.run()
        return

    split = app_or_path.split(":", maxsplit=1)

    if len(split) != 2:
        raise ValueError(
            "module string should be in the format of `/path/to/app.py:app`",
        )

    path = os.path.abspath(split[0])
    sys.path.append(os.path.dirname(path))

    try:
        mod = runpy.run_path(path)
    except FileNotFoundError:
        raise AppNotFoundError(
            f'"{split[0]}" in {app_or_path} does not exist'
        ) from None

    try:
        target = mod[split[1]]
    except KeyError:
        raise AttributeError(
            f'"{split[1]}" in {app_or_path} does not exist'
        ) from None

    if not isinstance(target, App):
        raise MistakeError(f"{target!r} is not an instance of view.App")

    target._run()

timestamp(tm=_Now)

RFC 1123 Compliant Timestamp

Parameters:

Name Type Description Default
tm datetime | None

Date object to create a timestamp for. Now by default.

_Now
Source code in src/view/util.py
149
150
151
152
153
154
155
156
def timestamp(tm: DateTime | None = _Now) -> str:
    """RFC 1123 Compliant Timestamp

    Args:
        tm: Date object to create a timestamp for. Now by default."""
    stamp: float = DateTime.now().timestamp() if not tm else tm.timestamp()

    return formatdate(stamp, usegmt=True)