Add a usage example to get_end_user_data_statement_or_raise() (#6171)

This commit is contained in:
Jakub Kuczys 2023-06-19 14:00:55 +02:00 committed by GitHub
parent 9d04f17cd2
commit 3b92c225ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -540,6 +540,27 @@ def get_end_user_data_statement(file: Union[Path, str]) -> Optional[str]:
This function attempts to get the ``end_user_data_statement`` key from cog's ``info.json``. This function attempts to get the ``end_user_data_statement`` key from cog's ``info.json``.
This will log the reason if ``None`` is returned. This will log the reason if ``None`` is returned.
Example
-------
You can use this function in cog package's top-level ``__init__.py``
to conveniently reuse end user data statement from ``info.json`` file
placed in the same directory:
.. code-block:: python
from redbot.core.utils import get_end_user_data_statement
__red_end_user_data_statement__ = get_end_user_data_statement(__file__)
async def setup(bot):
...
To help detect issues with the ``info.json`` file while still allowing the cog to load,
this function logs an error if ``info.json`` file doesn't exist, can't be parsed,
or doesn't have an ``end_user_data_statement`` key.
Parameters Parameters
---------- ----------
file: Union[pathlib.Path, str] file: Union[pathlib.Path, str]
@ -550,14 +571,6 @@ def get_end_user_data_statement(file: Union[Path, str]) -> Optional[str]:
Optional[str] Optional[str]
The end user data statement found in the info.json The end user data statement found in the info.json
or ``None`` if there was an issue finding one. or ``None`` if there was an issue finding one.
Examples
--------
>>> # In cog's `__init__.py`
>>> from redbot.core.utils import get_end_user_data_statement
>>> __red_end_user_data_statement__ = get_end_user_data_statement(__file__)
>>> async def setup(bot):
... ...
""" """
try: try:
file = Path(file).parent.absolute() file = Path(file).parent.absolute()
@ -586,6 +599,27 @@ def get_end_user_data_statement_or_raise(file: Union[Path, str]) -> str:
""" """
This function attempts to get the ``end_user_data_statement`` key from cog's ``info.json``. This function attempts to get the ``end_user_data_statement`` key from cog's ``info.json``.
Example
-------
You can use this function in cog package's top-level ``__init__.py``
to conveniently reuse end user data statement from ``info.json`` file
placed in the same directory:
.. code-block:: python
from redbot.core.utils import get_end_user_data_statement_or_raise
__red_end_user_data_statement__ = get_end_user_data_statement_or_raise(__file__)
async def setup(bot):
...
In order to ensure that you won't end up with no end user data statement,
this function raises if ``info.json`` file doesn't exist, can't be parsed,
or doesn't have an ``end_user_data_statement`` key.
Parameters Parameters
---------- ----------
file: Union[pathlib.Path, str] file: Union[pathlib.Path, str]