updated the readme; ran isort

This commit is contained in:
Catherine Oborski 2024-09-08 13:42:30 -05:00
parent df7e82d722
commit 112c41c7ca
5 changed files with 10 additions and 7 deletions

1
.github/README.md vendored
View file

@ -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

View file

@ -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"

View file

@ -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()

View file

@ -1,5 +1,6 @@
import rich_cli
import logging
import rich_cli
from rich.logging import RichHandler

View file

@ -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"