Warn about potential changes to get_metadata hook, refs #1384

This commit is contained in:
Simon Willison 2021-07-14 17:19:31 -07:00 committed by GitHub
commit 7ea678db22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1150,6 +1150,9 @@ get_metadata(datasette, key, database, table)
This hook is responsible for returning a dictionary corresponding to Datasette :ref:`metadata`. This function is passed the ``database``, ``table`` and ``key`` which were passed to the upstream internal request for metadata. Regardless, it is important to return a global metadata object, where ``"databases": []`` would be a top-level key. The dictionary returned here, will be merged with, and overwritten by, the contents of the physical ``metadata.yaml`` if one is present.
.. warning::
The design of this plugin hook does not currently provide a mechanism for interacting with async code, and may change in the future. See `issue 1384 <https://github.com/simonw/datasette/issues/1384>`__.
.. code-block:: python
@hookimpl