From fd9ff514b80404976bf8ccf7d2741a99ae8f3b76 Mon Sep 17 00:00:00 2001 From: Conrad Date: Mon, 15 Jul 2019 21:51:35 +0200 Subject: [PATCH] Renamed calculator to entro.py --- README.md | 8 ++++---- calc_entro.py => entro.py | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename calc_entro.py => entro.py (100%) diff --git a/README.md b/README.md index 2ac5ce7..2eb7bd4 100644 --- a/README.md +++ b/README.md @@ -17,24 +17,24 @@ Well that is basically up to you. Entropy functions are used in Computer Science ## Usage You can run as much calculations as you want in one run of the script. For example use it like this with a simple string: ``` -calc_entro.py teststring +entro.py teststring ``` or this for a file: ``` -calc_entro.py -files test.txt +entro.py -files test.txt ``` or combine both of them: ``` -calc_entro.py teststring -files test.txt +entro.py teststring -files test.txt ``` Both arguments work with as many strings and filepaths as you want. Just separate them using a space like this: ``` -calc_entro.py teststring teststring2 teststring3 -files test1.txt -files test2.txt +entro.py teststring teststring2 teststring3 -files test1.txt -files test2.txt ``` ## Command line parameters diff --git a/calc_entro.py b/entro.py similarity index 100% rename from calc_entro.py rename to entro.py