Changeset View
Changeset View
Standalone View
Standalone View
swh/loader/package/jar/tasks.py
- This file was added.
| # Copyright (C) 2019-2021 The Software Heritage developers | |||||
| # See the AUTHORS file at the top-level directory of this distribution | |||||
| # License: GNU General Public License version 3, or any later version | |||||
| # See top-level LICENSE file for more information | |||||
| from celery import shared_task | |||||
| from swh.loader.package.jar.loader import JarLoader | |||||
| @shared_task(name=__name__ + ".LoadJar") | |||||
| def load_jar_file(*, url=None, artifacts=None, snapshot_append=False): | |||||
| """Load jar's artifacts.""" | |||||
| print(f"tasks.load_jar_file '{__name__}.LoadJar") | |||||
| loader = JarLoader.from_configfile( | |||||
| url=url, artifacts=artifacts, snapshot_append=snapshot_append | |||||
| ) | |||||
| return loader.load() |