diff --git a/CommandLineInterface/CLI.py b/API/Functions.py similarity index 100% rename from CommandLineInterface/CLI.py rename to API/Functions.py diff --git a/Client/CLI.py b/Client/CLI.py new file mode 100644 index 0000000000000000000000000000000000000000..b3c40d64a98850710c80d8b0671134ae417af5f6 --- /dev/null +++ b/Client/CLI.py @@ -0,0 +1,21 @@ +import typer + +app = typer.Typer() + +@app.command() +def scrape_book(url: str): + """ Function used to create scrape request to Server """ + + + +@app.command() +def goodbye(name: str, formal: bool = False): + """ function2 """ + if formal: + typer.echo(f"Goodbye Ms. {name}. Have a good day.") + else: + typer.echo(f"Bye {name}!") + + +if __name__ == "__main__": + app() \ No newline at end of file diff --git a/Server/SimpleServer.py b/Server/SimpleServer.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391