mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
* Refs #2111, closes #2110 * New Context dataclass/subclass mechanism, refs #2127 * Define QueryContext and extract get_tables() method, refs #2127 * Fix OPTIONS bug by porting DaatbaseView to be a View subclass * Expose async_view_for_class.view_class for test_routes test * Error/truncated aruments for renderers, closes #2130
7 lines
381 B
Python
7 lines
381 B
Python
from datasette.permissions import Permission # noqa
|
|
from datasette.version import __version_info__, __version__ # noqa
|
|
from datasette.utils.asgi import Forbidden, NotFound, Request, Response # noqa
|
|
from datasette.utils import actor_matches_allow # noqa
|
|
from datasette.views import Context # noqa
|
|
from .hookspecs import hookimpl # noqa
|
|
from .hookspecs import hookspec # noqa
|