Compare commits

...

3 Commits

Author SHA1 Message Date
7f47b65521 rename project, format 2024-06-08 21:02:56 -05:00
716ef2a009 add typer 2024-06-08 21:02:29 -05:00
c904e90f6d rename 2024-06-08 21:02:19 -05:00
3 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,15 @@
import typer
from rich import print
app = typer.Typer()
@app.command()
def scan(directory: str):
print("Scanning directory:", directory)
@app.command()
def convert(directory: str):
pass
if __name__ == "__main__":
app()

View File

@ -1,2 +1,10 @@
click==8.1.7
ffmpeg-python==0.2.0
future==1.0.0
markdown-it-py==3.0.0
mdurl==0.1.2
Pygments==2.18.0
rich==13.7.1
shellingham==1.5.4
typer==0.12.3
typing_extensions==4.12.2

View File