From a70fc339d251d217fb57d2cabc1917d34261da05 Mon Sep 17 00:00:00 2001 From: Falko Habel Date: Fri, 25 Apr 2025 22:10:48 +0200 Subject: [PATCH] updated output and input in readme --- README.md | 41 ++++++++++++++++++++++++----------------- 1 file changed, 24 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 541ba6a..600afdc 100644 --- a/README.md +++ b/README.md @@ -71,35 +71,42 @@ By default, `prodir` ignores files and folders that start with `_` or `.`. Howev #### Example Input ```plaintext -project/ +my_project/ ├── src/ -│ ├── __init__.py +│ ├── __init__.py # init file │ ├── main.py -│ ├── module1.py -│ └── module2.py -├── config/ -│ └── config.yaml +│ └── utils.py +├── tests/ +│ ├── __init__.py +│ ├── test_main.py +│ └── test_utils.py +├── data/ +│ └── sample_data.csv +├── docs/ +│ └── README.md ├── .gitignore -├── pyproject.toml -├── setup.py -├── LICENSE -└── README.m +├── requirements.txt +└── setup.py ``` #### Example Output ```plaintext -LICENSE -README.m -config/ -└── config.yaml -pyproject.toml +Analyzing directory: .\my_project\ +data/ +└── sample_data.csv +docs/ +└── README.md +requirements.txt setup.py src/ ├── __init__.py ├── main.py -├── module1.py -└── module2.py +└── utils.py +tests/ +├── __init__.py +├── test_main.py +└── test_utils.py ``` #### Commands