December 2018
Beginner to intermediate
490 pages
10h 38m
English
This appendix is a developer quick-reference guide that provides a summary of all the PixieApp attributes.
@PixieApp: Class annotation that must be added to any class that is a PixieApp.Arguments: None
Example:
from pixiedust.display.app import *
@PixieApp
class MyApp():
pass@route: Method annotation required to denote that a method—which can have any name—is associated with a route.Arguments: **kwargs. Keyword arguments (key-value pairs) representing the route definition. The PixieApp dispatcher will match the current kernel request with a route according to the following rules:
Read now
Unlock full access