updated the readme; ran isort
This commit is contained in:
parent
df7e82d722
commit
112c41c7ca
5 changed files with 10 additions and 7 deletions
1
.github/README.md
vendored
1
.github/README.md
vendored
|
|
@ -17,6 +17,7 @@ This project is just getting started and only has a couple of features implement
|
|||
- [ ] Generate documentation
|
||||
- [ ] Write getting started guide
|
||||
- [ ] Currently, zipssion is using [python-magic](https://github.com/ahupp/python-magic) (libmagic) for file identification but I want to add a flag that allows the user to use [Magika](https://github.com/google/magika) instead. (or maybe in addition to?)
|
||||
- [ ] Write tests
|
||||
- [ ] Continue writing TODOs...
|
||||
|
||||
## View source
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# to delete
|
||||
|
||||
from typer import Typer
|
||||
import identify_file_type
|
||||
from typer import Typer
|
||||
|
||||
app = Typer()
|
||||
VERSION = "0.1.0-alpha"
|
||||
|
|
|
|||
|
|
@ -1,12 +1,13 @@
|
|||
from typer import Typer, Argument
|
||||
from rich import print, console
|
||||
from pprint import pprint
|
||||
import argparse
|
||||
import pathlib
|
||||
import shutil
|
||||
import tempfile
|
||||
import zipfile
|
||||
from pprint import pprint
|
||||
|
||||
import magic
|
||||
from rich import console, print
|
||||
from typer import Argument, Typer
|
||||
|
||||
app = Typer()
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
import rich_cli
|
||||
import logging
|
||||
|
||||
import rich_cli
|
||||
from rich.logging import RichHandler
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
from typer import Typer
|
||||
from log import create_rich_logger
|
||||
import identify_file_type
|
||||
from log import create_rich_logger
|
||||
from typer import Typer
|
||||
|
||||
app = Typer()
|
||||
VERSION = "0.1.0-alpha"
|
||||
|
|
|
|||
Loading…
Reference in a new issue