Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
KenjieDec/RemBG
diego2554
/
RemBG_super
like
2
Sleeping
App
Files
Files
Community
5f57808
RemBG_super
/
rembg
/
cli.py
KenjieDec
3faa99b
over 1 year ago
raw
Copy download link
history
blame
Safe
255 Bytes
import
click
from
.
import
_version
from
.commands
import
command_functions
@click.group()
@click.version_option(
version=_version.get_versions(
)[
"version"
]
)
def
main
() ->
None
:
pass
for
command
in
command_functions:
main.add_command(command)