-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
095f0c2
commit 3f3beb2
Showing
16 changed files
with
508 additions
and
427 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1 @@ | ||
from __future__ import annotations | ||
|
||
import click | ||
|
||
from .cli import diff, groupby | ||
|
||
__all__ = ['cli'] | ||
|
||
@click.group() | ||
def cli(): | ||
"""Command-line tool for organizing images.""" | ||
pass | ||
|
||
cli.command(diff) | ||
cli.command(groupby) | ||
from .pyimorg import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from . import cli | ||
from .cli import cli | ||
|
||
cli() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,14 @@ | ||
from .diff import * | ||
from .groupby import * | ||
import click | ||
|
||
from .diff import diff | ||
from .groupby import groupby | ||
|
||
__all__ = ['cli'] | ||
|
||
@click.group() | ||
def cli(): | ||
"""Command-line tool for organizing images.""" | ||
pass | ||
|
||
cli.command(diff) | ||
cli.command(groupby) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from .diff import * | ||
from .groupby import * |
Oops, something went wrong.