Source code for wuttafarm.cli.import_farmos

# -*- coding: utf-8; -*-
################################################################################
#
#  WuttaFarm --Web app to integrate with and extend farmOS
#  Copyright © 2026 Lance Edgar
#
#  This file is part of WuttaFarm.
#
#  WuttaFarm is free software: you can redistribute it and/or modify it under
#  the terms of the GNU General Public License as published by the Free Software
#  Foundation, either version 3 of the License, or (at your option) any later
#  version.
#
#  WuttaFarm is distributed in the hope that it will be useful, but WITHOUT ANY
#  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
#  A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License along with
#  WuttaFarm.  If not, see <http://www.gnu.org/licenses/>.
#
################################################################################
"""
See also: :ref:`wuttafarm-import-farmos`
"""

import typer

from wuttasync.cli import import_command, ImportCommandHandler

from wuttafarm.cli import wuttafarm_typer


[docs] @wuttafarm_typer.command() @import_command def import_farmos(ctx: typer.Context, **kwargs): """ Import data from farmOS API to WuttaFarm """ config = ctx.parent.wutta_config handler = ImportCommandHandler(config, key="import.to_wuttafarm.from_farmos") handler.run(ctx)