Skip to content

fl_server_api.apps

Classes:

Name Description
FlServerApiConfig

Django AppConfig for the Federated Learning Demonstrator API module.

Classes

FlServerApiConfig

Bases: AppConfig


              flowchart TD
              fl_server_api.apps.FlServerApiConfig[FlServerApiConfig]

              

              click fl_server_api.apps.FlServerApiConfig href "" "fl_server_api.apps.FlServerApiConfig"
            

Django AppConfig for the Federated Learning Demonstrator API module.

Attributes:

Name Type Description
name

The name of the application. This is used in Django's internals.

verbose_name

A human-readable name for the application. This is used in Django's admin interface.

Source code in fl_server_api/apps.py
class FlServerApiConfig(AppConfig):
    """
    Django AppConfig for the Federated Learning Demonstrator API module.
    """

    name = "fl_server_api"
    """The name of the application. This is used in Django's internals."""
    verbose_name = "Federated Learning Demonstrator API"
    """A human-readable name for the application. This is used in Django's admin interface."""

Attributes

name class-attribute instance-attribute
name = 'fl_server_api'

The name of the application. This is used in Django's internals.

verbose_name class-attribute instance-attribute
verbose_name = 'Federated Learning Demonstrator API'

A human-readable name for the application. This is used in Django's admin interface.